From b587bdf8633b494589f38ee124c6942df5c70b6d Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 10 Aug 2016 16:57:14 -0700 Subject: new version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index dfa7da0cb..d034749a2 100755 --- a/boot.php +++ b/boot.php @@ -44,7 +44,7 @@ require_once('include/account.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '1.11' ); +define ( 'STD_VERSION', '1.13' ); define ( 'ZOT_REVISION', '1.1' ); define ( 'DB_UPDATE_VERSION', 1181 ); -- cgit v1.2.3 From 99c5aca78b42fd471b4c02e886e49ccb19d33ff0 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 10 Aug 2016 17:35:07 -0700 Subject: update CHANGELOG for 1.12 --- CHANGELOG | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index bfb5ad2b2..67077b767 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,28 @@ +Hubzilla 1.12 + - extensible permissions so you can create a new permission rule such as "can write to my wiki" or "can see me naked". + - guest access tokens can do anything you let them, including create posts and administer your channel + - ACLs can be set on files and directories prior to creation. + - ACL tool can now be used in multiple forms within a page + - a myriad of new drag/drop features (drop files or photos into /cloud or a post, or drop link into a post or comment, etc.) + - multiple file uploads + - improvements to website import + - UNO replaced with extensible server roles + - select bbcode elements (such as baseurl) supported in wiki pages + - addons: + Diaspora Protocol - additional updates to maintain compatibility with 0.6.0.0 and stop showing likes as wall-to-wall comments (except when the liker does not have any Diaspora protocol ability) + Cdav - continued improvements to the web UI + Pong - the classic pong game + Dfedfix - removed, no longer needed + Openid - moved from core to addon + - bugfixes + unable to delete privacy groups + weird display interaction with code blocks and escaped base64 content containing 8 - O + workaround WordPress oembeds which are almost completely javascript and therefore filtered + restrict oembed cache url to 254 chars to avoid spurious failures caching google map urls + "Page not found" appeared twice + birthdays weren't being automatically added to event calendar + some iCal entries had malformed descriptions + Hubzilla 1.10 Wiki: Lots of enhanced functionality, usability improvements, and bugfixes from v1.8 -- cgit v1.2.3 From 6c672d2575764b48c8570e8d10d3434abec1ab5e Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 10 Aug 2016 19:38:20 -0700 Subject: initialise jot editor if it is used as a file drop target and isn't yet opened. --- view/tpl/jot-header.tpl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 9de049b58..fc87c14d7 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -503,6 +503,7 @@ function enableOnUser(){ // cancel event and hover styling DragDropUploadFileHover(e); + if (!editor) $("#profile-jot-text").val(""); // fetch FileList object @@ -527,7 +528,11 @@ function enableOnUser(){ xhr.addEventListener('load', function (e) { //console.log('xhr upload complete', e); window.fileUploadsCompleted = window.fileUploadsCompleted + 1; - addeditortext(xhr.responseText); + + initEditor(function() { + addeditortext(xhr.responseText); + }); + $('#jot-media').val($('#jot-media').val() + xhr.responseText); // When all the uploads have completed, refresh the page if (window.filesToUpload > 0 && window.fileUploadsCompleted === window.filesToUpload) { -- cgit v1.2.3 From a8a3812890a23ece4bfff6fe009609f579479bc4 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 10 Aug 2016 20:01:52 -0700 Subject: optimise Onepoll so it doesn't try and fetch posts for a channel that we've not given permission to send us their stream and posts. Currently the posts are fetched, processed, and ultimately discarded. Since we know they are going to be discarded, there's not much point fetching them in the first place. --- Zotlabs/Daemon/Onepoll.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Zotlabs/Daemon/Onepoll.php b/Zotlabs/Daemon/Onepoll.php index 21c46cec5..bebf8bf17 100644 --- a/Zotlabs/Daemon/Onepoll.php +++ b/Zotlabs/Daemon/Onepoll.php @@ -102,11 +102,20 @@ class Onepoll { $fetch_feed = true; $x = null; + // They haven't given us permission to see their stream + $can_view_stream = intval(get_abconfig($importer_uid,$contact['abook_xchan'],'their_perms','view_stream')); if(! $can_view_stream) $fetch_feed = false; + // we haven't given them permission to send us their stream + + $can_send_stream = intval(get_abconfig($importer_uid,$contact['abook_xchan'],'my_perms','send_stream')); + + if(! $can_send_stream) + $fetch_feed = false; + if($fetch_feed) { $feedurl = str_replace('/poco/','/zotfeed/',$contact['xchan_connurl']); -- cgit v1.2.3 From e985436b3be0a6c0cdb3de57c61de16a25cc0de5 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 10 Aug 2016 20:49:51 -0700 Subject: forum detection was off for forums with custom perms --- include/zot.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/zot.php b/include/zot.php index 4e443652f..3a1986e3b 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3784,9 +3784,11 @@ function zotinfo($arr) { // check if it has characteristics of a public forum based on custom permissions. $t = q("select * from abconfig where abconfig.cat = 'my_perms' and abconfig.chan = %d and abconfig.xchan = '%s' and abconfig.k in ('tag_deliver', 'send_stream') ", intval($e['channel_id']), - intval($e['channel_hash']) + dbesc($e['channel_hash']) ); + $ch = 0; + if($t) { foreach($t as $tt) { if($tt['k'] == 'tag_deliver' && $tt['v'] == 1) -- cgit v1.2.3 From 3ba4b2c1c1ffa8275337857e10c250b338e15170 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 11 Aug 2016 17:02:52 -0700 Subject: A bit of api cleanup. Don't get excited. This is like a 0.005% cleanup but you have to start somewhere. --- Zotlabs/Lib/Api_router.php | 24 +++++++ Zotlabs/Module/Api.php | 55 ++++++-------- include/api.php | 176 +++++++++++++++++++++++---------------------- include/text.php | 35 +++++++++ 4 files changed, 173 insertions(+), 117 deletions(-) create mode 100644 Zotlabs/Lib/Api_router.php diff --git a/Zotlabs/Lib/Api_router.php b/Zotlabs/Lib/Api_router.php new file mode 100644 index 000000000..404678bd9 --- /dev/null +++ b/Zotlabs/Lib/Api_router.php @@ -0,0 +1,24 @@ + $fn, 'auth' => $auth_required ]; + } + + static function find($path) { + if(array_key_exists($path,self::$routes)) + return self::$routes[$path]; + return null; + } + + static function dbg() { + return self::$routes; + } + +} \ No newline at end of file diff --git a/Zotlabs/Module/Api.php b/Zotlabs/Module/Api.php index e4744c29f..7f8aed48d 100644 --- a/Zotlabs/Module/Api.php +++ b/Zotlabs/Module/Api.php @@ -8,20 +8,15 @@ require_once('include/api.php'); class Api extends \Zotlabs\Web\Controller { function post() { - if(! local_channel()) { notice( t('Permission denied.') . EOL); return; } - if(count(\App::$user) && x(\App::$user,'uid') && \App::$user['uid'] != local_channel()) { - notice( t('Permission denied.') . EOL); - return; - } - } - function get() { + function get() { + if(\App::$cmd=='api/oauth/authorize'){ /* @@ -33,7 +28,8 @@ class Api extends \Zotlabs\Web\Controller { // get consumer/client from request token try { $request = OAuth1Request::from_request(); - } catch(Exception $e) { + } + catch(Exception $e) { echo "
"; var_dump($e); killme();
 			}
 			
@@ -41,17 +37,20 @@ class Api extends \Zotlabs\Web\Controller {
 			if(x($_POST,'oauth_yes')){
 			
 				$app = $this->oauth_get_client($request);
-				if (is_null($app)) return "Invalid request. Unknown token.";
+				if (is_null($app)) 
+					return "Invalid request. Unknown token.";
+
 				$consumer = new OAuth1Consumer($app['client_id'], $app['pw'], $app['redirect_uri']);
 	
 				$verifier = md5($app['secret'].local_channel());
 				set_config("oauth", $verifier, local_channel());
 				
 				
-				if($consumer->callback_url!=null) {
+				if($consumer->callback_url != null) {
 					$params = $request->get_parameters();
-					$glue="?";
-					if (strstr($consumer->callback_url,$glue)) $glue="?";
+					$glue = '?';
+					if(strstr($consumer->callback_url,$glue))
+						$glue = '?';
 					goaway($consumer->callback_url . $glue . "oauth_token=" . OAuth1Util::urlencode_rfc3986($params['oauth_token']) . "&oauth_verifier=" . OAuth1Util::urlencode_rfc3986($verifier));
 					killme();
 				}
@@ -59,7 +58,7 @@ class Api extends \Zotlabs\Web\Controller {
 				$tpl = get_markup_template("oauth_authorize_done.tpl");
 				$o = replace_macros($tpl, array(
 					'$title' => t('Authorize application connection'),
-					'$info' => t('Return to your app and insert this Securty Code:'),
+					'$info' => t('Return to your app and insert this Security Code:'),
 					'$code' => $verifier,
 				));
 			
@@ -72,14 +71,11 @@ class Api extends \Zotlabs\Web\Controller {
 				notice( t('Please login to continue.') . EOL );
 				return login(false,'api-login',$request->get_parameters());
 			}
-			//FKOAuth1::loginUser(4);
 			
 			$app = $this->oauth_get_client($request);
-			if (is_null($app)) return "Invalid request. Unknown token.";
-			
-			
-	
-			
+			if (is_null($app))
+				return "Invalid request. Unknown token.";
+						
 			$tpl = get_markup_template('oauth_authorize.tpl');
 			$o = replace_macros($tpl, array(
 				'$title' => t('Authorize application connection'),
@@ -100,23 +96,18 @@ class Api extends \Zotlabs\Web\Controller {
 
 	function oauth_get_client($request){
 
-	
 		$params = $request->get_parameters();
-		$token = $params['oauth_token'];
+		$token  = $params['oauth_token'];
 	
-		$r = q("SELECT `clients`.* 
-			FROM `clients`, `tokens` 
-			WHERE `clients`.`client_id`=`tokens`.`client_id` 
-			AND `tokens`.`id`='%s' AND `tokens`.`auth_scope`='request'",
-			dbesc($token));
+		$r = q("SELECT clients.* FROM clients, tokens WHERE clients.client_id = tokens.client_id 
+			AND tokens.id = '%s' AND tokens.auth_scope = 'request' ",
+			dbesc($token)
+		);
+		if($r)
+			return $r[0];
 
-		if (!count($r))
-			return null;
+		return null;
 	
-		return $r[0];
 	}
 	
-	
-	
-	
 }
diff --git a/include/api.php b/include/api.php
index 2587a72bb..9725c6dc0 100644
--- a/include/api.php
+++ b/include/api.php
@@ -62,9 +62,10 @@ require_once('include/api_auth.php');
 
 
 	function api_register_func($path, $func, $auth=false){
-		global $API;
-		$API[$path] = array('func'=>$func,
-							'auth'=>$auth);
+		\Zotlabs\Lib\Api_router::register($path,$func,$auth);
+//		global $API;
+//		$API[$path] = array('func'=>$func,
+//							'auth'=>$auth);
 	}
 
 	
@@ -73,99 +74,104 @@ require_once('include/api_auth.php');
 	 **************************/
 
 	function api_call($a){
-		GLOBAL $API, $called_api;
+		GLOBAL $called_api;
 
-		// preset
-		$type="json";
 
-		foreach ($API as $p=>$info){
-			if (strpos(App::$query_string, $p)===0){
-				$called_api= explode("/",$p);
-				//unset($_SERVER['PHP_AUTH_USER']);
-				if ($info['auth'] === true && api_user() === false) {
-						api_login($a);
-				}
+		$type = 'json';
+		$p = App::$cmd;
+
+		if(strrpos($p,'.')) {
+			$type = substr($p,strrpos($p,'.')+1);
+			$p = substr($p,0,strrpos($p,'.'));
+		}
 
-				load_contact_links(api_user());
-
-				$channel = App::get_channel();
-
-				logger('API call for ' . $channel['channel_name'] . ': ' . App::$query_string);
-				logger('API parameters: ' . print_r($_REQUEST,true));
-
-				$type="json";
-
-				if (strpos(App::$query_string, ".xml")>0) $type="xml";
-				if (strpos(App::$query_string, ".json")>0) $type="json";
-				if (strpos(App::$query_string, ".rss")>0) $type="rss";
-				if (strpos(App::$query_string, ".atom")>0) $type="atom";
-				if (strpos(App::$query_string, ".as")>0) $type="as";
-
-				$r = call_user_func($info['func'], $a, $type);
-				if ($r===false) return;
-
-				switch($type){
-					case "xml":
-						$r = mb_convert_encoding($r, "UTF-8",mb_detect_encoding($r));
-						header ("Content-Type: text/xml");
-						return ''."\n".$r;
-						break;
-					case "json":
-						header ("Content-Type: application/json");
-						foreach($r as $rr) {
-							if(! $rr)
-								$rr = array();
-							$json = json_encode($rr);
-						}
-						if ($_GET['callback'])
-							$json = $_GET['callback']."(".$json.")";
-						return $json; 
-						break;
-					case "rss":
-						header ("Content-Type: application/rss+xml");
-						return ''."\n".$r;
-						break;
-					case "atom":
-						header ("Content-Type: application/atom+xml");
-						return ''."\n".$r;
-						break;
-					case "as":
-						//header ("Content-Type: application/json");
-						//foreach($r as $rr)
-						//    return json_encode($rr);
-						return json_encode($r);
-						break;
+		$info = \Zotlabs\Lib\Api_router::find($p);
 
-				}
-				//echo "
"; var_dump($r); die();
+		logger('info: ' . $p . ' type: ' . $type . ' ' . print_r($info,true));
+
+		if($info) {
+			$called_api= explode("/",$p);
+
+			if ($info['auth'] === true && api_user() === false) {
+					api_login($a);
 			}
-		}
-		header("HTTP/1.1 404 Not Found");
-		logger('API call not implemented: '.App::$query_string." - ".print_r($_REQUEST,true));
-		$r = 'not implemented';
-		switch($type){
-			case "xml":
-				header ("Content-Type: text/xml");
-				return ''."\n".$r;
-				break;
-			case "json":
-				header ("Content-Type: application/json");
-			    return json_encode(array('error' => 'not implemented'));
-				break;
-			case "rss":
-				header ("Content-Type: application/rss+xml");
-				return ''."\n".$r;
-				break;
-			case "atom":
-				header ("Content-Type: application/atom+xml");
-				return ''."\n".$r;
-				break;
+
+			load_contact_links(api_user());
+
+			$channel = App::get_channel();
+
+			logger('API call for ' . $channel['channel_name'] . ': ' . App::$query_string);
+			logger('API parameters: ' . print_r($_REQUEST,true));
+
+			$r = call_user_func($info['func'], $a, $type);
+
+			if($r === false) 
+				return;
+
+			switch($type){
+				case "xml":
+					$r = mb_convert_encoding($r, "UTF-8",mb_detect_encoding($r));
+					header ("Content-Type: text/xml");
+					return ''."\n".$r;
+					break;
+				case "json":
+					header ("Content-Type: application/json");
+					foreach($r as $rr) {
+						if(! $rr)
+							$rr = array();
+						$json = json_encode($rr);
+					}
+					if ($_GET['callback'])
+						$json = $_GET['callback']."(".$json.")";
+					return $json; 
+					break;
+				case "rss":
+					header ("Content-Type: application/rss+xml");
+					return ''."\n".$r;
+					break;
+				case "atom":
+					header ("Content-Type: application/atom+xml");
+					return ''."\n".$r;
+					break;
+				case "as":
+					//header ("Content-Type: application/json");
+					//foreach($r as $rr)
+					//    return json_encode($rr);
+					return json_encode($r);
+					break;
+
+			}
+
 		}
 	}
 
+	header("HTTP/1.1 404 Not Found");
+	logger('API call not implemented: ' . App::$query_string . ' - ' . print_r($_REQUEST,true));
+	$r = 'not implemented';
+	switch($type){
+		case "xml":
+			header ("Content-Type: text/xml");
+			return ''."\n".$r;
+			break;
+		case "json":
+			header ("Content-Type: application/json");
+		    return json_encode(array('error' => 'not implemented'));
+			break;
+		case "rss":
+			header ("Content-Type: application/rss+xml");
+			return ''."\n".$r;
+			break;
+		case "atom":
+			header ("Content-Type: application/atom+xml");
+			return ''."\n".$r;
+			break;
+	}
+
+
 	/**
 	 * RSS extra info
 	 */
+
 	function api_rss_extra($a, $arr, $user_info){
 		if (is_null($user_info)) $user_info = api_get_user($a);
 		$arr['$user'] = $user_info;
diff --git a/include/text.php b/include/text.php
index ac210b336..a2a6d918b 100644
--- a/include/text.php
+++ b/include/text.php
@@ -2975,3 +2975,38 @@ function text_highlight($s,$lang) {
     return('' . $o . '');
 }
 
+// function to convert multi-dimensional array to xml
+// create new instance of simplexml
+
+// $xml = new SimpleXMLElement('');
+
+// function callback
+// array2XML($xml, $my_array);
+
+// save as xml file
+// echo (($xml->asXML('data.xml')) ? 'Your XML file has been generated successfully!' : 'Error generating XML file!');
+
+function arrtoxml($root_elem,$arr) {
+	$xml = new SimpleXMLElement('<' . $root_elem . '/>');
+	array2XML($xml,$arr);
+	return $xml->asXML();
+}
+
+function array2XML($obj, $array)
+{
+    foreach ($array as $key => $value)
+    {
+        if(is_numeric($key))
+            $key = 'item' . $key;
+
+        if (is_array($value))
+        {
+            $node = $obj->addChild($key);
+            array2XML($node, $value);
+        }
+        else
+        {
+            $obj->addChild($key, htmlspecialchars($value));
+        }
+    }
+}
-- 
cgit v1.2.3


From c63deda71a8acc73eaa05fb045f214f93c3aa347 Mon Sep 17 00:00:00 2001
From: redmatrix 
Date: Thu, 11 Aug 2016 17:33:28 -0700
Subject: embed filter adjustments

---
 include/oembed.php | 30 +++++++++++++++++-------------
 1 file changed, 17 insertions(+), 13 deletions(-)

diff --git a/include/oembed.php b/include/oembed.php
index 5c6f6be79..fe6f10d71 100755
--- a/include/oembed.php
+++ b/include/oembed.php
@@ -1,8 +1,10 @@
 html, LOGGER_DEBUG, LOG_INFO); 
 			}
 
-			$orig_len = mb_strlen(trim($orig));
-			$new_len = mb_strlen(trim($j->html));
-			if(! $new_len)
+			$orig_len = mb_strlen(preg_replace('/\s+/','',$orig));
+			$new_len = mb_strlen(preg_replace('/\s+/','',$j->html));
+
+			if(stripos($orig,'type = 'error';
 			elseif($orig_len) {
 				$ratio = $new_len / $orig_len;
-				if($ratio < 0.8)
+				if($ratio < 0.5) {
 					$j->type = 'error';
+					logger('oembed html truncated: ' . $ratio, LOGGER_DEBUG, LOG_INFO);
+				}
 			}
 
 		}
@@ -231,7 +235,7 @@ function oembed_fetch_url($embedurl){
 
 	$j->embedurl = $embedurl;
 
-// logger('fetch return: ' . print_r($j,true));
+	// logger('fetch return: ' . print_r($j,true));
 
 	return $j;
 
-- 
cgit v1.2.3


From 0257d660ad932403629e6c8ad507581b266e269f Mon Sep 17 00:00:00 2001
From: redmatrix 
Date: Thu, 11 Aug 2016 18:09:48 -0700
Subject: move error processing back inside the function

---
 include/api.php | 44 ++++++++++++++++++++++----------------------
 1 file changed, 22 insertions(+), 22 deletions(-)

diff --git a/include/api.php b/include/api.php
index 9725c6dc0..90e88640b 100644
--- a/include/api.php
+++ b/include/api.php
@@ -143,31 +143,31 @@ require_once('include/api_auth.php');
 			}
 
 		}
-	}
+	
 
-	header("HTTP/1.1 404 Not Found");
-	logger('API call not implemented: ' . App::$query_string . ' - ' . print_r($_REQUEST,true));
-	$r = 'not implemented';
-	switch($type){
-		case "xml":
-			header ("Content-Type: text/xml");
-			return ''."\n".$r;
-			break;
-		case "json":
-			header ("Content-Type: application/json");
-		    return json_encode(array('error' => 'not implemented'));
-			break;
-		case "rss":
-			header ("Content-Type: application/rss+xml");
-			return ''."\n".$r;
-			break;
-		case "atom":
-			header ("Content-Type: application/atom+xml");
-			return ''."\n".$r;
-			break;
+		header("HTTP/1.1 404 Not Found");
+		logger('API call not implemented: ' . App::$query_string . ' - ' . print_r($_REQUEST,true));
+		$r = 'not implemented';
+		switch($type){
+			case "xml":
+				header ("Content-Type: text/xml");
+				return ''."\n".$r;
+				break;
+			case "json":
+				header ("Content-Type: application/json");
+			    return json_encode(array('error' => 'not implemented'));
+				break;
+			case "rss":
+				header ("Content-Type: application/rss+xml");
+				return ''."\n".$r;
+				break;
+			case "atom":
+				header ("Content-Type: application/atom+xml");
+				return ''."\n".$r;
+				break;
+		}
 	}
 
-
 	/**
 	 * RSS extra info
 	 */
-- 
cgit v1.2.3


From 6bc5dd75bd3aa27ae9f2768f95df6ad2133239a7 Mon Sep 17 00:00:00 2001
From: redmatrix 
Date: Thu, 11 Aug 2016 19:42:44 -0700
Subject: more cleanup of api

---
 Zotlabs/Module/Api.php |   2 +-
 include/api.php        | 218 ++++++++++++++++++++++++-------------------------
 2 files changed, 110 insertions(+), 110 deletions(-)

diff --git a/Zotlabs/Module/Api.php b/Zotlabs/Module/Api.php
index 7f8aed48d..71c8dc865 100644
--- a/Zotlabs/Module/Api.php
+++ b/Zotlabs/Module/Api.php
@@ -90,7 +90,7 @@ class Api extends \Zotlabs\Web\Controller {
 			return $o;
 		}
 		
-		echo api_call($a);
+		echo api_call();
 		killme();
 	}
 
diff --git a/include/api.php b/include/api.php
index 90e88640b..dc105d747 100644
--- a/include/api.php
+++ b/include/api.php
@@ -61,11 +61,8 @@ require_once('include/api_auth.php');
 	}
 
 
-	function api_register_func($path, $func, $auth=false){
+	function api_register_func($path, $func, $auth=false) {
 		\Zotlabs\Lib\Api_router::register($path,$func,$auth);
-//		global $API;
-//		$API[$path] = array('func'=>$func,
-//							'auth'=>$auth);
 	}
 
 	
@@ -73,9 +70,7 @@ require_once('include/api_auth.php');
 	 *  MAIN API ENTRY POINT  *
 	 **************************/
 
-	function api_call($a){
-		GLOBAL $called_api;
-
+	function api_call(){
 
 		$type = 'json';
 		$p = App::$cmd;
@@ -83,6 +78,9 @@ require_once('include/api_auth.php');
 		if(strrpos($p,'.')) {
 			$type = substr($p,strrpos($p,'.')+1);
 			$p = substr($p,0,strrpos($p,'.'));
+			// recalculate App argc,argv since we just extracted the type from it
+			App::$argv = explode('/',$p);
+			App::$argc = count(App::$argv);
 		}
 
 		$info = \Zotlabs\Lib\Api_router::find($p);
@@ -90,7 +88,6 @@ require_once('include/api_auth.php');
 		logger('info: ' . $p . ' type: ' . $type . ' ' . print_r($info,true));
 
 		if($info) {
-			$called_api= explode("/",$p);
 
 			if ($info['auth'] === true && api_user() === false) {
 					api_login($a);
@@ -103,12 +100,12 @@ require_once('include/api_auth.php');
 			logger('API call for ' . $channel['channel_name'] . ': ' . App::$query_string);
 			logger('API parameters: ' . print_r($_REQUEST,true));
 
-			$r = call_user_func($info['func'], $a, $type);
+			$r = call_user_func($info['func'],$type);
 
 			if($r === false) 
 				return;
 
-			switch($type){
+			switch($type) {
 				case "xml":
 					$r = mb_convert_encoding($r, "UTF-8",mb_detect_encoding($r));
 					header ("Content-Type: text/xml");
@@ -172,7 +169,7 @@ require_once('include/api_auth.php');
 	 * RSS extra info
 	 */
 
-	function api_rss_extra($a, $arr, $user_info){
+	function api_rss_extra( $arr, $user_info){
 		if (is_null($user_info)) $user_info = api_get_user($a);
 		$arr['$user'] = $user_info;
 		$arr['$rss'] = array(
@@ -192,8 +189,8 @@ require_once('include/api_auth.php');
 	 * Returns user info array.
 	 */
 
-	function api_get_user($a, $contact_id = null, $contact_xchan = null){
-		global $called_api;
+	function api_get_user( $contact_id = null, $contact_xchan = null){
+
 		$user = null;
 		$extra_query = "";
 
@@ -218,26 +215,12 @@ require_once('include/api_auth.php');
 				if (api_user()!==false)
 					$extra_query .= " AND abook_channel = ".intval(api_user());
 			}
-		
-			if (is_null($user) && argc() > (count($called_api)-1) && (strstr(App::$cmd,'/users'))){
-				$argid = count($called_api);
-				list($xx, $null) = explode(".",argv($argid));
-				if(is_numeric($xx)){
-					$user = intval($xx);
-					$extra_query = " AND abook_id = %d ";
-				} else {
-					$user = dbesc($xx);
-					$extra_query = " AND xchan_addr like '%s@%%' ";
-					if (api_user() !== false)
-						$extra_query .= " AND abook_channel = ".intval(api_user());
-				}
-			}
 		}
 		
 		if (! $user) {
 			if (api_user() === false) {
 				api_login($a); 
-				return False;
+				return false;
 			} else {
 				$user = local_channel();
 				$extra_query = " AND abook_channel = %d AND abook_self = 1 ";
@@ -245,7 +228,8 @@ require_once('include/api_auth.php');
 			
 		}
 		
-		logger('api_user: ' . $extra_query . ', user: ' . $user);
+		logger('api_user: ' . $extra_query . ', user: ' . $user, LOGGER_DATA, LOG_INFO);
+
 		// user info		
 
 		$uinfo = q("SELECT * from abook left join xchan on abook_xchan = xchan_hash 
@@ -362,7 +346,7 @@ require_once('include/api_auth.php');
 		
 	}
 
-	function api_client_register($a,$type) {
+	function api_client_register($type) {
 
 		$ret = array();
 		$key = random_string(16);
@@ -395,12 +379,12 @@ require_once('include/api_auth.php');
 
 
 
-	function api_item_get_user($a, $item) {
+	function api_item_get_user( $item) {
 
 		// The author is our direct contact, in a conversation with us.
 
 		if($item['author']['abook_id']) {
-			return api_get_user($a,$item['author']['abook_id']);
+			return api_get_user($item['author']['abook_id']);
 		}	
 		
 		// We don't know this person directly.
@@ -479,7 +463,7 @@ require_once('include/api_auth.php');
 	 * returns a 401 status code and an error message if not. 
 	 * http://developer.twitter.com/doc/get/account/verify_credentials
 	 */
-	function api_account_verify_credentials($a, $type){
+	function api_account_verify_credentials( $type){
 		if (api_user()===false) return false;
 		$user_info = api_get_user($a);
 		
@@ -489,7 +473,7 @@ require_once('include/api_auth.php');
 	api_register_func('api/account/verify_credentials','api_account_verify_credentials', true);
 
 
-	function api_account_logout($a, $type){
+	function api_account_logout( $type){
 		require_once('include/auth.php');
 		App::$session->nuke();
 		return api_apply_template("user", $type, array('$user' => null));
@@ -513,7 +497,7 @@ require_once('include/api_auth.php');
 	 * Red basic channel export
 	 */
 
-	function api_export_basic($a, $type) {
+	function api_export_basic( $type) {
 		if(api_user() === false) {
 			logger('api_export_basic: no user');
 			return false;
@@ -525,9 +509,10 @@ require_once('include/api_auth.php');
 	}
 	api_register_func('api/export/basic','api_export_basic', true);
 	api_register_func('api/red/channel/export/basic','api_export_basic', true);
+	api_register_func('api/hz/v1/channel/export/basic','api_export_basic', true);
 
 
-	function api_channel_stream($a, $type) {
+	function api_channel_stream( $type) {
 		if(api_user() === false) {
 			logger('api_channel_stream: no user');
 			return false;
@@ -542,18 +527,20 @@ require_once('include/api_auth.php');
 		}
 	}
 	api_register_func('api/red/channel/stream','api_channel_stream', true);
+	api_register_func('api/hz/v1/channel/stream','api_channel_stream', true);
 
-	function api_attach_list($a,$type) {
+	function api_attach_list($type) {
 		logger('api_user: ' . api_user());
 		json_return_and_die(attach_list_files(api_user(),get_observer_hash(),'','','','created asc'));
 	}
 	api_register_func('api/red/files','api_attach_list', true);
+	api_register_func('api/hz/v1/files','api_attach_list', true);
 
 
 
 
 
-	function api_file_meta($a,$type) {
+	function api_file_meta($type) {
 		if (api_user()===false) return false;
 		if(! $_REQUEST['file_id']) return false;
 		$r = q("select * from attach where uid = %d and hash = '%s' limit 1",
@@ -569,9 +556,10 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/filemeta', 'api_file_meta', true);
+	api_register_func('api/hz/v1/filemeta', 'api_file_meta', true);
 
 
-	function api_file_data($a,$type) {
+	function api_file_data($type) {
 		if (api_user()===false) return false;
 		if(! $_REQUEST['file_id']) return false;
 		$start = (($_REQUEST['start']) ? intval($_REQUEST['start']) : 0);
@@ -612,10 +600,11 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/filedata', 'api_file_data', true);
+	api_register_func('api/hz/v1/filedata', 'api_file_data', true);
 
 
 
-	function api_file_detail($a,$type) {
+	function api_file_detail($type) {
 		if (api_user()===false) return false;
 		if(! $_REQUEST['file_id']) return false;
 		$r = q("select * from attach where uid = %d and hash = '%s' limit 1",
@@ -637,20 +626,23 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/file', 'api_file_detail', true);
+	api_register_func('api/hz/v1/file', 'api_file_detail', true);
 
 
-	function api_albums($a,$type) {
+	function api_albums($type) {
 		json_return_and_die(photos_albums_list(App::get_channel(),App::get_observer()));
 	}
 	api_register_func('api/red/albums','api_albums', true);
+	api_register_func('api/hz/v1/albums','api_albums', true);
 
-	function api_photos($a,$type) {
+	function api_photos($type) {
 		$album = $_REQUEST['album'];
 		json_return_and_die(photos_list_photos(App::get_channel(),App::get_observer(),$album));
 	}
 	api_register_func('api/red/photos','api_photos', true);
+	api_register_func('api/hz/v1/photos','api_photos', true);
 
-	function api_photo_detail($a,$type) {
+	function api_photo_detail($type) {
 		if (api_user()===false) return false;
 		if(! $_REQUEST['photo_id']) return false;
 		$scale = ((array_key_exists('scale',$_REQUEST)) ? intval($_REQUEST['scale']) : 0);
@@ -690,9 +682,10 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/photo', 'api_photo_detail', true);
+	api_register_func('api/hz/v1/photo', 'api_photo_detail', true);
 
 
-	function api_group_members($a,$type) {
+	function api_group_members($type) {
 		if(api_user() === false)
 			return false;
 
@@ -712,11 +705,12 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/group_members','api_group_members', true);
+	api_register_func('api/hz/v1/group_members','api_group_members', true);
 
 
 
 
-	function api_group($a,$type) {
+	function api_group($type) {
 		if(api_user() === false)
 			return false;
 
@@ -726,9 +720,10 @@ require_once('include/api_auth.php');
 		json_return_and_die($r);
 	}
 	api_register_func('api/red/group','api_group', true);
+	api_register_func('api/hz/v1/group','api_group', true);
 
 
-	function api_red_xchan($a,$type) {
+	function api_red_xchan($type) {
 		logger('api_xchan');
 
 		if(api_user() === false)
@@ -744,9 +739,10 @@ require_once('include/api_auth.php');
 	};
 
 	api_register_func('api/red/xchan','api_red_xchan',true);
+	api_register_func('api/hz/v1/xchan','api_red_xchan',true);
 	
 
-	function api_statuses_mediap($a, $type) {
+	function api_statuses_mediap( $type) {
 		if (api_user() === false) {
 			logger('api_statuses_update: no user');
 			return false;
@@ -788,11 +784,11 @@ require_once('include/api_auth.php');
 		$mod->post();
 
 		// this should output the last post (the one we just posted).
-		return api_status_show($a,$type);
+		return api_status_show($type);
 	}
 	api_register_func('api/statuses/mediap','api_statuses_mediap', true);
 
-	function api_statuses_update($a, $type) {
+	function api_statuses_update( $type) {
 		if (api_user() === false) {
 			logger('api_statuses_update: no user');
 			return false;
@@ -907,13 +903,13 @@ require_once('include/api_auth.php');
 		$mod->post();	
 
 		// this should output the last post (the one we just posted).
-		return api_status_show($a,$type);
+		return api_status_show($type);
 	}
 	api_register_func('api/statuses/update_with_media','api_statuses_update', true);
 	api_register_func('api/statuses/update','api_statuses_update', true);
 
 
-	function red_item_new($a, $type) {
+	function red_item_new( $type) {
 
 		if (api_user() === false) {
 			logger('api_red_item_new: no user');
@@ -945,9 +941,10 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/item/new','red_item_new', true);
+	api_register_func('api/hz/v1/item/new','red_item_new', true);
 
 
-	function red_item($a, $type) {
+	function red_item( $type) {
 
 		if (api_user() === false) {
 			logger('api_red_item_full: no user');
@@ -983,6 +980,7 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/item/full','red_item', true);
+	api_register_func('api/hz/v1/item/full','red_item', true);
 
 
 
@@ -1048,7 +1046,7 @@ require_once('include/api_auth.php');
 		return $status_info;
 	}
 
-	function api_status_show($a, $type){
+	function api_status_show( $type){
 		$user_info = api_get_user($a);
 
 		// get last public message
@@ -1126,7 +1124,7 @@ require_once('include/api_auth.php');
 // FIXME - this is essentially the same as api_status_show except for the template formatting at the end. Consolidate.
  
 
-	function api_users_show($a, $type){
+	function api_users_show( $type){
 		$user_info = api_get_user($a);
 
 		require_once('include/security.php');
@@ -1198,7 +1196,7 @@ require_once('include/api_auth.php');
 	 * TODO: Add reply info
 	 */
 
-	function api_statuses_home_timeline($a, $type){
+	function api_statuses_home_timeline( $type){
 		if (api_user() === false) 
 			return false;
 
@@ -1265,10 +1263,10 @@ require_once('include/api_auth.php');
 		switch($type){
 			case "atom":
 			case "rss":
-				$data = api_rss_extra($a, $data, $user_info);
+				$data = api_rss_extra( $data, $user_info);
 				break;
 			case "as":
-				$as = api_format_as($a, $ret, $user_info);
+				$as = api_format_as( $ret, $user_info);
 				$as['title'] = App::$config['sitename']." Home Timeline";
 				$as['link']['url'] = z_root()."/".$user_info["screen_name"]."/all";
 				return($as);
@@ -1280,7 +1278,7 @@ require_once('include/api_auth.php');
 	api_register_func('api/statuses/home_timeline','api_statuses_home_timeline', true);
 	api_register_func('api/statuses/friends_timeline','api_statuses_home_timeline', true);
 
-	function api_statuses_public_timeline($a, $type){
+	function api_statuses_public_timeline( $type){
 		if (api_user()===false) return false;
 
 		$user_info = api_get_user($a);
@@ -1326,10 +1324,10 @@ require_once('include/api_auth.php');
 		switch($type){
 			case "atom":
 			case "rss":
-				$data = api_rss_extra($a, $data, $user_info);
+				$data = api_rss_extra( $data, $user_info);
 				break;
 			case "as":
-				$as = api_format_as($a, $ret, $user_info);
+				$as = api_format_as( $ret, $user_info);
 				$as['title'] = App::$config['sitename']. " " . t('Public Timeline');
 				$as['link']['url'] = z_root()."/";
 				return($as);
@@ -1344,7 +1342,7 @@ require_once('include/api_auth.php');
 	 * 
 
 	 */
-	function api_statuses_show($a, $type){
+	function api_statuses_show( $type){
 		if (api_user()===false) return false;
 
 		$user_info = api_get_user($a);
@@ -1383,7 +1381,7 @@ require_once('include/api_auth.php');
 			/*switch($type){
 				case "atom":
 				case "rss":
-					$data = api_rss_extra($a, $data, $user_info);
+					$data = api_rss_extra( $data, $user_info);
 			}*/
 			return  api_apply_template("status", $type, $data);
 		}
@@ -1394,7 +1392,7 @@ require_once('include/api_auth.php');
 	/**
 	 * 
 	 */
-	function api_statuses_repeat($a, $type){
+	function api_statuses_repeat( $type){
 		if (api_user()===false) return false;
 
 		$user_info = api_get_user($a);
@@ -1440,7 +1438,7 @@ require_once('include/api_auth.php');
 	 * 
 	 */
 
-	function api_statuses_destroy($a, $type){
+	function api_statuses_destroy( $type){
 		if (api_user()===false) return false;
 
 		$user_info = api_get_user($a);
@@ -1504,7 +1502,7 @@ require_once('include/api_auth.php');
 	 */
 
 
-	function api_statuses_mentions($a, $type){
+	function api_statuses_mentions( $type){
 		if (api_user()===false) return false;
 				
 		$user_info = api_get_user($a);
@@ -1554,10 +1552,10 @@ require_once('include/api_auth.php');
 		switch($type){
 			case "atom":
 			case "rss":
-				$data = api_rss_extra($a, $data, $user_info);
+				$data = api_rss_extra( $data, $user_info);
 				break;
 			case "as":
-				$as = api_format_as($a, $ret, $user_info);
+				$as = api_format_as( $ret, $user_info);
 				$as["title"] = App::$config['sitename']." Mentions";
 				$as['link']['url'] = z_root()."/";
 				return($as);
@@ -1571,7 +1569,7 @@ require_once('include/api_auth.php');
 	api_register_func('api/statuses/replies','api_statuses_mentions', true);
 
 
-	function api_statuses_user_timeline($a, $type){
+	function api_statuses_user_timeline( $type){
 		if (api_user()===false) return false;
 		
 		$user_info = api_get_user($a);
@@ -1639,7 +1637,7 @@ require_once('include/api_auth.php');
 		switch($type){
 			case "atom":
 			case "rss":
-				$data = api_rss_extra($a, $data, $user_info);
+				$data = api_rss_extra( $data, $user_info);
 		}
 
 		return  api_apply_template("timeline", $type, $data);
@@ -1655,7 +1653,7 @@ require_once('include/api_auth.php');
 	 *
 	 * api v1 : https://web.archive.org/web/20131019055350/https://dev.twitter.com/docs/api/1/post/favorites/create/%3Aid
 	 */
-	function api_favorites_create_destroy($a, $type){
+	function api_favorites_create_destroy( $type){
 
 		logger('favorites_create_destroy');
 
@@ -1712,7 +1710,7 @@ require_once('include/api_auth.php');
 		switch($type){
 			case "atom":
 			case "rss":
-				$data = api_rss_extra($a, $data, $user_info);
+				$data = api_rss_extra( $data, $user_info);
 		}
 
 		return api_apply_template("status", $type, $data);
@@ -1723,7 +1721,7 @@ require_once('include/api_auth.php');
 
 
 
-	function api_favorites($a, $type){
+	function api_favorites( $type){
 		if (api_user()===false) 
 			return false;
 
@@ -1776,10 +1774,10 @@ require_once('include/api_auth.php');
 		switch($type){
 			case "atom":
 			case "rss":
-				$data = api_rss_extra($a, $data, $user_info);
+				$data = api_rss_extra( $data, $user_info);
 				break;
 			case "as":
-				$as = api_format_as($a, $ret, $user_info);
+				$as = api_format_as( $ret, $user_info);
 				$as['title'] = App::$config['sitename']." Home Timeline";
 				$as['link']['url'] = z_root()."/".$user_info["screen_name"]."/all";
 				return($as);
@@ -1795,7 +1793,7 @@ require_once('include/api_auth.php');
 
 
 
-	function api_format_as($a, $ret, $user_info) {
+	function api_format_as( $ret, $user_info) {
 
 		$as = array();
 		$as['title'] = App::$config['sitename']." Public Timeline";
@@ -1913,7 +1911,7 @@ require_once('include/api_auth.php');
 
 			localize_item($item);
 
-			$status_user = (($item['author_xchan']==$user_info['guid'])?$user_info: api_item_get_user($a,$item));
+			$status_user = (($item['author_xchan']==$user_info['guid'])?$user_info: api_item_get_user($item));
 			if(array_key_exists('status',$status_user))
 				unset($status_user['status']);
 
@@ -1992,7 +1990,7 @@ require_once('include/api_auth.php');
 	}
 
 
-	function api_account_rate_limit_status($a,$type) {
+	function api_account_rate_limit_status($type) {
 
 		$hash = array(
 			  'reset_time_in_seconds' => strtotime('now + 1 hour'),
@@ -2008,7 +2006,7 @@ require_once('include/api_auth.php');
 	}
 	api_register_func('api/account/rate_limit_status','api_account_rate_limit_status',true);
 
-	function api_help_test($a,$type) {
+	function api_help_test($type) {
 
 		if ($type == 'xml')
 			$ok = "true";
@@ -2025,7 +2023,7 @@ require_once('include/api_auth.php');
 	 *  This function is deprecated by Twitter
 	 *  returns: json, xml 
 	 **/
-	function api_statuses_f($a, $type, $qtype) {
+	function api_statuses_f( $type, $qtype) {
 		if (api_user()===false) return false;
 		$user_info = api_get_user($a);
 		
@@ -2060,20 +2058,20 @@ require_once('include/api_auth.php');
 
 		$ret = array();
 		foreach($r as $cid){
-			$ret[] = api_get_user($a, $cid['abook_id']);
+			$ret[] = api_get_user( $cid['abook_id']);
 		}
 
 		
 		return array('$users' => $ret);
 
 	}
-	function api_statuses_friends($a, $type){
-		$data =  api_statuses_f($a,$type,"friends");
+	function api_statuses_friends( $type){
+		$data =  api_statuses_f($type,"friends");
 		if ($data===false) return false;
 		return  api_apply_template("friends", $type, $data);
 	}
-	function api_statuses_followers($a, $type){
-		$data = api_statuses_f($a,$type,"followers");
+	function api_statuses_followers( $type){
+		$data = api_statuses_f($type,"followers");
 		if ($data===false) return false;
 		return  api_apply_template("friends", $type, $data);
 	}
@@ -2085,7 +2083,7 @@ require_once('include/api_auth.php');
 
 
 
-	function api_statusnet_config($a,$type) {
+	function api_statusnet_config($type) {
 
 		load_config('system');
 
@@ -2121,8 +2119,9 @@ require_once('include/api_auth.php');
 	api_register_func('api/statusnet/config','api_statusnet_config',false);
 	api_register_func('api/friendica/config','api_statusnet_config',false);
 	api_register_func('api/red/config','api_statusnet_config',false);
+	api_register_func('api/hz/v1/config','api_statusnet_config',false);
 
-	function api_statusnet_version($a,$type) {
+	function api_statusnet_version($type) {
 
 		// liar
 
@@ -2140,7 +2139,7 @@ require_once('include/api_auth.php');
 	api_register_func('api/statusnet/version','api_statusnet_version',false);
 
 
-	function api_friendica_version($a,$type) {
+	function api_friendica_version($type) {
 
 		if($type === 'xml') {
 			header("Content-type: application/xml");
@@ -2155,9 +2154,10 @@ require_once('include/api_auth.php');
 	}
 	api_register_func('api/friendica/version','api_friendica_version',false);
 	api_register_func('api/red/version','api_friendica_version',false);
+	api_register_func('api/hz/v1/version','api_friendica_version',false);
 
 
-	function api_ff_ids($a,$type,$qtype) {
+	function api_ff_ids($type,$qtype) {
 		if(! api_user())
 			return false;
 
@@ -2193,17 +2193,17 @@ require_once('include/api_auth.php');
 		}
 	}
 
-	function api_friends_ids($a,$type) {
-		api_ff_ids($a,$type,'friends');
+	function api_friends_ids($type) {
+		api_ff_ids($type,'friends');
 	}
-	function api_followers_ids($a,$type) {
-		api_ff_ids($a,$type,'followers');
+	function api_followers_ids($type) {
+		api_ff_ids($type,'followers');
 	}
 	api_register_func('api/friends/ids','api_friends_ids',true);
 	api_register_func('api/followers/ids','api_followers_ids',true);
 
 
-	function api_direct_messages_new($a, $type) {
+	function api_direct_messages_new( $type) {
 		if (api_user()===false) return false;
 		
 		if (!x($_POST, "text") || !x($_POST,"screen_name")) return;
@@ -2219,7 +2219,7 @@ require_once('include/api_auth.php');
 				dbesc($_POST['screen_name'] . '@%')
 		);
 
-		$recipient = api_get_user($a, $r[0]['abook_id']);			
+		$recipient = api_get_user( $r[0]['abook_id']);			
 		$replyto = '';
 		$sub     = '';
 		if (x($_REQUEST,'replyto')) {
@@ -2253,7 +2253,7 @@ require_once('include/api_auth.php');
 		switch($type){
 			case "atom":
 			case "rss":
-				$data = api_rss_extra($a, $data, $user_info);
+				$data = api_rss_extra( $data, $user_info);
 		}
 				
 		return  api_apply_template("direct_messages", $type, $data);
@@ -2261,7 +2261,7 @@ require_once('include/api_auth.php');
 	}
 	api_register_func('api/direct_messages/new','api_direct_messages_new',true);
 
-	function api_direct_messages_box($a, $type, $box) {
+	function api_direct_messages_box( $type, $box) {
 		if (api_user()===false) return false;
 		
 		$user_info = api_get_user($a);
@@ -2298,10 +2298,10 @@ require_once('include/api_auth.php');
 			foreach($r as $item) {
 				if ($item['from_xchan'] == $channel['channel_hash']) {
 					$sender = $user_info;
-					$recipient = api_get_user($a, null, $item['to_xchan']);
+					$recipient = api_get_user( null, $item['to_xchan']);
 				}
 				else {
-					$sender = api_get_user($a, null, $item['from_xchan']);
+					$sender = api_get_user( null, $item['from_xchan']);
 					$recipient = $user_info;
 				}
 	
@@ -2314,24 +2314,24 @@ require_once('include/api_auth.php');
 		switch($type){
 			case "atom":
 			case "rss":
-				$data = api_rss_extra($a, $data, $user_info);
+				$data = api_rss_extra( $data, $user_info);
 		}
 				
 		return  api_apply_template("direct_messages", $type, $data);
 		
 	}
 
-	function api_direct_messages_sentbox($a, $type){
-		return api_direct_messages_box($a, $type, "sentbox");
+	function api_direct_messages_sentbox( $type){
+		return api_direct_messages_box( $type, "sentbox");
 	}
-	function api_direct_messages_inbox($a, $type){
-		return api_direct_messages_box($a, $type, "inbox");
+	function api_direct_messages_inbox( $type){
+		return api_direct_messages_box( $type, "inbox");
 	}
-	function api_direct_messages_all($a, $type){
-		return api_direct_messages_box($a, $type, "all");
+	function api_direct_messages_all( $type){
+		return api_direct_messages_box( $type, "all");
 	}
-	function api_direct_messages_conversation($a, $type){
-		return api_direct_messages_box($a, $type, "conversation");
+	function api_direct_messages_conversation( $type){
+		return api_direct_messages_box( $type, "conversation");
 	}
 	api_register_func('api/direct_messages/conversation','api_direct_messages_conversation',true);
 	api_register_func('api/direct_messages/all','api_direct_messages_all',true);
@@ -2339,7 +2339,7 @@ require_once('include/api_auth.php');
 	api_register_func('api/direct_messages','api_direct_messages_inbox',true);
 
 
-	function api_oauth_request_token($a, $type){
+	function api_oauth_request_token( $type){
 		try{
 			$oauth = new ZotOAuth1();
 			$req = OAuth1Request::from_request();
@@ -2354,7 +2354,7 @@ require_once('include/api_auth.php');
 		killme();	
 	}
 
-	function api_oauth_access_token($a, $type){
+	function api_oauth_access_token( $type){
 		try{
 			$oauth = new ZotOAuth1();
 			$req = OAuth1Request::from_request();
-- 
cgit v1.2.3


From ebbe18a426e6959b6bd8bdf23f36902b1a21db1f Mon Sep 17 00:00:00 2001
From: redmatrix 
Date: Thu, 11 Aug 2016 20:09:38 -0700
Subject: better method of dealing with api versions

---
 include/api.php | 52 +++++++++++++++++++++++++++++-----------------------
 1 file changed, 29 insertions(+), 23 deletions(-)

diff --git a/include/api.php b/include/api.php
index dc105d747..043db5921 100644
--- a/include/api.php
+++ b/include/api.php
@@ -72,17 +72,22 @@ require_once('include/api_auth.php');
 
 	function api_call(){
 
-		$type = 'json';
-		$p = App::$cmd;
+		$p    = App::$cmd;
+		$type = null;
 
 		if(strrpos($p,'.')) {
 			$type = substr($p,strrpos($p,'.')+1);
-			$p = substr($p,0,strrpos($p,'.'));
-			// recalculate App argc,argv since we just extracted the type from it
-			App::$argv = explode('/',$p);
-			App::$argc = count(App::$argv);
+			if(strpos($type,'/') === false) {
+				$p = substr($p,0,strrpos($p,'.'));
+				// recalculate App argc,argv since we just extracted the type from it
+				App::$argv = explode('/',$p);
+				App::$argc = count(App::$argv);
+			}
 		}
 
+		if((! $type) || (! in_array($type, [ 'json', 'xml', 'rss', 'as', 'atom' ])))
+			$type = 'json';
+
 		$info = \Zotlabs\Lib\Api_router::find($p);
 
 		logger('info: ' . $p . ' type: ' . $type . ' ' . print_r($info,true));
@@ -118,8 +123,9 @@ require_once('include/api_auth.php');
 							$rr = array();
 						$json = json_encode($rr);
 					}
+					// Lookup JSONP to understand these lines. They provide cross-domain AJAX ability.
 					if ($_GET['callback'])
-						$json = $_GET['callback']."(".$json.")";
+						$json = $_GET['callback'] . '(' . $json . ')' ;
 					return $json; 
 					break;
 				case "rss":
@@ -509,7 +515,7 @@ require_once('include/api_auth.php');
 	}
 	api_register_func('api/export/basic','api_export_basic', true);
 	api_register_func('api/red/channel/export/basic','api_export_basic', true);
-	api_register_func('api/hz/v1/channel/export/basic','api_export_basic', true);
+	api_register_func('api/hz/1.0/channel/export/basic','api_export_basic', true);
 
 
 	function api_channel_stream( $type) {
@@ -527,14 +533,14 @@ require_once('include/api_auth.php');
 		}
 	}
 	api_register_func('api/red/channel/stream','api_channel_stream', true);
-	api_register_func('api/hz/v1/channel/stream','api_channel_stream', true);
+	api_register_func('api/hz/1.0/channel/stream','api_channel_stream', true);
 
 	function api_attach_list($type) {
 		logger('api_user: ' . api_user());
 		json_return_and_die(attach_list_files(api_user(),get_observer_hash(),'','','','created asc'));
 	}
 	api_register_func('api/red/files','api_attach_list', true);
-	api_register_func('api/hz/v1/files','api_attach_list', true);
+	api_register_func('api/hz/1.0/files','api_attach_list', true);
 
 
 
@@ -556,7 +562,7 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/filemeta', 'api_file_meta', true);
-	api_register_func('api/hz/v1/filemeta', 'api_file_meta', true);
+	api_register_func('api/hz/1.0/filemeta', 'api_file_meta', true);
 
 
 	function api_file_data($type) {
@@ -600,7 +606,7 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/filedata', 'api_file_data', true);
-	api_register_func('api/hz/v1/filedata', 'api_file_data', true);
+	api_register_func('api/hz/1.0/filedata', 'api_file_data', true);
 
 
 
@@ -626,21 +632,21 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/file', 'api_file_detail', true);
-	api_register_func('api/hz/v1/file', 'api_file_detail', true);
+	api_register_func('api/hz/1.0/file', 'api_file_detail', true);
 
 
 	function api_albums($type) {
 		json_return_and_die(photos_albums_list(App::get_channel(),App::get_observer()));
 	}
 	api_register_func('api/red/albums','api_albums', true);
-	api_register_func('api/hz/v1/albums','api_albums', true);
+	api_register_func('api/hz/1.0/albums','api_albums', true);
 
 	function api_photos($type) {
 		$album = $_REQUEST['album'];
 		json_return_and_die(photos_list_photos(App::get_channel(),App::get_observer(),$album));
 	}
 	api_register_func('api/red/photos','api_photos', true);
-	api_register_func('api/hz/v1/photos','api_photos', true);
+	api_register_func('api/hz/1.0/photos','api_photos', true);
 
 	function api_photo_detail($type) {
 		if (api_user()===false) return false;
@@ -682,7 +688,7 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/photo', 'api_photo_detail', true);
-	api_register_func('api/hz/v1/photo', 'api_photo_detail', true);
+	api_register_func('api/hz/1.0/photo', 'api_photo_detail', true);
 
 
 	function api_group_members($type) {
@@ -705,7 +711,7 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/group_members','api_group_members', true);
-	api_register_func('api/hz/v1/group_members','api_group_members', true);
+	api_register_func('api/hz/1.0/group_members','api_group_members', true);
 
 
 
@@ -720,7 +726,7 @@ require_once('include/api_auth.php');
 		json_return_and_die($r);
 	}
 	api_register_func('api/red/group','api_group', true);
-	api_register_func('api/hz/v1/group','api_group', true);
+	api_register_func('api/hz/1.0/group','api_group', true);
 
 
 	function api_red_xchan($type) {
@@ -739,7 +745,7 @@ require_once('include/api_auth.php');
 	};
 
 	api_register_func('api/red/xchan','api_red_xchan',true);
-	api_register_func('api/hz/v1/xchan','api_red_xchan',true);
+	api_register_func('api/hz/1.0/xchan','api_red_xchan',true);
 	
 
 	function api_statuses_mediap( $type) {
@@ -941,7 +947,7 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/item/new','red_item_new', true);
-	api_register_func('api/hz/v1/item/new','red_item_new', true);
+	api_register_func('api/hz/1.0/item/new','red_item_new', true);
 
 
 	function red_item( $type) {
@@ -980,7 +986,7 @@ require_once('include/api_auth.php');
 	}
 
 	api_register_func('api/red/item/full','red_item', true);
-	api_register_func('api/hz/v1/item/full','red_item', true);
+	api_register_func('api/hz/1.0/item/full','red_item', true);
 
 
 
@@ -2119,7 +2125,7 @@ require_once('include/api_auth.php');
 	api_register_func('api/statusnet/config','api_statusnet_config',false);
 	api_register_func('api/friendica/config','api_statusnet_config',false);
 	api_register_func('api/red/config','api_statusnet_config',false);
-	api_register_func('api/hz/v1/config','api_statusnet_config',false);
+	api_register_func('api/hz/1.0/config','api_statusnet_config',false);
 
 	function api_statusnet_version($type) {
 
@@ -2154,7 +2160,7 @@ require_once('include/api_auth.php');
 	}
 	api_register_func('api/friendica/version','api_friendica_version',false);
 	api_register_func('api/red/version','api_friendica_version',false);
-	api_register_func('api/hz/v1/version','api_friendica_version',false);
+	api_register_func('api/hz/1.0/version','api_friendica_version',false);
 
 
 	function api_ff_ids($type,$qtype) {
-- 
cgit v1.2.3


From 87a74a44d36db55909401d73e18bd65c66d31461 Mon Sep 17 00:00:00 2001
From: Mario Vavti 
Date: Fri, 12 Aug 2016 17:40:22 +0200
Subject: possible quickfix for multi-acl not honoring jotnets

---
 view/js/acl.js | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/view/js/acl.js b/view/js/acl.js
index b36fa97a1..411190ac9 100644
--- a/view/js/acl.js
+++ b/view/js/acl.js
@@ -95,6 +95,12 @@ ACL.prototype.on_submit = function() {
 		that.form_id.append("");
 	});
 
+	var formfields = $('.profile-jot-net input').serializeArray();
+
+	$.each(formfields, function(i, field) {
+		that.form_id.append("");
+	});
+
 };
 
 ACL.prototype.search = function() {
-- 
cgit v1.2.3


From dc3cc655dbe5e63dbed622a24bf55047104609f9 Mon Sep 17 00:00:00 2001
From: zottel 
Date: Fri, 12 Aug 2016 23:27:03 +0200
Subject: fix auto-connect setting

---
 Zotlabs/Module/Connedit.php | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/Zotlabs/Module/Connedit.php b/Zotlabs/Module/Connedit.php
index 8fa6f0e96..217249469 100644
--- a/Zotlabs/Module/Connedit.php
+++ b/Zotlabs/Module/Connedit.php
@@ -336,9 +336,6 @@ class Connedit extends \Zotlabs\Web\Controller {
 			call_hooks('accept_follow', $arr);
 		}
 	
-		if(! is_null($autoperms))
-			set_pconfig(local_channel(),'system','autoperms',(($autoperms) ? $abook_my_perms : 0));
-	
 		$this->connedit_clone($a);
 	
 		if(($_REQUEST['pending']) && (!$_REQUEST['done']))
-- 
cgit v1.2.3


From 5365e9b3a5eb8d270d2b805db0d7b2770f352229 Mon Sep 17 00:00:00 2001
From: redmatrix 
Date: Fri, 12 Aug 2016 14:45:16 -0700
Subject: string update

---
 Zotlabs/Module/Dreport.php |    2 +-
 util/hmessages.po          | 9580 ++++++++++++++++++++++----------------------
 2 files changed, 4788 insertions(+), 4794 deletions(-)

diff --git a/Zotlabs/Module/Dreport.php b/Zotlabs/Module/Dreport.php
index d2933b464..3fdeff369 100644
--- a/Zotlabs/Module/Dreport.php
+++ b/Zotlabs/Module/Dreport.php
@@ -74,7 +74,7 @@ class Dreport extends \Zotlabs\Web\Controller {
 	
 		if(! $r) {
 			notice( t('no results') . EOL);
-			return;
+//			return;
 		}
 		
 		for($x = 0; $x < count($r); $x++ ) {
diff --git a/util/hmessages.po b/util/hmessages.po
index 75311641c..99a478c2e 100644
--- a/util/hmessages.po
+++ b/util/hmessages.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-08-05 00:02-0700\n"
+"POT-Creation-Date: 2016-08-12 00:02-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -166,7 +166,7 @@ msgstr ""
 msgid "parent"
 msgstr ""
 
-#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2633
+#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2657
 msgid "Collection"
 msgstr ""
 
@@ -190,17 +190,17 @@ msgstr ""
 msgid "Schedule Outbox"
 msgstr ""
 
-#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796
-#: ../../Zotlabs/Module/Photos.php:1241
+#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800
+#: ../../Zotlabs/Module/Photos.php:1249
 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490
-#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035
+#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1036
 #: ../../include/widgets.php:1613
 msgid "Unknown"
 msgstr ""
 
 #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85
-#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93
-#: ../../include/conversation.php:1654
+#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:95
+#: ../../include/conversation.php:1659
 msgid "Files"
 msgstr ""
 
@@ -212,24 +212,23 @@ msgstr ""
 msgid "Shared"
 msgstr ""
 
-#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:321
-#: ../../Zotlabs/Module/Webpages.php:215
+#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323
+#: ../../Zotlabs/Module/Webpages.php:216 ../../Zotlabs/Module/Menu.php:118
 #: ../../Zotlabs/Module/New_channel.php:142
 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184
-#: ../../Zotlabs/Module/Menu.php:118
 msgid "Create"
 msgstr ""
 
-#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:323
-#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362
+#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325
 #: ../../Zotlabs/Module/Cover_photo.php:357
+#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370
 #: ../../Zotlabs/Module/Profile_photo.php:390
 #: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1626
 msgid "Upload"
 msgstr ""
 
-#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:662
-#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Chat.php:247
+#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:250
+#: ../../Zotlabs/Module/Settings.php:662 ../../Zotlabs/Module/Settings.php:688
 #: ../../Zotlabs/Module/Admin.php:1223
 #: ../../Zotlabs/Module/Sharedwithme.php:99
 msgid "Name"
@@ -240,7 +239,7 @@ msgid "Type"
 msgstr ""
 
 #: ../../Zotlabs/Storage/Browser.php:237
-#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324
+#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1326
 msgid "Size"
 msgstr ""
 
@@ -249,30 +248,29 @@ msgstr ""
 msgid "Last Modified"
 msgstr ""
 
-#: ../../Zotlabs/Storage/Browser.php:240
+#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Webpages.php:217
 #: ../../Zotlabs/Module/Connections.php:290
 #: ../../Zotlabs/Module/Connections.php:310
 #: ../../Zotlabs/Module/Editblock.php:109
 #: ../../Zotlabs/Module/Editlayout.php:114
-#: ../../Zotlabs/Module/Editwebpage.php:145
+#: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112
 #: ../../Zotlabs/Module/Editpost.php:84 ../../Zotlabs/Module/Settings.php:722
-#: ../../Zotlabs/Module/Webpages.php:216 ../../Zotlabs/Module/Admin.php:2113
-#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:192
-#: ../../Zotlabs/Module/Menu.php:112 ../../Zotlabs/Module/Thing.php:260
+#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160
+#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Thing.php:260
 #: ../../Zotlabs/Lib/Apps.php:341 ../../Zotlabs/Lib/ThreadItem.php:106
-#: ../../include/page_widgets.php:9 ../../include/page_widgets.php:39
-#: ../../include/menu.php:113 ../../include/channel.php:967
-#: ../../include/channel.php:971
+#: ../../include/menu.php:113 ../../include/page_widgets.php:9
+#: ../../include/page_widgets.php:39 ../../include/channel.php:959
+#: ../../include/channel.php:963
 msgid "Edit"
 msgstr ""
 
-#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Photos.php:1171
+#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Webpages.php:219
 #: ../../Zotlabs/Module/Connections.php:263
 #: ../../Zotlabs/Module/Editblock.php:134
 #: ../../Zotlabs/Module/Editlayout.php:137
-#: ../../Zotlabs/Module/Editwebpage.php:169
-#: ../../Zotlabs/Module/Settings.php:723 ../../Zotlabs/Module/Webpages.php:218
-#: ../../Zotlabs/Module/Group.php:177 ../../Zotlabs/Module/Connedit.php:610
+#: ../../Zotlabs/Module/Editwebpage.php:170
+#: ../../Zotlabs/Module/Connedit.php:610 ../../Zotlabs/Module/Group.php:177
+#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Settings.php:723
 #: ../../Zotlabs/Module/Admin.php:1039 ../../Zotlabs/Module/Admin.php:1213
 #: ../../Zotlabs/Module/Admin.php:2114 ../../Zotlabs/Module/Blocks.php:162
 #: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/Apps.php:342
@@ -294,49 +292,50 @@ msgstr ""
 msgid "WARNING:"
 msgstr ""
 
-#: ../../Zotlabs/Storage/Browser.php:320
+#: ../../Zotlabs/Storage/Browser.php:322
 msgid "Create new folder"
 msgstr ""
 
-#: ../../Zotlabs/Storage/Browser.php:322
+#: ../../Zotlabs/Storage/Browser.php:324
 msgid "Upload file"
 msgstr ""
 
-#: ../../Zotlabs/Storage/Browser.php:329
+#: ../../Zotlabs/Storage/Browser.php:337
 msgid "Drop files here to immediately upload"
 msgstr ""
 
 #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128
-#: ../../Zotlabs/Module/Achievements.php:34
-#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Photos.php:73
-#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Bookmarks.php:61
+#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Setup.php:215
+#: ../../Zotlabs/Module/Webpages.php:95 ../../Zotlabs/Module/Authtest.php:16
+#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601
+#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Item.php:213
+#: ../../Zotlabs/Module/Item.php:221 ../../Zotlabs/Module/Item.php:1071
 #: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91
+#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:226
+#: ../../Zotlabs/Module/Channel.php:267
 #: ../../Zotlabs/Module/Connections.php:33
 #: ../../Zotlabs/Module/Cover_photo.php:277
-#: ../../Zotlabs/Module/Cover_photo.php:290
-#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:225
-#: ../../Zotlabs/Module/Channel.php:266 ../../Zotlabs/Module/Editblock.php:67
+#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Like.php:181
+#: ../../Zotlabs/Module/Editblock.php:67
 #: ../../Zotlabs/Module/Editlayout.php:67
 #: ../../Zotlabs/Module/Editlayout.php:90
 #: ../../Zotlabs/Module/Editwebpage.php:68
 #: ../../Zotlabs/Module/Editwebpage.php:89
 #: ../../Zotlabs/Module/Editwebpage.php:104
-#: ../../Zotlabs/Module/Editwebpage.php:126
-#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Appman.php:75
+#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Appman.php:75
 #: ../../Zotlabs/Module/Pdledit.php:26 ../../Zotlabs/Module/Filestorage.php:23
 #: ../../Zotlabs/Module/Filestorage.php:78
 #: ../../Zotlabs/Module/Filestorage.php:93
 #: ../../Zotlabs/Module/Filestorage.php:120
-#: ../../Zotlabs/Module/Settings.php:642 ../../Zotlabs/Module/Events.php:264
-#: ../../Zotlabs/Module/Webpages.php:95 ../../Zotlabs/Module/Group.php:13
-#: ../../Zotlabs/Module/Mail.php:121 ../../Zotlabs/Module/Block.php:26
-#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Connedit.php:398
+#: ../../Zotlabs/Module/Connedit.php:398 ../../Zotlabs/Module/Group.php:13
+#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Block.php:26
+#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Editpost.php:17
 #: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91
-#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Item.php:213
-#: ../../Zotlabs/Module/Item.php:221 ../../Zotlabs/Module/Item.php:1071
-#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116
-#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Chat.php:100
-#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Mitem.php:115
+#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Chat.php:100
+#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Events.php:264
+#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:121
+#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Manage.php:10
+#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Settings.php:642
 #: ../../Zotlabs/Module/New_channel.php:77
 #: ../../Zotlabs/Module/New_channel.php:104
 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137
@@ -346,19 +345,16 @@ msgstr ""
 #: ../../Zotlabs/Module/Layouts.php:89
 #: ../../Zotlabs/Module/Profile_photo.php:265
 #: ../../Zotlabs/Module/Profile_photo.php:278
-#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Rate.php:113
-#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Register.php:77
-#: ../../Zotlabs/Module/Regmod.php:21
-#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Menu.php:78
-#: ../../Zotlabs/Module/Setup.php:215 ../../Zotlabs/Module/Sharedwithme.php:11
-#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294
-#: ../../Zotlabs/Module/Thing.php:331 ../../Zotlabs/Module/Sources.php:74
-#: ../../Zotlabs/Module/Suggest.php:30 ../../Zotlabs/Module/Profiles.php:203
-#: ../../Zotlabs/Module/Profiles.php:601
-#: ../../Zotlabs/Module/Viewconnections.php:28
+#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77
+#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Network.php:15
+#: ../../Zotlabs/Module/Regmod.php:21 ../../Zotlabs/Module/Thing.php:274
+#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335
+#: ../../Zotlabs/Module/Service_limits.php:11
+#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Sharedwithme.php:11
+#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30
+#: ../../Zotlabs/Module/Api.php:12 ../../Zotlabs/Module/Viewconnections.php:28
 #: ../../Zotlabs/Module/Viewconnections.php:33
-#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13
-#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137
+#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Lib/Chatroom.php:137
 #: ../../include/items.php:3448 ../../include/photos.php:27
 #: ../../include/attach.php:142 ../../include/attach.php:190
 #: ../../include/attach.php:253 ../../include/attach.php:267
@@ -374,14 +370,14 @@ msgid "Not Found"
 msgstr ""
 
 #: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94
-#: ../../Zotlabs/Module/Display.php:118 ../../Zotlabs/Module/Help.php:97
-#: ../../Zotlabs/Module/Block.php:79
+#: ../../Zotlabs/Module/Help.php:97 ../../Zotlabs/Module/Block.php:79
+#: ../../Zotlabs/Module/Display.php:119
 msgid "Page not found."
 msgstr ""
 
 #: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10
-#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72
-#: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283
+#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Like.php:283
+#: ../../Zotlabs/Module/Group.php:72 ../../Zotlabs/Module/Import_items.php:114
 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62
 #: ../../include/items.php:384
 msgid "Permission denied"
@@ -399,14 +395,13 @@ msgid "Welcome %s. Remote authentication successful."
 msgstr ""
 
 #: ../../Zotlabs/Module/Achievements.php:15
-#: ../../Zotlabs/Module/Editblock.php:31
+#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Editblock.php:31
 #: ../../Zotlabs/Module/Editlayout.php:31
 #: ../../Zotlabs/Module/Editwebpage.php:32
-#: ../../Zotlabs/Module/Filestorage.php:59
-#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12
+#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12
 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33
 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17
-#: ../../include/channel.php:867
+#: ../../include/channel.php:859
 msgid "Requested profile is not available."
 msgstr ""
 
@@ -422,543 +417,670 @@ msgstr ""
 msgid "Online"
 msgstr ""
 
-#: ../../Zotlabs/Module/Network.php:94
-msgid "No such group"
+#: ../../Zotlabs/Module/Setup.php:179
+msgid "$Projectname Server - Setup"
 msgstr ""
 
-#: ../../Zotlabs/Module/Network.php:134
-msgid "No such channel"
+#: ../../Zotlabs/Module/Setup.php:183
+msgid "Could not connect to database."
 msgstr ""
 
-#: ../../Zotlabs/Module/Network.php:139
-msgid "forum"
+#: ../../Zotlabs/Module/Setup.php:187
+msgid ""
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
 msgstr ""
 
-#: ../../Zotlabs/Module/Network.php:151
-msgid "Search Results For:"
+#: ../../Zotlabs/Module/Setup.php:194
+msgid "Could not create table."
 msgstr ""
 
-#: ../../Zotlabs/Module/Network.php:215
-msgid "Privacy group is empty"
+#: ../../Zotlabs/Module/Setup.php:199
+msgid "Your site database has been installed."
 msgstr ""
 
-#: ../../Zotlabs/Module/Network.php:224
-msgid "Privacy group: "
+#: ../../Zotlabs/Module/Setup.php:203
+msgid ""
+"You may need to import the file \"install/schema_xxx.sql\" manually using a "
+"database client."
 msgstr ""
 
-#: ../../Zotlabs/Module/Network.php:250
-msgid "Invalid connection."
+#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266
+#: ../../Zotlabs/Module/Setup.php:722
+msgid "Please see the file \"install/INSTALL.txt\"."
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:44
-msgid "Invalid message"
+#: ../../Zotlabs/Module/Setup.php:263
+msgid "System check"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:76
-msgid "no results"
+#: ../../Zotlabs/Module/Setup.php:267 ../../Zotlabs/Module/Events.php:676
+#: ../../Zotlabs/Module/Events.php:685 ../../Zotlabs/Module/Photos.php:960
+#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340
+msgid "Next"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:91
-msgid "channel sync processed"
+#: ../../Zotlabs/Module/Setup.php:268
+msgid "Check again"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:95
-msgid "queued"
+#: ../../Zotlabs/Module/Setup.php:290
+msgid "Database connection"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:99
-msgid "posted"
+#: ../../Zotlabs/Module/Setup.php:291
+msgid ""
+"In order to install $Projectname we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:103
-msgid "accepted for delivery"
+#: ../../Zotlabs/Module/Setup.php:292
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:107
-msgid "updated"
+#: ../../Zotlabs/Module/Setup.php:293
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:110
-msgid "update ignored"
+#: ../../Zotlabs/Module/Setup.php:297
+msgid "Database Server Name"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:113
-msgid "permission denied"
+#: ../../Zotlabs/Module/Setup.php:297
+msgid "Default is 127.0.0.1"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:117
-msgid "recipient not found"
+#: ../../Zotlabs/Module/Setup.php:298
+msgid "Database Port"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:120
-msgid "mail recalled"
+#: ../../Zotlabs/Module/Setup.php:298
+msgid "Communication port number - use 0 for default"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:123
-msgid "duplicate mail received"
+#: ../../Zotlabs/Module/Setup.php:299
+msgid "Database Login Name"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:126
-msgid "mail delivered"
+#: ../../Zotlabs/Module/Setup.php:300
+msgid "Database Login Password"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:146
-#, php-format
-msgid "Delivery report for %1$s"
+#: ../../Zotlabs/Module/Setup.php:301
+msgid "Database Name"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:149
-msgid "Options"
+#: ../../Zotlabs/Module/Setup.php:302
+msgid "Database Type"
 msgstr ""
 
-#: ../../Zotlabs/Module/Dreport.php:150
-msgid "Redeliver"
+#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344
+msgid "Site administrator email address"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:82
-msgid "Page owner information could not be retrieved."
+#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741
-#: ../../Zotlabs/Module/Profile_photo.php:115
-#: ../../Zotlabs/Module/Profile_photo.php:212
-#: ../../Zotlabs/Module/Profile_photo.php:311
-#: ../../include/photo/photo_driver.php:718
-msgid "Profile Photos"
+#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346
+msgid "Website URL"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147
-msgid "Album not found."
+#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346
+msgid "Please use SSL (https) URL if available."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:130
-msgid "Delete Album"
+#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:151
-msgid ""
-"Multiple storage folders exist with this album name, but within different "
-"directories. Please remove the desired folder or folders using the Files "
-"manager"
+#: ../../Zotlabs/Module/Setup.php:312 ../../Zotlabs/Module/Setup.php:353
+#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Appman.php:126
+#: ../../Zotlabs/Module/Pdledit.php:66
+#: ../../Zotlabs/Module/Filestorage.php:165
+#: ../../Zotlabs/Module/Connedit.php:786 ../../Zotlabs/Module/Group.php:85
+#: ../../Zotlabs/Module/Import_items.php:122
+#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
+#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241
+#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Mail.php:370
+#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:679
+#: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098
+#: ../../Zotlabs/Module/Photos.php:1216 ../../Zotlabs/Module/Settings.php:660
+#: ../../Zotlabs/Module/Settings.php:773 ../../Zotlabs/Module/Settings.php:864
+#: ../../Zotlabs/Module/Settings.php:890 ../../Zotlabs/Module/Settings.php:913
+#: ../../Zotlabs/Module/Settings.php:1001
+#: ../../Zotlabs/Module/Settings.php:1187 ../../Zotlabs/Module/Admin.php:492
+#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771
+#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211
+#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648
+#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116
+#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107
+#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mitem.php:243
+#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Thing.php:320
+#: ../../Zotlabs/Module/Thing.php:370 ../../Zotlabs/Module/Rate.php:170
+#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149
+#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Xchan.php:15
+#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:22
+#: ../../include/widgets.php:763 ../../view/theme/redbasic/php/config.php:99
+msgid "Submit"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051
-msgid "Delete Photo"
+#: ../../Zotlabs/Module/Setup.php:333
+msgid "Site settings"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Directory.php:63
-#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Ratings.php:86
-#: ../../Zotlabs/Module/Search.php:17
-#: ../../Zotlabs/Module/Viewconnections.php:23
-msgid "Public access denied."
+#: ../../Zotlabs/Module/Setup.php:347
+msgid "Enable $Projectname advanced features?"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:531
-msgid "No photos selected"
+#: ../../Zotlabs/Module/Setup.php:347
+msgid ""
+"Some advanced features, while useful - may be best suited for technically "
+"proficient audiences"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:580
-msgid "Access to this item is restricted."
+#: ../../Zotlabs/Module/Setup.php:388
+msgid "PHP version 5.5 or greater is required."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:619
-#, php-format
-msgid "%1$.2f MB of %2$.2f MB photo storage used."
+#: ../../Zotlabs/Module/Setup.php:389
+msgid "PHP version"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:622
-#, php-format
-msgid "%1$.2f MB photo storage used."
+#: ../../Zotlabs/Module/Setup.php:404
+msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:658
-msgid "Upload Photos"
+#: ../../Zotlabs/Module/Setup.php:405
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:662
-msgid "Enter an album name"
+#: ../../Zotlabs/Module/Setup.php:409
+msgid "PHP executable path"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:663
-msgid "or select an existing album (doubleclick)"
+#: ../../Zotlabs/Module/Setup.php:409
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:664
-msgid "Create a status post for this upload"
+#: ../../Zotlabs/Module/Setup.php:414
+msgid "Command line PHP"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:664
-#: ../../Zotlabs/Module/Filestorage.php:156
-#: ../../Zotlabs/Module/Filestorage.php:164
-#: ../../Zotlabs/Module/Settings.php:651 ../../Zotlabs/Module/Events.php:458
-#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468
-#: ../../Zotlabs/Module/Connedit.php:411 ../../Zotlabs/Module/Connedit.php:693
-#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159
-#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233
-#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63
-#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
-#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Api.php:89
-#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
-#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105
-#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1711
-msgid "No"
+#: ../../Zotlabs/Module/Setup.php:423
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:664
-#: ../../Zotlabs/Module/Filestorage.php:156
-#: ../../Zotlabs/Module/Filestorage.php:164
-#: ../../Zotlabs/Module/Settings.php:651 ../../Zotlabs/Module/Events.php:458
-#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468
-#: ../../Zotlabs/Module/Connedit.php:411 ../../Zotlabs/Module/Mitem.php:158
-#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232
-#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Admin.php:461
-#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Menu.php:100
-#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Profiles.php:647
-#: ../../Zotlabs/Module/Api.php:88 ../../include/dir_fns.php:143
-#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145
-#: ../../view/theme/redbasic/php/config.php:105
-#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1711
-msgid "Yes"
+#: ../../Zotlabs/Module/Setup.php:424
+msgid "This is required for message delivery to work."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:665
-msgid "Caption (optional):"
+#: ../../Zotlabs/Module/Setup.php:427
+msgid "PHP register_argc_argv"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:666
-msgid "Description (optional):"
+#: ../../Zotlabs/Module/Setup.php:445
+#, php-format
+msgid ""
+"Your max allowed total upload size is set to %s. Maximum size of one file to "
+"upload is set to %s. You are allowed to upload up to %d files at once."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043
-#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Chat.php:235
-#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359
-#: ../../include/acl_selectors.php:281
-msgid "Permissions"
+#: ../../Zotlabs/Module/Setup.php:450
+msgid "You can adjust these settings in the servers php.ini."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050
-#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208
-#: ../../Zotlabs/Module/Appman.php:126 ../../Zotlabs/Module/Pdledit.php:66
-#: ../../Zotlabs/Module/Filestorage.php:161
-#: ../../Zotlabs/Module/Settings.php:660 ../../Zotlabs/Module/Settings.php:773
-#: ../../Zotlabs/Module/Settings.php:864 ../../Zotlabs/Module/Settings.php:890
-#: ../../Zotlabs/Module/Settings.php:913
-#: ../../Zotlabs/Module/Settings.php:1001
-#: ../../Zotlabs/Module/Settings.php:1187 ../../Zotlabs/Module/Events.php:474
-#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Mail.php:370
-#: ../../Zotlabs/Module/Connedit.php:786
-#: ../../Zotlabs/Module/Import_items.php:122
-#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
-#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Mood.php:139
-#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238
-#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492
-#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771
-#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211
-#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648
-#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116
-#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107
-#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Rate.php:170
-#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Setup.php:312
-#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316
-#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114
-#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Profiles.php:687
-#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:710
-#: ../../include/js_strings.php:22 ../../include/widgets.php:763
-#: ../../view/theme/redbasic/php/config.php:99
-msgid "Submit"
+#: ../../Zotlabs/Module/Setup.php:452
+msgid "PHP upload limits"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:693
-msgid "Album name could not be decoded"
+#: ../../Zotlabs/Module/Setup.php:475
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:741
-msgid "Contact Photos"
+#: ../../Zotlabs/Module/Setup.php:476
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:764
-msgid "Show Newest First"
+#: ../../Zotlabs/Module/Setup.php:479
+msgid "Generate encryption keys"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:766
-msgid "Show Oldest First"
+#: ../../Zotlabs/Module/Setup.php:491
+msgid "libCurl PHP module"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329
-#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607
-msgid "View Photo"
+#: ../../Zotlabs/Module/Setup.php:492
+msgid "GD graphics PHP module"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:821
-#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624
-msgid "Edit Album"
+#: ../../Zotlabs/Module/Setup.php:493
+msgid "OpenSSL PHP module"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:868
-msgid "Permission denied. Access to this item may be restricted."
+#: ../../Zotlabs/Module/Setup.php:494
+msgid "mysqli or postgres PHP module"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:870
-msgid "Photo not available"
+#: ../../Zotlabs/Module/Setup.php:495
+msgid "mb_string PHP module"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:928
-msgid "Use as profile photo"
+#: ../../Zotlabs/Module/Setup.php:496
+msgid "xml PHP module"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:929
-msgid "Use as cover photo"
+#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502
+msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:936
-msgid "Private Photo"
+#: ../../Zotlabs/Module/Setup.php:500
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:947 ../../Zotlabs/Module/Events.php:665
-#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:332
-#: ../../Zotlabs/Module/Cal.php:339
-msgid "Previous"
+#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509
+msgid "proc_open"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:951
-msgid "View Full Size"
+#: ../../Zotlabs/Module/Setup.php:506
+msgid ""
+"Error: proc_open is required but is either not installed or has been "
+"disabled in php.ini"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Events.php:666
-#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Cal.php:333
-#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Setup.php:267
-msgid "Next"
+#: ../../Zotlabs/Module/Setup.php:514
+msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437
-#: ../../Zotlabs/Module/Tagrm.php:137
-msgid "Remove"
+#: ../../Zotlabs/Module/Setup.php:518
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1030
-msgid "Edit photo"
+#: ../../Zotlabs/Module/Setup.php:522
+msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1032
-msgid "Rotate CW (right)"
+#: ../../Zotlabs/Module/Setup.php:526
+msgid ""
+"Error: mysqli or postgres PHP module required but neither are installed."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1033
-msgid "Rotate CCW (left)"
+#: ../../Zotlabs/Module/Setup.php:530
+msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1036
-msgid "Enter a new album name"
+#: ../../Zotlabs/Module/Setup.php:534
+msgid "Error: xml PHP module required for DAV but not installed."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1037
-msgid "or select an existing one (doubleclick)"
+#: ../../Zotlabs/Module/Setup.php:552
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\" "
+"in the top folder of your web server and it is unable to do so."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1040
-msgid "Caption"
+#: ../../Zotlabs/Module/Setup.php:553
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1042
-msgid "Add a Tag"
+#: ../../Zotlabs/Module/Setup.php:554
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Red top folder."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1046
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
+#: ../../Zotlabs/Module/Setup.php:555
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"install/INSTALL.txt\" for instructions."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1049
-msgid "Flag as adult in album view"
+#: ../../Zotlabs/Module/Setup.php:558
+msgid ".htconfig.php is writable"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261
-msgid "I like this (toggle)"
+#: ../../Zotlabs/Module/Setup.php:572
+msgid ""
+"Red uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262
-msgid "I don't like this (toggle)"
+#: ../../Zotlabs/Module/Setup.php:573
+#, php-format
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory %s under the top level web folder."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Module/Webpages.php:217
-#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193
-#: ../../include/conversation.php:1219
-msgid "Share"
+#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397
-#: ../../include/conversation.php:743
-msgid "Please wait"
+#: ../../Zotlabs/Module/Setup.php:575
+#, php-format
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"%s only--not the template files (.tpl) that it contains."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205
-#: ../../Zotlabs/Lib/ThreadItem.php:707
-msgid "This is you"
+#: ../../Zotlabs/Module/Setup.php:578
+#, php-format
+msgid "%s is writable"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207
-#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6
-msgid "Comment"
+#: ../../Zotlabs/Module/Setup.php:594
+msgid ""
+"This software uses the store directory to save uploaded files. The web "
+"server needs to have write access to the store directory under the Red top "
+"level folder"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Events.php:469
-#: ../../Zotlabs/Module/Webpages.php:223 ../../Zotlabs/Lib/ThreadItem.php:719
-#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198
-msgid "Preview"
+#: ../../Zotlabs/Module/Setup.php:598
+msgid "store is writable"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577
-msgctxt "title"
-msgid "Likes"
+#: ../../Zotlabs/Module/Setup.php:631
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access "
+"to this site."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577
-msgctxt "title"
-msgid "Dislikes"
+#: ../../Zotlabs/Module/Setup.php:632
+msgid ""
+"If you have https access to your website or allow connections to TCP port "
+"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
+"NOT use self-signed certificates!"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
-msgctxt "title"
-msgid "Agree"
+#: ../../Zotlabs/Module/Setup.php:633
+msgid ""
+"This restriction is incorporated because public posts from you may for "
+"example contain references to images on your own hub."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
-msgctxt "title"
-msgid "Disagree"
+#: ../../Zotlabs/Module/Setup.php:634
+msgid ""
+"If your certificate is not recognized, members of other sites (who may "
+"themselves have valid certificates) will get a warning message on their own "
+"site complaining about security issues."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
-msgctxt "title"
-msgid "Abstain"
+#: ../../Zotlabs/Module/Setup.php:635
+msgid ""
+"This can cause usability issues elsewhere (not just on your own site) so we "
+"must insist on this requirement."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
-msgctxt "title"
-msgid "Attending"
+#: ../../Zotlabs/Module/Setup.php:636
+msgid ""
+"Providers are available that issue free certificates which are browser-valid."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
-msgctxt "title"
-msgid "Not attending"
+#: ../../Zotlabs/Module/Setup.php:638
+msgid ""
+"If you are confident that the certificate is valid and signed by a trusted "
+"authority, check to see if you have failed to install an intermediate cert. "
+"These are not normally required by browsers, but are required for server-to-"
+"server communications."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
-msgctxt "title"
-msgid "Might attend"
+#: ../../Zotlabs/Module/Setup.php:641
+msgid "SSL certificate validation"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136
-#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193
-#: ../../include/conversation.php:1738
-msgid "View all"
+#: ../../Zotlabs/Module/Setup.php:647
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+"Test: "
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185
-#: ../../include/conversation.php:1762 ../../include/taxonomy.php:403
-#: ../../include/channel.php:1189
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190
-#: ../../include/conversation.php:1765
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../Zotlabs/Module/Photos.php:1233
-msgid "Photo Tools"
+#: ../../Zotlabs/Module/Setup.php:650
+msgid "Url rewrite is working"
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1242
-msgid "In This Photo:"
+#: ../../Zotlabs/Module/Setup.php:659
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1247
-msgid "Map"
+#: ../../Zotlabs/Module/Setup.php:683
+msgid "Errors encountered creating database tables."
 msgstr ""
 
-#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386
-msgctxt "noun"
-msgid "Likes"
+#: ../../Zotlabs/Module/Setup.php:720
+msgid "

What next

" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" +#: ../../Zotlabs/Module/Setup.php:721 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" msgstr "" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" msgstr "" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" msgstr "" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" msgstr "" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1214 -msgid "Age:" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" msgstr "" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/bb2diaspora.php:507 -#: ../../include/channel.php:1057 -msgid "Location:" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" msgstr "" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" msgstr "" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1230 -msgid "Hometown:" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" msgstr "" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1238 -msgid "About:" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" msgstr "" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/connections.php:78 -#: ../../include/conversation.php:959 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/channel.php:1042 -msgid "Connect" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" msgstr "" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" msgstr "" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:108 ../../include/conversation.php:1705 +msgid "Webpages" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:218 ../../Zotlabs/Module/Photos.php:1078 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../include/conversation.php:1220 +msgid "Share" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:223 ../../Zotlabs/Module/Events.php:680 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../include/page_widgets.php:42 +msgid "View" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:224 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:720 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1199 +msgid "Preview" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:227 +msgid "Page Title" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:228 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:229 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:258 +msgid "Invalid file type." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:270 +msgid "Error opening zip file" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:281 +msgid "Invalid folder path." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "No webpage elements detected." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:382 +msgid "Import complete." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/channel.php:1049 +#: ../../include/bb2diaspora.php:507 +msgid "Location:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 +#: ../../include/conversation.php:960 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +msgid "Connect" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " msgstr "" #: ../../Zotlabs/Module/Directory.php:332 @@ -1025,5424 +1147,5314 @@ msgstr "" msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" msgstr "" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" msgstr "" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" msgstr "" -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" msgstr "" -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Settings.php:661 ../../Zotlabs/Module/Settings.php:687 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" msgstr "" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" msgstr "" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" msgstr "" -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Events.php:467 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." msgstr "" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" msgstr "" -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 -msgid "Item not found." +#: ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Connedit.php:411 ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Settings.php:651 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Api.php:85 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1717 +msgid "No" msgstr "" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" +#: ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Connedit.php:411 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Settings.php:651 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Api.php:84 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1717 +msgid "Yes" msgstr "" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" msgstr "" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 -msgid "New" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" msgstr "" -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:632 ../../include/widgets.php:497 -msgid "All" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" msgstr "" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" msgstr "" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" msgstr "" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" msgstr "" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1546 +#: ../../include/widgets.php:105 +msgid "Personal" msgstr "" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" msgstr "" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" msgstr "" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" msgstr "" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" msgstr "" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" msgstr "" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" msgstr "" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" msgstr "" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" msgstr "" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" msgstr "" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." msgstr "" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" msgstr "" -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" msgstr "" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" msgstr "" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Connedit.php:586 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" msgstr "" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" msgstr "" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:188 ../../include/text.php:855 -msgid "Connections" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" msgstr "" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:274 -#: ../../include/nav.php:167 ../../include/text.php:925 -#: ../../include/text.php:937 -msgid "Search" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" msgstr "" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" msgstr "" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 -msgid "female" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 -#, php-format -msgid "%1$s updated her %2$s" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 -msgid "male" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 -#, php-format -msgid "%1$s updated his %2$s" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 -#, php-format -msgid "%1$s updated their %2$s" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1717 -msgid "cover photo" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Settings.php:1138 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "or" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:90 +#: ../../include/channel.php:959 +msgid "Edit Profiles" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" +#: ../../Zotlabs/Module/Profiles.php:778 ../../Zotlabs/Module/Chat.php:255 +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create New" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../Zotlabs/Module/Rpost.php:135 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" msgstr "" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Chat.php:25 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" +#: ../../Zotlabs/Module/Item.php:179 +msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" +#: ../../Zotlabs/Module/Item.php:432 +msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Item.php:472 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" +#: ../../Zotlabs/Module/Item.php:856 +msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" +#: ../../Zotlabs/Module/Item.php:989 +msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" +#: ../../Zotlabs/Module/Item.php:1242 +msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" +#: ../../Zotlabs/Module/Item.php:1249 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 -#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1146 -msgid "Insert web link" +#: ../../Zotlabs/Module/Item.php:1256 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:94 ../../include/conversation.php:1652 +msgid "Photos" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Settings.php:661 ../../Zotlabs/Module/Settings.php:687 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Wiki.php:171 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1236 +#: ../../include/conversation.php:1279 +msgid "Cancel" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:168 -msgid "Edit Webpage" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Chat.php:25 +#: ../../Zotlabs/Module/Wiki.php:20 +msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" msgstr "" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" msgstr "" -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" msgstr "" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1555 +msgid "New" msgstr "" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:461 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:632 ../../include/widgets.php:497 +msgid "All" msgstr "" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" msgstr "" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" msgstr "" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" msgstr "" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" msgstr "" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" msgstr "" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" msgstr "" -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" msgstr "" -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" msgstr "" -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 -msgid "Help" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" msgstr "" -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 +msgid "Status" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1037 +msgid "Approve" msgstr "" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" msgstr "" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:855 ../../include/nav.php:190 +msgid "Connections" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:274 +#: ../../include/text.php:925 ../../include/text.php:937 +#: ../../include/nav.php:169 +msgid "Search" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Include all files and sub folders" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Copy/paste this code to attach file to a post" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this URL to link file from a web page" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Share this file" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +msgid "female" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Notify your contacts about this file" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 +#, php-format +msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +msgid "male" msgstr "" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 +#, php-format +msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:686 -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#, php-format +msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1710 +msgid "cover photo" msgstr "" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." msgstr "" -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:290 -msgid "Not valid email." +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:293 -msgid "Protected email address. Cannot change to that email." +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" msgstr "" -#: ../../Zotlabs/Module/Settings.php:302 -msgid "System failure storing new email. Please try again." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "or" msgstr "" -#: ../../Zotlabs/Module/Settings.php:319 -msgid "Password verification failed." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" msgstr "" -#: ../../Zotlabs/Module/Settings.php:326 -msgid "Passwords do not match. Password unchanged." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" msgstr "" -#: ../../Zotlabs/Module/Settings.php:330 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" msgstr "" -#: ../../Zotlabs/Module/Settings.php:344 -msgid "Password changed." +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../Zotlabs/Module/Settings.php:346 -msgid "Password update failed. Please try again." +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" msgstr "" -#: ../../Zotlabs/Module/Settings.php:407 ../../Zotlabs/Module/Settings.php:411 -#: ../../Zotlabs/Module/Settings.php:412 ../../Zotlabs/Module/Settings.php:415 -#: ../../Zotlabs/Module/Settings.php:426 ../../Zotlabs/Module/Connedit.php:630 -#: ../../include/selectors.php:123 ../../include/widgets.php:495 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 -msgid "Friends" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" msgstr "" -#: ../../Zotlabs/Module/Settings.php:595 -msgid "Settings updated." +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" msgstr "" -#: ../../Zotlabs/Module/Settings.php:659 ../../Zotlabs/Module/Settings.php:685 -#: ../../Zotlabs/Module/Settings.php:721 -msgid "Add application" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" msgstr "" -#: ../../Zotlabs/Module/Settings.php:662 -msgid "Name of application" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" msgstr "" -#: ../../Zotlabs/Module/Settings.php:663 ../../Zotlabs/Module/Settings.php:689 -msgid "Consumer Key" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:663 ../../Zotlabs/Module/Settings.php:664 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Settings.php:690 -msgid "Consumer Secret" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" msgstr "" -#: ../../Zotlabs/Module/Settings.php:665 ../../Zotlabs/Module/Settings.php:691 -msgid "Redirect" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." msgstr "" -#: ../../Zotlabs/Module/Settings.php:665 +#: ../../Zotlabs/Module/Like.php:25 msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -#: ../../Zotlabs/Module/Settings.php:666 ../../Zotlabs/Module/Settings.php:692 -msgid "Icon url" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Settings.php:666 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" msgstr "" -#: ../../Zotlabs/Module/Settings.php:677 -msgid "Application not found." +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Settings.php:720 -msgid "Connected Apps" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." msgstr "" -#: ../../Zotlabs/Module/Settings.php:724 -msgid "Client key starts with" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:725 -msgid "No name" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 +#: ../../include/conversation.php:120 +msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Settings.php:726 -msgid "Remove authorization" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1951 ../../include/conversation.php:148 +msgid "status" msgstr "" -#: ../../Zotlabs/Module/Settings.php:739 -msgid "No feature settings configured" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 +#: ../../include/event.php:951 ../../include/conversation.php:123 +msgid "event" msgstr "" -#: ../../Zotlabs/Module/Settings.php:746 -msgid "Feature/Addon Settings" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:769 -msgid "Account Settings" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:770 -msgid "Current Password" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:771 -msgid "Enter New Password" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:772 -msgid "Confirm New Password" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:772 -msgid "Leave password fields blank unless changing" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:774 -#: ../../Zotlabs/Module/Settings.php:1194 -msgid "Email Address:" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:775 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:776 -msgid "Remove this account including all its channels" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:810 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." msgstr "" -#: ../../Zotlabs/Module/Settings.php:812 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" msgstr "" -#: ../../Zotlabs/Module/Settings.php:847 ../../include/widgets.php:614 -msgid "Guest Access Tokens" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" msgstr "" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "Login Name" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" msgstr "" -#: ../../Zotlabs/Module/Settings.php:855 -msgid "Login Password" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:856 -msgid "Expires (yyyy-mm-dd)" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Chat.php:207 +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../include/conversation.php:1147 +msgid "Insert web link" msgstr "" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Connedit.php:789 -msgid "Their Settings" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1244 +msgid "Title (optional)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:858 ../../Zotlabs/Module/Connedit.php:790 -msgid "My Settings" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" msgstr "" -#: ../../Zotlabs/Module/Settings.php:860 ../../Zotlabs/Module/Connedit.php:785 -msgid "inherited" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:862 ../../Zotlabs/Module/Connedit.php:792 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:863 ../../Zotlabs/Module/Connedit.php:793 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" msgstr "" -#: ../../Zotlabs/Module/Settings.php:881 ../../Zotlabs/Module/Admin.php:677 -#: ../../Zotlabs/Module/Admin.php:678 -msgid "Off" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" msgstr "" -#: ../../Zotlabs/Module/Settings.php:881 ../../Zotlabs/Module/Admin.php:677 -#: ../../Zotlabs/Module/Admin.php:678 -msgid "On" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" msgstr "" -#: ../../Zotlabs/Module/Settings.php:888 -msgid "Additional Features" +#: ../../Zotlabs/Module/Acl.php:312 +msgid "network" msgstr "" -#: ../../Zotlabs/Module/Settings.php:912 -msgid "Connector Settings" +#: ../../Zotlabs/Module/Acl.php:322 +msgid "RSS" msgstr "" -#: ../../Zotlabs/Module/Settings.php:951 -msgid "No special theme for mobile devices" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:954 -#, php-format -msgid "%s - (Experimental)" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." msgstr "" -#: ../../Zotlabs/Module/Settings.php:957 ../../Zotlabs/Module/Admin.php:410 -msgid "mobile" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" msgstr "" -#: ../../Zotlabs/Module/Settings.php:996 -msgid "Display Settings" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" msgstr "" -#: ../../Zotlabs/Module/Settings.php:997 -msgid "Theme Settings" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" msgstr "" -#: ../../Zotlabs/Module/Settings.php:998 -msgid "Custom Theme Settings" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" msgstr "" -#: ../../Zotlabs/Module/Settings.php:999 -msgid "Content Settings" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1005 -msgid "Display Theme:" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1006 -msgid "Mobile Theme:" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1007 -msgid "Preload images before rendering the page" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1007 -msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1008 -msgid "Enable user zoom on mobile devices" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1009 -msgid "Update browser every xx seconds" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1009 -msgid "Minimum of 10 seconds, no maximum" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1010 -msgid "Maximum number of conversations to load at any time:" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1010 -msgid "Maximum of 100 items" +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1011 -msgid "Show emoticons (smilies) as images" +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:163 +msgid "Help" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1012 -msgid "Link post titles to source" +#: ../../Zotlabs/Module/Help.php:120 +msgid "$Projectname Documentation" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1013 -msgid "System Page Layout Editor - (advanced)" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1016 -msgid "Use blog/list mode on channel page" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1016 -#: ../../Zotlabs/Module/Settings.php:1017 -msgid "(comments displayed separately)" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1017 -msgid "Use blog/list mode on grid page" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1018 -msgid "Channel page max height of content (in pixels)" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1018 -#: ../../Zotlabs/Module/Settings.php:1019 -msgid "click to expand content exceeding this height" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1019 -msgid "Grid page max height of content (in pixels)" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Nobody except yourself" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1049 -msgid "Only those you specifically allow" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Approved connections" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Any connections" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1052 -msgid "Anybody on this website" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Anybody in this network" +#: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Display.php:40 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 +msgid "Item not found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1054 -msgid "Anybody authenticated" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Anybody on the internet" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1129 -msgid "Publish your default profile in the network directory" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1134 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Chat.php:234 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../include/acl_selectors.php:281 +msgid "Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1143 -msgid "Your channel address is" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Channel Settings" +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1192 -msgid "Basic Settings" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1193 ../../include/channel.php:1171 -msgid "Full Name:" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1195 -msgid "Your Timezone:" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Default Post Location:" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Geographical location to display on your posts" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1197 -msgid "Use Browser Location:" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Adult Content" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1201 -msgid "Security and Privacy Settings" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1204 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1206 -msgid "Hide my online presence" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1206 -msgid "Prevents displaying in your profile that you are online" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1208 -msgid "Simple Privacy Settings:" +#: ../../Zotlabs/Module/Connedit.php:443 +msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1209 -msgid "" -"Very Public - extremely permissive (should be used with caution)" +#: ../../Zotlabs/Module/Connedit.php:463 +msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1210 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +#: ../../Zotlabs/Module/Connedit.php:478 ../../Zotlabs/Module/Connedit.php:487 +#: ../../Zotlabs/Module/Connedit.php:496 ../../Zotlabs/Module/Connedit.php:505 +#: ../../Zotlabs/Module/Connedit.php:518 +msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1211 -msgid "Private - default private, never open or public" +#: ../../Zotlabs/Module/Connedit.php:541 +msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1212 -msgid "Blocked - default blocked to/from everybody" +#: ../../Zotlabs/Module/Connedit.php:557 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:88 ../../include/conversation.php:958 +msgid "View Profile" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "Allow others to tag your posts" +#: ../../Zotlabs/Module/Connedit.php:560 +#, php-format +msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "Advanced Privacy Settings" +#: ../../Zotlabs/Module/Connedit.php:567 +msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "Expire other channel content after this many days" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "Recent Activity" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "0 or blank to use the website limit." +#: ../../Zotlabs/Module/Connedit.php:574 +msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 -#, php-format -msgid "This website expires after %d days." +#: ../../Zotlabs/Module/Connedit.php:578 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "This website does not expire imported content." +#: ../../Zotlabs/Module/Connedit.php:578 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "The website limit takes precedence if lower than your limit." +#: ../../Zotlabs/Module/Connedit.php:581 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1219 -msgid "Maximum Friend Requests/Day:" +#: ../../Zotlabs/Module/Connedit.php:582 +msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1219 -msgid "May reduce spam activity" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1220 -msgid "Default Post and Publish Permissions" +#: ../../Zotlabs/Module/Connedit.php:589 +msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1221 ../../Zotlabs/Module/Mitem.php:154 -#: ../../Zotlabs/Module/Mitem.php:227 -msgid "(click to open/close)" +#: ../../Zotlabs/Module/Connedit.php:590 +msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1222 -msgid "Use my default audience setting for the type of object published" +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1225 -msgid "Channel permissions category:" +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1231 -msgid "Maximum private messages per day from unknown people:" +#: ../../Zotlabs/Module/Connedit.php:597 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1231 -msgid "Useful to reduce spamming" +#: ../../Zotlabs/Module/Connedit.php:598 +msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1234 -msgid "Notification Settings" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1235 -msgid "By default post a status message when:" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1236 -msgid "accepting a friend request" +#: ../../Zotlabs/Module/Connedit.php:605 +msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1237 -msgid "joining a forum/community" +#: ../../Zotlabs/Module/Connedit.php:606 +msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "making an interesting profile change" +#: ../../Zotlabs/Module/Connedit.php:613 +msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1239 -msgid "Send a notification email when:" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:493 +msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1240 -msgid "You receive a connection request" +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:494 +msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "Your connections are confirmed" +#: ../../Zotlabs/Module/Connedit.php:630 ../../Zotlabs/Module/Settings.php:407 +#: ../../Zotlabs/Module/Settings.php:411 ../../Zotlabs/Module/Settings.php:412 +#: ../../Zotlabs/Module/Settings.php:415 ../../Zotlabs/Module/Settings.php:426 +#: ../../include/selectors.php:123 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/widgets.php:495 +msgid "Friends" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1242 -msgid "Someone writes on your profile wall" +#: ../../Zotlabs/Module/Connedit.php:631 ../../include/widgets.php:496 +msgid "Acquaintances" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1243 -msgid "Someone writes a followup comment" +#: ../../Zotlabs/Module/Connedit.php:693 +msgid "Approve this connection" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1244 -msgid "You receive a private message" +#: ../../Zotlabs/Module/Connedit.php:693 +msgid "Accept connection to allow communication" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1245 -msgid "You receive a friend suggestion" +#: ../../Zotlabs/Module/Connedit.php:698 +msgid "Set Affinity" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1246 -msgid "You are tagged in a post" +#: ../../Zotlabs/Module/Connedit.php:701 +msgid "Set Profile" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1247 -msgid "You are poked/prodded/etc. in a post" +#: ../../Zotlabs/Module/Connedit.php:704 +msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1250 -msgid "Show visual notifications including:" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "none" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1252 -msgid "Unseen grid activity" +#: ../../Zotlabs/Module/Connedit.php:757 ../../include/widgets.php:623 +msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1253 -msgid "Unseen channel activity" +#: ../../Zotlabs/Module/Connedit.php:757 ../../include/items.php:3935 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1254 -msgid "Unseen private messages" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1254 -#: ../../Zotlabs/Module/Settings.php:1259 -#: ../../Zotlabs/Module/Settings.php:1260 -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Recommended" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1255 -msgid "Upcoming events" +#: ../../Zotlabs/Module/Connedit.php:760 +msgid "This connection's primary address is" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "Events today" +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1257 -msgid "Upcoming birthdays" +#: ../../Zotlabs/Module/Connedit.php:765 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1257 -msgid "Not available in all themes" +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1258 -msgid "System (personal) notifications" +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1259 -msgid "System info messages" +#: ../../Zotlabs/Module/Connedit.php:769 ../../Zotlabs/Module/Rate.php:159 +#: ../../include/js_strings.php:20 +msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "System critical alerts" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "Slide to adjust your rating" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "New connections" +#: ../../Zotlabs/Module/Connedit.php:771 ../../Zotlabs/Module/Connedit.php:776 +msgid "Optionally explain your rating" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "System Registrations" +#: ../../Zotlabs/Module/Connedit.php:773 +msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1263 +#: ../../Zotlabs/Module/Connedit.php:774 +msgid "Only import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:774 ../../Zotlabs/Module/Connedit.php:775 msgid "" -"Also show new wall posts, private messages and connections under Notices" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1265 -msgid "Notify me of events this many days in advance" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1265 -msgid "Must be greater than 0" +#: ../../Zotlabs/Module/Connedit.php:777 +msgid "This information is public!" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1267 -msgid "Advanced Account/Page Type Settings" +#: ../../Zotlabs/Module/Connedit.php:782 +msgid "Connection Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1268 -msgid "Change the behaviour of this account for special situations" +#: ../../Zotlabs/Module/Connedit.php:785 ../../Zotlabs/Module/Settings.php:860 +msgid "inherited" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1271 +#: ../../Zotlabs/Module/Connedit.php:787 +#, php-format msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1272 -msgid "Miscellaneous Settings" +#: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Settings.php:857 +msgid "Their Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1273 -msgid "Default photo upload folder" +#: ../../Zotlabs/Module/Connedit.php:790 ../../Zotlabs/Module/Settings.php:858 +msgid "My Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1273 -#: ../../Zotlabs/Module/Settings.php:1274 -msgid "%Y - current year, %m - current month" +#: ../../Zotlabs/Module/Connedit.php:792 ../../Zotlabs/Module/Settings.php:862 +msgid "Individual Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1274 -msgid "Default file upload folder" +#: ../../Zotlabs/Module/Connedit.php:793 ../../Zotlabs/Module/Settings.php:863 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can not change those settings here." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1276 -msgid "Personal menu to display in your channel pages" +#: ../../Zotlabs/Module/Connedit.php:794 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1277 ../../Zotlabs/Module/Removeme.php:64 -msgid "Remove Channel" +#: ../../Zotlabs/Module/Connedit.php:795 +msgid "Last update:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1278 -msgid "Remove this channel." +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1279 -msgid "Firefox Share $Projectname provider" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Start calendar week on monday" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3902 +msgid "Privacy group not found." msgstr "" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." msgstr "" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." msgstr "" -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " msgstr "" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" msgstr "" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." msgstr "" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." msgstr "" -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:951 -#: ../../include/conversation.php:123 ../../include/text.php:1924 -msgid "event" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" msgstr "" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" msgstr "" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" msgstr "" -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." msgstr "" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." msgstr "" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" msgstr "" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" msgstr "" -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" msgstr "" -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" msgstr "" -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 +msgid "Menus" msgstr "" -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" msgstr "" -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../include/js_strings.php:25 -msgid "Location" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" msgstr "" -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" msgstr "" -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" msgstr "" -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" msgstr "" -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." msgstr "" -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" msgstr "" -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" msgstr "" -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" msgstr "" -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" msgstr "" -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Webpages.php:222 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../include/page_widgets.php:42 -msgid "View" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" msgstr "" -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." msgstr "" -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" msgstr "" -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" +#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 +msgid "Nothing to import." msgstr "" -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" +#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" msgstr "" -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" +#: ../../Zotlabs/Module/Import_items.php:72 +#: ../../Zotlabs/Module/Import.php:101 +msgid "Imported file is empty." msgstr "" -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" +#: ../../Zotlabs/Module/Import_items.php:88 +#: ../../Zotlabs/Module/Import.php:123 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import Webpage Elements" +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:54 -msgid "Import selected" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:213 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "Use this form to import existing posts and content from an export file." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:224 ../../include/page_widgets.php:44 -msgid "Actions" +#: ../../Zotlabs/Module/Import_items.php:121 +#: ../../Zotlabs/Module/Import.php:549 +msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:45 -msgid "Page Link" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:226 -msgid "Page Title" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:227 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../include/page_widgets.php:47 -msgid "Created" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:228 ../../Zotlabs/Module/Blocks.php:158 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../include/page_widgets.php:48 -msgid "Edited" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:257 -msgid "Invalid file type." +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:269 -msgid "Error opening zip file" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid folder path." +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:307 -msgid "No webpage elements detected." +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:381 -msgid "Import complete." +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" msgstr "" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." msgstr "" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" msgstr "" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 -msgid "Privacy group not found." +#: ../../Zotlabs/Module/Invite.php:139 +msgid "1. Register at any $Projectname location (they are all inter-connected)" msgstr "" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." msgstr "" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" msgstr "" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" msgstr "" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." msgstr "" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." msgstr "" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary " +"location." msgstr "" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" msgstr "" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." msgstr "" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" msgstr "" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" msgstr "" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" msgstr "" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." msgstr "" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." msgstr "" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." msgstr "" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" msgstr "" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" msgstr "" -#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1181 -msgid "Please enter a link URL:" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" msgstr "" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" msgstr "" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" msgstr "" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" msgstr "" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 +#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1182 +msgid "Please enter a link URL:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 -msgid "Your message:" +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 +#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:723 +#: ../../include/conversation.php:1276 +msgid "Encrypt text" msgstr "" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." msgstr "" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" msgstr "" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" msgstr "" -#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1271 -msgid "Encrypt text" +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" msgstr "" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" msgstr "" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" msgstr "" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" msgstr "" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." msgstr "" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." msgstr "" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." msgstr "" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:443 -msgid "Could not access address book record." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:463 -msgid "Refresh failed - channel is currently unavailable." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:478 ../../Zotlabs/Module/Connedit.php:487 -#: ../../Zotlabs/Module/Connedit.php:496 ../../Zotlabs/Module/Connedit.php:505 -#: ../../Zotlabs/Module/Connedit.php:518 -msgid "Unable to set address book parameters." +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:541 -msgid "Connection has been removed." +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:557 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 -msgid "View Profile" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:560 -#, php-format -msgid "View %s's profile" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Refresh Permissions" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:567 -msgid "Fetch updated permissions" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "Recent Activity" +#: ../../Zotlabs/Module/Events.php:463 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "View recent posts and comments" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Block (or Unblock) all communications with this connection" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1248 +msgid "Permission settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is blocked!" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unignore" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:589 -msgid "Ignore (or Unignore) all inbound communications from this connection" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "This connection is ignored!" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Unarchive" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1716 +msgid "Link to Source" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Archive" +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:597 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:598 -msgid "This connection is archived!" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Unhide" +#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 +#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 +msgid "Previous" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:605 -msgid "Hide or Unhide this connection from your other connections" +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:606 -msgid "This connection is hidden!" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:613 -msgid "Delete this connection" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:493 -msgid "Me" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:494 -msgid "Family" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:631 ../../include/widgets.php:496 -msgid "Acquaintances" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:693 -msgid "Approve this connection" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:693 -msgid "Accept connection to allow communication" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "Set Affinity" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:701 -msgid "Set Profile" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:704 -msgid "Set Affinity & Profile" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "none" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:757 ../../include/widgets.php:623 -msgid "Connection Default Permissions" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:757 ../../include/items.php:3935 -#, php-format -msgid "Connection: %s" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "Apply these permissions automatically" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "Connection requests will be approved without your interaction" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:760 -msgid "This connection's primary address is" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Available locations:" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:765 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1232 +msgid "Attach file" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Connection Tools" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Slide to adjust your degree of friendship" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1271 +msgid "Set expiration date" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:769 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "Slide to adjust your rating" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:771 ../../Zotlabs/Module/Connedit.php:776 -msgid "Optionally explain your rating" +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:773 -msgid "Custom Filter" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:774 -msgid "Only import posts with this text" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:774 ../../Zotlabs/Module/Connedit.php:775 +#: ../../Zotlabs/Module/Mail.php:355 msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Do not import posts with this text" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:777 -msgid "This information is public!" +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:782 -msgid "Connection Pending Approval" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 #, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +msgid "Site Member (%s)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:794 +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:67 msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:795 -msgid "Last update:" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1721 +msgid "Password Reset" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:72 -#: ../../Zotlabs/Module/Import.php:101 -msgid "Imported file is empty." +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:123 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "Use this form to import existing posts and content from an export file." +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:549 -msgid "File to Upload" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" msgstr "" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" msgstr "" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" msgstr "" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../Zotlabs/Module/Invite.php:83 +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:210 +msgid "Channel Manager" msgstr "" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" msgstr "" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "1. Register at any $Projectname location (they are all inter-connected)" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" msgstr "" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" msgstr "" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" msgstr "" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" msgstr "" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" msgstr "" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." msgstr "" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary " -"location." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" msgstr "" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" msgstr "" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" msgstr "" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1224 -#: ../../Zotlabs/Module/Profiles.php:470 -msgid "Address" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" msgstr "" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" msgstr "" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Locs.php:124 +#: ../../Zotlabs/Module/Photos.php:151 msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" msgstr "" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" msgstr "" -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" msgstr "" -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Album name could not be decoded" msgstr "" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../Zotlabs/Module/Photos.php:745 +msgid "Contact Photos" msgstr "" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." +#: ../../Zotlabs/Module/Photos.php:770 +msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." +#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." +#: ../../Zotlabs/Module/Photos.php:825 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Import.php:548 -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." +#: ../../Zotlabs/Module/Photos.php:874 +msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" +#: ../../Zotlabs/Module/Photos.php:932 +msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" +#: ../../Zotlabs/Module/Photos.php:933 +msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" +#: ../../Zotlabs/Module/Photos.php:955 +msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Import.php:554 -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." +#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" msgstr "" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available memory" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CW (right)" msgstr "" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "Rotate CCW (left)" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1715 -msgid "Password Reset" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../include/conversation.php:743 +msgid "Please wait" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:708 +msgid "This is you" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 +msgid "Comment" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1743 +msgid "View all" msgstr "" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1767 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1770 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" msgstr "" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" msgstr "" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" msgstr "" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 -msgid "photo" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../include/acl_selectors.php:283 +msgid "Close" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 -msgid "status" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" msgstr "" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:64 +msgid "Name is required" msgstr "" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:68 +msgid "Key and Secret are required" msgstr "" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:686 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" msgstr "" -#: ../../Zotlabs/Module/Like.php:427 +#: ../../Zotlabs/Module/Settings.php:138 #, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +msgid "This channel is limited to %d tokens" msgstr "" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." msgstr "" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:184 +msgid "Token saved." msgstr "" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:290 +msgid "Not valid email." msgstr "" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." +#: ../../Zotlabs/Module/Settings.php:293 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." +#: ../../Zotlabs/Module/Settings.php:302 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." +#: ../../Zotlabs/Module/Settings.php:319 +msgid "Password verification failed." msgstr "" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" +#: ../../Zotlabs/Module/Settings.php:326 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" +#: ../../Zotlabs/Module/Settings.php:330 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../Zotlabs/Module/Settings.php:344 +msgid "Password changed." msgstr "" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" +#: ../../Zotlabs/Module/Settings.php:346 +msgid "Password update failed. Please try again." msgstr "" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" +#: ../../Zotlabs/Module/Settings.php:595 +msgid "Settings updated." msgstr "" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" +#: ../../Zotlabs/Module/Settings.php:659 ../../Zotlabs/Module/Settings.php:685 +#: ../../Zotlabs/Module/Settings.php:721 +msgid "Add application" msgstr "" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" +#: ../../Zotlabs/Module/Settings.php:662 +msgid "Name of application" msgstr "" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" +#: ../../Zotlabs/Module/Settings.php:663 ../../Zotlabs/Module/Settings.php:689 +msgid "Consumer Key" msgstr "" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" +#: ../../Zotlabs/Module/Settings.php:663 ../../Zotlabs/Module/Settings.php:664 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" +#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Settings.php:690 +msgid "Consumer Secret" msgstr "" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" +#: ../../Zotlabs/Module/Settings.php:665 ../../Zotlabs/Module/Settings.php:691 +msgid "Redirect" msgstr "" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." +#: ../../Zotlabs/Module/Settings.php:665 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" +#: ../../Zotlabs/Module/Settings.php:666 ../../Zotlabs/Module/Settings.php:692 +msgid "Icon url" msgstr "" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" +#: ../../Zotlabs/Module/Settings.php:666 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" msgstr "" -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" +#: ../../Zotlabs/Module/Settings.php:677 +msgid "Application not found." msgstr "" -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../Zotlabs/Module/Settings.php:720 +msgid "Connected Apps" msgstr "" -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" +#: ../../Zotlabs/Module/Settings.php:724 +msgid "Client key starts with" msgstr "" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" +#: ../../Zotlabs/Module/Settings.php:725 +msgid "No name" msgstr "" -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" +#: ../../Zotlabs/Module/Settings.php:726 +msgid "Remove authorization" msgstr "" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" +#: ../../Zotlabs/Module/Settings.php:739 +msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 -msgid "Menu not found." +#: ../../Zotlabs/Module/Settings.php:746 +msgid "Feature/Addon Settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." +#: ../../Zotlabs/Module/Settings.php:769 +msgid "Account Settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." +#: ../../Zotlabs/Module/Settings.php:770 +msgid "Current Password" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." +#: ../../Zotlabs/Module/Settings.php:771 +msgid "Enter New Password" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:120 ../../Zotlabs/Module/Menu.php:166 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." +#: ../../Zotlabs/Module/Settings.php:772 +msgid "Confirm New Password" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" +#: ../../Zotlabs/Module/Settings.php:772 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" +#: ../../Zotlabs/Module/Settings.php:774 +#: ../../Zotlabs/Module/Settings.php:1194 +msgid "Email Address:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" +#: ../../Zotlabs/Module/Settings.php:775 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" +#: ../../Zotlabs/Module/Settings.php:776 +msgid "Remove this account including all its channels" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" +#: ../../Zotlabs/Module/Settings.php:810 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" +#: ../../Zotlabs/Module/Settings.php:812 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" +#: ../../Zotlabs/Module/Settings.php:847 ../../include/widgets.php:614 +msgid "Guest Access Tokens" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" +#: ../../Zotlabs/Module/Settings.php:854 +msgid "Login Name" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" +#: ../../Zotlabs/Module/Settings.php:855 +msgid "Login Password" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" +#: ../../Zotlabs/Module/Settings.php:856 +msgid "Expires (yyyy-mm-dd)" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" +#: ../../Zotlabs/Module/Settings.php:881 ../../Zotlabs/Module/Admin.php:677 +#: ../../Zotlabs/Module/Admin.php:678 +msgid "Off" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" +#: ../../Zotlabs/Module/Settings.php:881 ../../Zotlabs/Module/Admin.php:677 +#: ../../Zotlabs/Module/Admin.php:678 +msgid "On" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" +#: ../../Zotlabs/Module/Settings.php:888 +msgid "Additional Features" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" +#: ../../Zotlabs/Module/Settings.php:912 +msgid "Connector Settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" +#: ../../Zotlabs/Module/Settings.php:951 +msgid "No special theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" +#: ../../Zotlabs/Module/Settings.php:954 +#, php-format +msgid "%s - (Experimental)" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" +#: ../../Zotlabs/Module/Settings.php:957 ../../Zotlabs/Module/Admin.php:410 +msgid "mobile" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" +#: ../../Zotlabs/Module/Settings.php:996 +msgid "Display Settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" +#: ../../Zotlabs/Module/Settings.php:997 +msgid "Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" +#: ../../Zotlabs/Module/Settings.php:998 +msgid "Custom Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." +#: ../../Zotlabs/Module/Settings.php:999 +msgid "Content Settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." +#: ../../Zotlabs/Module/Settings.php:1005 +msgid "Display Theme:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." +#: ../../Zotlabs/Module/Settings.php:1006 +msgid "Mobile Theme:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" +#: ../../Zotlabs/Module/Settings.php:1007 +msgid "Preload images before rendering the page" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" +#: ../../Zotlabs/Module/Settings.php:1007 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." +#: ../../Zotlabs/Module/Settings.php:1008 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" +#: ../../Zotlabs/Module/Settings.php:1009 +msgid "Update browser every xx seconds" msgstr "" -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" +#: ../../Zotlabs/Module/Settings.php:1009 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" +#: ../../Zotlabs/Module/Settings.php:1010 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" +#: ../../Zotlabs/Module/Settings.php:1010 +msgid "Maximum of 100 items" msgstr "" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" +#: ../../Zotlabs/Module/Settings.php:1011 +msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" +#: ../../Zotlabs/Module/Settings.php:1012 +msgid "Link post titles to source" msgstr "" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" +#: ../../Zotlabs/Module/Settings.php:1013 +msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" +#: ../../Zotlabs/Module/Settings.php:1016 +msgid "Use blog/list mode on channel page" msgstr "" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" +#: ../../Zotlabs/Module/Settings.php:1016 +#: ../../Zotlabs/Module/Settings.php:1017 +msgid "(comments displayed separately)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" +#: ../../Zotlabs/Module/Settings.php:1017 +msgid "Use blog/list mode on grid page" msgstr "" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" +#: ../../Zotlabs/Module/Settings.php:1018 +msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" +#: ../../Zotlabs/Module/Settings.php:1018 +#: ../../Zotlabs/Module/Settings.php:1019 +msgid "click to expand content exceeding this height" msgstr "" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" +#: ../../Zotlabs/Module/Settings.php:1019 +msgid "Grid page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Nobody except yourself" msgstr "" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" +#: ../../Zotlabs/Module/Settings.php:1049 +msgid "Only those you specifically allow" msgstr "" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Approved connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Any connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" +#: ../../Zotlabs/Module/Settings.php:1052 +msgid "Anybody on this website" msgstr "" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Anybody in this network" msgstr "" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2858 -msgid "Default" +#: ../../Zotlabs/Module/Settings.php:1054 +msgid "Anybody authenticated" msgstr "" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" +#: ../../Zotlabs/Module/Settings.php:1055 +msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" +#: ../../Zotlabs/Module/Settings.php:1129 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" +#: ../../Zotlabs/Module/Settings.php:1134 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" +#: ../../Zotlabs/Module/Settings.php:1143 +msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" +#: ../../Zotlabs/Module/Settings.php:1185 +msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" +#: ../../Zotlabs/Module/Settings.php:1192 +msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" +#: ../../Zotlabs/Module/Settings.php:1193 ../../include/channel.php:1164 +msgid "Full Name:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1490 -msgid "Site" +#: ../../Zotlabs/Module/Settings.php:1195 +msgid "Your Timezone:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" +#: ../../Zotlabs/Module/Settings.php:1196 +msgid "Default Post Location:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" +#: ../../Zotlabs/Module/Settings.php:1196 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" +#: ../../Zotlabs/Module/Settings.php:1197 +msgid "Use Browser Location:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" +#: ../../Zotlabs/Module/Settings.php:1199 +msgid "Adult Content" msgstr "" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" +#: ../../Zotlabs/Module/Settings.php:1199 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" +#: ../../Zotlabs/Module/Settings.php:1201 +msgid "Security and Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" +#: ../../Zotlabs/Module/Settings.php:1204 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +#: ../../Zotlabs/Module/Settings.php:1206 +msgid "Hide my online presence" msgstr "" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" +#: ../../Zotlabs/Module/Settings.php:1206 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" +#: ../../Zotlabs/Module/Settings.php:1208 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:504 +#: ../../Zotlabs/Module/Settings.php:1209 msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" +#: ../../Zotlabs/Module/Settings.php:1210 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" +#: ../../Zotlabs/Module/Settings.php:1211 +msgid "Private - default private, never open or public" msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" +#: ../../Zotlabs/Module/Settings.php:1212 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" +#: ../../Zotlabs/Module/Settings.php:1214 +msgid "Allow others to tag your posts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" +#: ../../Zotlabs/Module/Settings.php:1214 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: ../../Zotlabs/Module/Settings.php:1216 +msgid "Advanced Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" +#: ../../Zotlabs/Module/Settings.php:1218 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" +#: ../../Zotlabs/Module/Settings.php:1218 +msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." +#: ../../Zotlabs/Module/Settings.php:1218 +#, php-format +msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" +#: ../../Zotlabs/Module/Settings.php:1218 +msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" +#: ../../Zotlabs/Module/Settings.php:1218 +msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." +#: ../../Zotlabs/Module/Settings.php:1219 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" +#: ../../Zotlabs/Module/Settings.php:1219 +msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." +#: ../../Zotlabs/Module/Settings.php:1220 +msgid "Default Post and Publish Permissions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" +#: ../../Zotlabs/Module/Settings.php:1221 ../../Zotlabs/Module/Mitem.php:154 +#: ../../Zotlabs/Module/Mitem.php:231 +msgid "(click to open/close)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" +#: ../../Zotlabs/Module/Settings.php:1222 +msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" +#: ../../Zotlabs/Module/Settings.php:1229 +msgid "Channel permissions category:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +#: ../../Zotlabs/Module/Settings.php:1235 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" +#: ../../Zotlabs/Module/Settings.php:1235 +msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" +#: ../../Zotlabs/Module/Settings.php:1239 +msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" +#: ../../Zotlabs/Module/Settings.php:1240 +msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." +#: ../../Zotlabs/Module/Settings.php:1242 +msgid "making an interesting profile change" msgstr "" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" +#: ../../Zotlabs/Module/Settings.php:1243 +msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." +#: ../../Zotlabs/Module/Settings.php:1244 +msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" +#: ../../Zotlabs/Module/Settings.php:1245 +msgid "Your connections are confirmed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +#: ../../Zotlabs/Module/Settings.php:1246 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" +#: ../../Zotlabs/Module/Settings.php:1247 +msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "You receive a private message" msgstr "" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" +#: ../../Zotlabs/Module/Settings.php:1249 +msgid "You receive a friend suggestion" msgstr "" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." +#: ../../Zotlabs/Module/Settings.php:1250 +msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" +#: ../../Zotlabs/Module/Settings.php:1251 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Display contextual help for the current page when the help button is pressed." +#: ../../Zotlabs/Module/Settings.php:1254 +msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "Unseen grid activity" msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" +#: ../../Zotlabs/Module/Settings.php:1257 +msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" +#: ../../Zotlabs/Module/Settings.php:1258 +msgid "Unseen private messages" msgstr "" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" +#: ../../Zotlabs/Module/Settings.php:1258 +#: ../../Zotlabs/Module/Settings.php:1263 +#: ../../Zotlabs/Module/Settings.php:1264 +#: ../../Zotlabs/Module/Settings.php:1265 +msgid "Recommended" msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" +#: ../../Zotlabs/Module/Settings.php:1259 +msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "Events today" msgstr "" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" +#: ../../Zotlabs/Module/Settings.php:1262 +msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." +#: ../../Zotlabs/Module/Settings.php:1263 +msgid "System info messages" msgstr "" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." +#: ../../Zotlabs/Module/Settings.php:1265 +msgid "New connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" +#: ../../Zotlabs/Module/Settings.php:1266 +msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Settings.php:1267 msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +"Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" +#: ../../Zotlabs/Module/Settings.php:1269 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" +#: ../../Zotlabs/Module/Settings.php:1269 +msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" +#: ../../Zotlabs/Module/Settings.php:1271 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" +#: ../../Zotlabs/Module/Settings.php:1272 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" +#: ../../Zotlabs/Module/Settings.php:1275 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" +#: ../../Zotlabs/Module/Settings.php:1276 +msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" +#: ../../Zotlabs/Module/Settings.php:1277 +#: ../../Zotlabs/Module/Settings.php:1278 +msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" +#: ../../Zotlabs/Module/Settings.php:1278 +msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +#: ../../Zotlabs/Module/Settings.php:1280 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +#: ../../Zotlabs/Module/Settings.php:1281 ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." +#: ../../Zotlabs/Module/Settings.php:1283 +msgid "Firefox Share $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1493 -msgid "Security" +#: ../../Zotlabs/Module/Settings.php:1284 +msgid "Start calendar week on monday" msgstr "" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" msgstr "" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" msgstr "" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" msgstr "" -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" msgstr "" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" msgstr "" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" msgstr "" -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" msgstr "" -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" msgstr "" -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2888 +msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" msgstr "" -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" msgstr "" -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" msgstr "" -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" msgstr "" -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" msgstr "" -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" msgstr "" -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1490 +msgid "Site" msgstr "" -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:248 +msgid "Registration" msgstr "" -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1491 -msgid "Accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1054 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1055 +#: ../../Zotlabs/Module/Admin.php:502 msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1492 -msgid "Channels" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 -msgid "Channel" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1226 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1227 +#: ../../Zotlabs/Module/Admin.php:508 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?" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1495 -msgid "Plugins" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 -msgid "Settings" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " +#: ../../Zotlabs/Module/Admin.php:514 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Accounts abandoned after x days" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " +#: ../../Zotlabs/Module/Admin.php:515 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allowed friend domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" +#: ../../Zotlabs/Module/Admin.php:517 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1496 -msgid "Themes" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Default directory server" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1517 -#: ../../include/widgets.php:1527 -msgid "Logs" +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Proxy URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:530 msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1498 -msgid "Profile Fields" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Maximum Load Average" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "0 for no expiration of imported content" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" +#: ../../Zotlabs/Module/Admin.php:678 +#, php-format +msgid "Lock feature %s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" +#: ../../Zotlabs/Module/Admin.php:703 +msgid "No server found" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:121 -#: ../../Zotlabs/Module/Manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format +#: ../../Zotlabs/Module/Admin.php:746 msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" +#: ../../Zotlabs/Module/Admin.php:749 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." +#: ../../Zotlabs/Module/Admin.php:750 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" +#: ../../Zotlabs/Module/Admin.php:751 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1493 +msgid "Security" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Admin.php:758 msgid "" -"or import an existing channel from another location." +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." msgstr "" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" +#: ../../Zotlabs/Module/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" msgstr "" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" msgstr "" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" msgstr "" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." msgstr "" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" msgstr "" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" +#: ../../Zotlabs/Module/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." +#: ../../Zotlabs/Module/Admin.php:805 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" +#: ../../Zotlabs/Module/Admin.php:825 +msgid "Failed Updates" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1281 -msgid "Profile" +#: ../../Zotlabs/Module/Admin.php:827 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" +#: ../../Zotlabs/Module/Admin.php:859 +msgid "Queue Statistics" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "" +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1491 +msgid "Accounts" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2208 +msgid "Email" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." msgstr "" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 -msgid "Layouts" +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1351 -msgid "Public Hubs" +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:25 +#: ../../Zotlabs/Module/Admin.php:1054 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" +#: ../../Zotlabs/Module/Admin.php:1055 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:1091 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:1100 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" +#: ../../Zotlabs/Module/Admin.php:1136 +#, php-format +msgid "Channel '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' uncensored" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" msgstr "" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2262 -msgid "Import" +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1492 +msgid "Channels" msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." +#: ../../Zotlabs/Module/Admin.php:1214 +msgid "Censor" msgstr "" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" +#: ../../Zotlabs/Module/Admin.php:1215 +msgid "Uncensor" msgstr "" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" msgstr "" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" +#: ../../Zotlabs/Module/Admin.php:1217 +msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1631 +msgid "Channel" msgstr "" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" +#: ../../Zotlabs/Module/Admin.php:1222 +msgid "UID" msgstr "" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" +#: ../../Zotlabs/Module/Admin.php:1226 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" +#: ../../Zotlabs/Module/Admin.php:1227 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." msgstr "" -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " +#: ../../Zotlabs/Module/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." msgstr "" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " +#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" msgstr "" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" +#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" +#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1495 +msgid "Plugins" msgstr "" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" +#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" msgstr "" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" +#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:212 +#: ../../include/widgets.php:647 +msgid "Settings" msgstr "" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " msgstr "" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" +#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " msgstr "" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " msgstr "" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" +#: ../../Zotlabs/Module/Admin.php:1342 +msgid "Maximum project version: " msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" +#: ../../Zotlabs/Module/Admin.php:1343 +msgid "Minimum PHP version: " msgstr "" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" +#: ../../Zotlabs/Module/Admin.php:1344 +msgid "Requires: " msgstr "" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" msgstr "" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." msgstr "" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" +#: ../../Zotlabs/Module/Admin.php:1395 +msgid "Plugin repo git URL" msgstr "" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "Custom repo name" msgstr "" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "(optional)" msgstr "" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" msgstr "" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../Zotlabs/Module/Admin.php:1404 +msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" msgstr "" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" +#: ../../Zotlabs/Module/Admin.php:1427 +msgid "Manage Repos" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" +#: ../../Zotlabs/Module/Admin.php:1428 +msgid "Installed Plugin Repositories" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" +#: ../../Zotlabs/Module/Admin.php:1436 +msgid "Switch branch" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" +#: ../../Zotlabs/Module/Admin.php:1550 +msgid "No themes found." msgstr "" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../Zotlabs/Module/Admin.php:1606 +msgid "Screenshot" msgstr "" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." +#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1496 +msgid "Themes" msgstr "" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." +#: ../../Zotlabs/Module/Admin.php:1652 +msgid "[Experimental]" msgstr "" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation instructions." +#: ../../Zotlabs/Module/Admin.php:1653 +msgid "[Unsupported]" msgstr "" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." +#: ../../Zotlabs/Module/Admin.php:1677 +msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1517 +#: ../../include/widgets.php:1527 +msgid "Logs" msgstr "" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." +#: ../../Zotlabs/Module/Admin.php:1734 +msgid "Clear" msgstr "" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." +#: ../../Zotlabs/Module/Admin.php:1740 +msgid "Debugging" msgstr "" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" msgstr "" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Admin.php:1741 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +"Must be writable by web server. Relative to your top-level webserver " +"directory." msgstr "" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" msgstr "" -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" +#: ../../Zotlabs/Module/Admin.php:2028 +msgid "New Profile Field" msgstr "" -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" msgstr "" -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" msgstr "" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" +#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" msgstr "" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" msgstr "" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" msgstr "" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" msgstr "" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" msgstr "" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" msgstr "" -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1689 -msgid "Register" +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Register.php:263 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1498 +msgid "Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." +#: ../../Zotlabs/Module/Admin.php:2107 +msgid "Basic Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "Advanced Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "(In addition to basic fields)" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" +#: ../../Zotlabs/Module/Admin.php:2115 +msgid "Create Custom Field" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/New_channel.php:137 msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." +"or import an existing channel from another location." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can " -"be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for " -"this download to begin." +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" msgstr "" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 +msgid "Mark all system notifications seen" msgstr "" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:964 +msgid "Poke" msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" msgstr "" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" msgstr "" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" msgstr "" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." msgstr "" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" msgstr "" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" msgstr "" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." msgstr "" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" msgstr "" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." msgstr "" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" msgstr "" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/features.php:57 ../../include/nav.php:110 +#: ../../include/conversation.php:1715 ../../include/conversation.php:1718 +msgid "Wiki" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be " +"saved*.\"" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" msgstr "" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1151 +msgid "Embed image from photo albums" msgstr "" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1235 +msgid "Embed an image from your albums" msgstr "" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1237 +#: ../../include/conversation.php:1278 +msgid "OK" msgstr "" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1187 +msgid "Choose images to embed" msgstr "" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1188 +msgid "Choose an album" msgstr "" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1189 +msgid "Choose a different album..." msgstr "" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1190 +msgid "Error getting album list" msgstr "" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1191 +msgid "Error getting photo link" msgstr "" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1192 +msgid "Error getting album" msgstr "" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" msgstr "" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +#: ../../Zotlabs/Module/Siteinfo.php:63 msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" msgstr "" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 +msgid "Blocks" msgstr "" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 +msgid "Layouts" msgstr "" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" msgstr "" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" msgstr "" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1351 +msgid "Public Hubs" msgstr "" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." msgstr "" -#: ../../Zotlabs/Module/Setup.php:405 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" msgstr "" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" msgstr "" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" msgstr "" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:963 +msgid "Ratings" msgstr "" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format +#: ../../Zotlabs/Module/Profile_photo.php:186 msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 +msgid "Import" msgstr "" -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." msgstr "" -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" msgstr "" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." msgstr "" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." msgstr "" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:500 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." msgstr "" -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." msgstr "" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." msgstr "" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" msgstr "" -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" msgstr "" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" msgstr "" -#: ../../Zotlabs/Module/Setup.php:552 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" msgstr "" -#: ../../Zotlabs/Module/Setup.php:553 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" msgstr "" -#: ../../Zotlabs/Module/Setup.php:554 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" msgstr "" -#: ../../Zotlabs/Module/Setup.php:555 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" msgstr "" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" +#: ../../Zotlabs/Module/Register.php:253 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../Zotlabs/Module/Setup.php:572 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 +#: ../../boot.php:1695 +msgid "Register" msgstr "" -#: ../../Zotlabs/Module/Setup.php:573 -#, php-format +#: ../../Zotlabs/Module/Register.php:266 msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." msgstr "" -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" msgstr "" -#: ../../Zotlabs/Module/Setup.php:575 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:594 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:598 -msgid "store is writable" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:167 +#: ../../include/widgets.php:102 +msgid "Apps" msgstr "" -#: ../../Zotlabs/Module/Setup.php:631 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." msgstr "" -#: ../../Zotlabs/Module/Setup.php:632 -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!" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." msgstr "" -#: ../../Zotlabs/Module/Setup.php:633 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." msgstr "" -#: ../../Zotlabs/Module/Setup.php:634 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" msgstr "" -#: ../../Zotlabs/Module/Setup.php:635 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" msgstr "" -#: ../../Zotlabs/Module/Setup.php:636 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" msgstr "" -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" msgstr "" -#: ../../Zotlabs/Module/Setup.php:641 -msgid "SSL certificate validation" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" msgstr "" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" msgstr "" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "Url rewrite is working" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" msgstr "" -#: ../../Zotlabs/Module/Setup.php:659 -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." +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../Zotlabs/Module/Setup.php:683 -msgid "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" msgstr "" -#: ../../Zotlabs/Module/Setup.php:720 -msgid "

What next

" +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" msgstr "" -#: ../../Zotlabs/Module/Setup.php:721 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" msgstr "" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" msgstr "" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" msgstr "" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" msgstr "" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" msgstr "" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" msgstr "" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." msgstr "" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." msgstr "" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" msgstr "" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 -msgid "Channel Sources" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" msgstr "" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" msgstr "" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" msgstr "" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" +#: ../../Zotlabs/Module/Network.php:216 +msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" +#: ../../Zotlabs/Module/Network.php:225 +msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" +#: ../../Zotlabs/Module/Network.php:251 +msgid "Invalid connection." msgstr "" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." msgstr "" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:39 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +"This account and all its channels will be completely removed from the " +"network. " msgstr "" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." +#: ../../Zotlabs/Module/Uexport.php:57 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:989 -msgid "Edit visibility" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:960 -msgid "Change profile photo" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:74 +#: ../../include/widgets.php:639 +msgid "Channel Sources" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 +#: ../../include/conversation.php:150 +msgid "comment" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:985 -msgid "Profile Image" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:967 -msgid "Edit Profiles" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/features.php:55 ../../include/nav.php:108 -#: ../../include/conversation.php:1710 ../../include/conversation.php:1713 -msgid "Wiki" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Api.php:83 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be " -"saved*.\"" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available memory" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." msgstr "" #: ../../Zotlabs/Module/Viewconnections.php:65 @@ -6462,24 +6474,6 @@ msgstr "" msgid "Source of Item" msgstr "" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "" - -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" msgstr "" @@ -6508,19 +6502,19 @@ msgstr "" msgid "Room is full" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 msgid "$Projectname Notification" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 msgid "$projectname" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 msgid "Thank You," msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 #, php-format msgid "%s Administrator" msgstr "" @@ -6736,37 +6730,37 @@ msgstr "" msgid "Remote Diagnostics" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:92 msgid "Suggest Channels" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1707 +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 +#: ../../boot.php:1713 msgid "Login" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 msgid "Grid" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 msgid "Channel Home" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:205 +#: ../../include/conversation.php:1669 ../../include/conversation.php:1672 msgid "Events" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 msgid "Directory" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 msgid "Mail" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 msgid "Chat" msgstr "" @@ -6806,6 +6800,69 @@ msgstr "" msgid "Purchase" msgstr "" +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:230 +msgid "Visible to your default audience" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:266 +msgid "Only me" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "" + #: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 msgid "Private Message" msgstr "" @@ -6870,358 +6927,523 @@ msgstr "" msgid "Add Tag" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 msgid "like" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 msgid "dislike" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:266 +#: ../../Zotlabs/Lib/ThreadItem.php:267 msgid "Share This" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:266 +#: ../../Zotlabs/Lib/ThreadItem.php:267 msgid "share" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:275 +#: ../../Zotlabs/Lib/ThreadItem.php:276 msgid "Delivery Report" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:293 +#: ../../Zotlabs/Lib/ThreadItem.php:294 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 #, php-format msgid "View %s's profile - %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:326 +#: ../../Zotlabs/Lib/ThreadItem.php:327 msgid "to" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:327 +#: ../../Zotlabs/Lib/ThreadItem.php:328 msgid "via" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:328 +#: ../../Zotlabs/Lib/ThreadItem.php:329 msgid "Wall-to-Wall" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" +#: ../../Zotlabs/Lib/ThreadItem.php:330 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 +#, php-format +msgid "from %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Save Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:372 +msgid "Add to Calendar" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:381 +msgid "Mark all seen" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +msgid "Bold" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +msgid "Italic" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +msgid "Underline" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +msgid "Quote" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1231 +msgid "Code" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Image" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Insert Link" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:719 +msgid "Video" +msgstr "" + +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "" + +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." +msgstr "" + +#: ../../include/dba/dba_driver.php:171 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: ../../include/items.php:897 ../../include/items.php:942 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1141 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1143 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1145 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1147 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1149 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1151 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1153 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1155 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:3918 +msgid "Privacy group is empty." +msgstr "" + +#: ../../include/items.php:3925 +#, php-format +msgid "Privacy group: %s" +msgstr "" + +#: ../../include/items.php:3937 +msgid "Connection not found." +msgstr "" + +#: ../../include/items.php:4290 +msgid "profile photo" +msgstr "" + +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "" + +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" + +#: ../../include/photos.php:506 ../../include/conversation.php:1655 +msgid "Photo Albums" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 -#, php-format -msgid "from %s" +#: ../../include/photos.php:510 +msgid "Upload New Photos" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" +#: ../../include/features.php:50 +msgid "General Features" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" +#: ../../include/features.php:52 +msgid "Content Expiration" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" +#: ../../include/features.php:53 +msgid "Multiple Profiles" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" +#: ../../include/features.php:54 +msgid "Advanced Profiles" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 -msgid "Bold" +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Italic" +#: ../../include/features.php:55 +msgid "Profile Import/Export" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Underline" +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Quote" +#: ../../include/features.php:56 +msgid "Web Pages" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Code" +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" +#: ../../include/features.php:58 +msgid "Hide Rating" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" +#: ../../include/features.php:58 +msgid "" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" +#: ../../include/features.php:59 +msgid "Private Notes" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" +#: ../../include/features.php:60 +msgid "Navigation Channel Select" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" +#: ../../include/features.php:61 +msgid "Photo Location" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" +#: ../../include/features.php:61 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" +#: ../../include/features.php:63 +msgid "Smart Birthdays" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:152 +#: ../../include/features.php:63 msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" +#: ../../include/features.php:64 +msgid "Expert Mode" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" +#: ../../include/features.php:64 +msgid "Enable Expert Mode to provide advanced configuration options" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 +#: ../../include/features.php:65 +msgid "Premium Channel" +msgstr "" + +#: ../../include/features.php:65 msgid "" -"This is your default setting for who can view your file storage and photos" +"Allows you to set restrictions and terms on those that connect with your " +"channel" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" +#: ../../include/features.php:70 +msgid "Post Composition Features" msgstr "" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." +#: ../../include/features.php:73 +msgid "Large Photos" msgstr "" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." +#: ../../include/features.php:73 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -#: ../../include/dba/dba_driver.php:171 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" +#: ../../include/features.php:74 +msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" +#: ../../include/features.php:75 +msgid "Even More Encryption" msgstr "" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." +#: ../../include/features.php:75 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../include/items.php:1143 -msgid "Visible to you only." +#: ../../include/features.php:76 +msgid "Enable Voting Tools" msgstr "" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." +#: ../../include/features.php:76 +msgid "Provide a class of post which others can vote on" msgstr "" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." +#: ../../include/features.php:77 +msgid "Delayed Posting" msgstr "" -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." +#: ../../include/features.php:77 +msgid "Allow posts to be published at a later date" msgstr "" -#: ../../include/items.php:1151 -msgid "Visible to all connections." +#: ../../include/features.php:78 +msgid "Suppress Duplicate Posts/Comments" msgstr "" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." +#: ../../include/features.php:78 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." msgstr "" -#: ../../include/items.php:1155 -msgid "Visible to specific connections." +#: ../../include/features.php:84 +msgid "Network and Stream Filtering" msgstr "" -#: ../../include/items.php:3918 -msgid "Privacy group is empty." +#: ../../include/features.php:85 +msgid "Search by Date" msgstr "" -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" +#: ../../include/features.php:85 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/items.php:3937 -msgid "Connection not found." +#: ../../include/features.php:86 ../../include/group.php:311 +msgid "Privacy Groups" msgstr "" -#: ../../include/items.php:4290 -msgid "profile photo" +#: ../../include/features.php:86 +msgid "Enable management and selection of privacy groups" msgstr "" -#: ../../include/oembed.php:336 -msgid "Embedded content" +#: ../../include/features.php:87 ../../include/widgets.php:281 +msgid "Saved Searches" msgstr "" -#: ../../include/oembed.php:345 -msgid "Embedding disabled" +#: ../../include/features.php:87 +msgid "Save search terms for re-use" msgstr "" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/features.php:88 +msgid "Network Personal Tab" msgstr "" -#: ../../include/photos.php:121 -msgid "Image file is empty." +#: ../../include/features.php:88 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/photos.php:259 -msgid "Photo storage failed." +#: ../../include/features.php:89 +msgid "Network New Tab" msgstr "" -#: ../../include/photos.php:299 -msgid "a new photo" +#: ../../include/features.php:89 +msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +#: ../../include/features.php:90 +msgid "Affinity Tool" msgstr "" -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" +#: ../../include/features.php:90 +msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/photos.php:510 -msgid "Upload New Photos" +#: ../../include/features.php:91 +msgid "Connection Filtering" msgstr "" -#: ../../include/account.php:28 -msgid "Not a valid email address" +#: ../../include/features.php:91 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/features.php:92 +msgid "Show channel suggestions" msgstr "" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." +#: ../../include/features.php:97 +msgid "Post/Comment Tools" msgstr "" -#: ../../include/account.php:68 -msgid "An invitation is required." +#: ../../include/features.php:98 +msgid "Community Tagging" msgstr "" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." +#: ../../include/features.php:98 +msgid "Ability to tag existing posts" msgstr "" -#: ../../include/account.php:122 -msgid "Please enter the required information." +#: ../../include/features.php:99 +msgid "Post Categories" msgstr "" -#: ../../include/account.php:189 -msgid "Failed to store account information." +#: ../../include/features.php:99 +msgid "Add categories to your posts" msgstr "" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" +#: ../../include/features.php:100 +msgid "Emoji Reactions" +msgstr "" + +#: ../../include/features.php:100 +msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" +#: ../../include/features.php:101 ../../include/widgets.php:310 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" msgstr "" -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1930 -msgid "Administrator" +#: ../../include/features.php:101 +msgid "Ability to file posts under folders" msgstr "" -#: ../../include/account.php:339 -msgid "your registration password" +#: ../../include/features.php:102 +msgid "Dislike Posts" msgstr "" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" +#: ../../include/features.php:102 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/account.php:414 -msgid "Account approved." +#: ../../include/features.php:103 +msgid "Star Posts" msgstr "" -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/features.php:103 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." +#: ../../include/features.php:104 +msgid "Tag Cloud" msgstr "" -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/features.php:104 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." +#: ../../include/api.php:1337 +msgid "Public Timeline" msgstr "" #: ../../include/acl_selectors.php:269 @@ -7269,7 +7491,7 @@ msgstr "" msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/datetime.php:272 ../../boot.php:2543 +#: ../../include/datetime.php:272 ../../boot.php:2549 msgid "never" msgstr "" @@ -7342,16 +7564,6 @@ msgstr "" msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "" - -#: ../../include/security.php:527 -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/selectors.php:30 msgid "Frequently" msgstr "" @@ -7600,1761 +7812,1593 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "" - -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "" - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "" - -#: ../../include/features.php:48 -msgid "General Features" -msgstr "" - -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "" - -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "" - -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "" - -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "" - -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "" - -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "" - -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "" - -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "" - -#: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" - -#: ../../include/features.php:56 -msgid "Hide Rating" -msgstr "" - -#: ../../include/features.php:56 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "" - -#: ../../include/features.php:57 -msgid "Private Notes" -msgstr "" - -#: ../../include/features.php:57 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "" - -#: ../../include/features.php:58 -msgid "Navigation Channel Select" -msgstr "" - -#: ../../include/features.php:58 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "" - -#: ../../include/features.php:59 -msgid "Photo Location" -msgstr "" - -#: ../../include/features.php:59 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "" - -#: ../../include/features.php:60 -msgid "Access Controlled Chatrooms" -msgstr "" - -#: ../../include/features.php:60 -msgid "Provide chatrooms and chat services with access control." -msgstr "" - -#: ../../include/features.php:61 -msgid "Smart Birthdays" -msgstr "" - -#: ../../include/features.php:61 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "" - -#: ../../include/features.php:62 -msgid "Expert Mode" -msgstr "" - -#: ../../include/features.php:62 -msgid "Enable Expert Mode to provide advanced configuration options" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/features.php:63 -msgid "Premium Channel" +#: ../../include/follow.php:32 +msgid "Channel location missing." msgstr "" -#: ../../include/features.php:63 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/features.php:68 -msgid "Post Composition Features" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/features.php:71 -msgid "Large Photos" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." msgstr "" -#: ../../include/features.php:71 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." msgstr "" -#: ../../include/features.php:72 -msgid "Automatically import channel content from other channels or feeds" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/features.php:73 -msgid "Even More Encryption" +#: ../../include/text.php:404 +msgid "prev" msgstr "" -#: ../../include/features.php:73 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" +#: ../../include/text.php:406 +msgid "first" msgstr "" -#: ../../include/features.php:74 -msgid "Enable Voting Tools" +#: ../../include/text.php:435 +msgid "last" msgstr "" -#: ../../include/features.php:74 -msgid "Provide a class of post which others can vote on" +#: ../../include/text.php:438 +msgid "next" msgstr "" -#: ../../include/features.php:75 -msgid "Delayed Posting" +#: ../../include/text.php:448 +msgid "older" msgstr "" -#: ../../include/features.php:75 -msgid "Allow posts to be published at a later date" +#: ../../include/text.php:450 +msgid "newer" msgstr "" -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" +#: ../../include/text.php:843 +msgid "No connections" msgstr "" -#: ../../include/features.php:76 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" msgstr "" -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" msgstr "" -#: ../../include/features.php:83 -msgid "Search by Date" +#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/conversation.php:243 +msgid "poked" msgstr "" -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" +#: ../../include/text.php:1019 +msgid "ping" msgstr "" -#: ../../include/features.php:84 ../../include/group.php:311 -msgid "Privacy Groups" +#: ../../include/text.php:1019 +msgid "pinged" msgstr "" -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" +#: ../../include/text.php:1020 +msgid "prod" msgstr "" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" +#: ../../include/text.php:1020 +msgid "prodded" msgstr "" -#: ../../include/features.php:85 -msgid "Save search terms for re-use" +#: ../../include/text.php:1021 +msgid "slap" msgstr "" -#: ../../include/features.php:86 -msgid "Network Personal Tab" +#: ../../include/text.php:1021 +msgid "slapped" msgstr "" -#: ../../include/features.php:86 -msgid "Enable tab to display only Network posts that you've interacted on" +#: ../../include/text.php:1022 +msgid "finger" msgstr "" -#: ../../include/features.php:87 -msgid "Network New Tab" +#: ../../include/text.php:1022 +msgid "fingered" msgstr "" -#: ../../include/features.php:87 -msgid "Enable tab to display all new Network activity" +#: ../../include/text.php:1023 +msgid "rebuff" msgstr "" -#: ../../include/features.php:88 -msgid "Affinity Tool" +#: ../../include/text.php:1023 +msgid "rebuffed" msgstr "" -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" +#: ../../include/text.php:1035 +msgid "happy" msgstr "" -#: ../../include/features.php:89 -msgid "Connection Filtering" +#: ../../include/text.php:1036 +msgid "sad" msgstr "" -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" +#: ../../include/text.php:1037 +msgid "mellow" msgstr "" -#: ../../include/features.php:90 -msgid "Show channel suggestions" +#: ../../include/text.php:1038 +msgid "tired" msgstr "" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" +#: ../../include/text.php:1039 +msgid "perky" msgstr "" -#: ../../include/features.php:96 -msgid "Community Tagging" +#: ../../include/text.php:1040 +msgid "angry" msgstr "" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" +#: ../../include/text.php:1041 +msgid "stupefied" msgstr "" -#: ../../include/features.php:97 -msgid "Post Categories" +#: ../../include/text.php:1042 +msgid "puzzled" msgstr "" -#: ../../include/features.php:97 -msgid "Add categories to your posts" +#: ../../include/text.php:1043 +msgid "interested" msgstr "" -#: ../../include/features.php:98 -msgid "Emoji Reactions" +#: ../../include/text.php:1044 +msgid "bitter" msgstr "" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" +#: ../../include/text.php:1045 +msgid "cheerful" msgstr "" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" +#: ../../include/text.php:1046 +msgid "alive" msgstr "" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" +#: ../../include/text.php:1047 +msgid "annoyed" msgstr "" -#: ../../include/features.php:100 -msgid "Dislike Posts" +#: ../../include/text.php:1048 +msgid "anxious" msgstr "" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" +#: ../../include/text.php:1049 +msgid "cranky" msgstr "" -#: ../../include/features.php:101 -msgid "Star Posts" +#: ../../include/text.php:1050 +msgid "disturbed" msgstr "" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" +#: ../../include/text.php:1051 +msgid "frustrated" msgstr "" -#: ../../include/features.php:102 -msgid "Tag Cloud" +#: ../../include/text.php:1052 +msgid "depressed" msgstr "" -#: ../../include/features.php:102 -msgid "Provide a personal tag cloud on your channel page" +#: ../../include/text.php:1053 +msgid "motivated" msgstr "" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +#: ../../include/text.php:1054 +msgid "relaxed" msgstr "" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" +#: ../../include/text.php:1055 +msgid "surprised" msgstr "" -#: ../../include/group.php:289 -msgid "edit" +#: ../../include/text.php:1239 ../../include/js_strings.php:70 +msgid "Monday" msgstr "" -#: ../../include/group.php:312 -msgid "Edit group" +#: ../../include/text.php:1239 ../../include/js_strings.php:71 +msgid "Tuesday" msgstr "" -#: ../../include/group.php:313 -msgid "Add privacy group" +#: ../../include/text.php:1239 ../../include/js_strings.php:72 +msgid "Wednesday" msgstr "" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" +#: ../../include/text.php:1239 ../../include/js_strings.php:73 +msgid "Thursday" msgstr "" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" +#: ../../include/text.php:1239 ../../include/js_strings.php:74 +msgid "Friday" msgstr "" -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1706 -msgid "Logout" +#: ../../include/text.php:1239 ../../include/js_strings.php:75 +msgid "Saturday" msgstr "" -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" +#: ../../include/text.php:1239 ../../include/js_strings.php:69 +msgid "Sunday" msgstr "" -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" +#: ../../include/text.php:1243 ../../include/js_strings.php:45 +msgid "January" msgstr "" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" +#: ../../include/text.php:1243 ../../include/js_strings.php:46 +msgid "February" msgstr "" -#: ../../include/nav.php:86 -msgid "Your profile page" +#: ../../include/text.php:1243 ../../include/js_strings.php:47 +msgid "March" msgstr "" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" +#: ../../include/text.php:1243 ../../include/js_strings.php:48 +msgid "April" msgstr "" -#: ../../include/nav.php:90 ../../include/channel.php:971 -msgid "Edit Profile" +#: ../../include/text.php:1243 +msgid "May" msgstr "" -#: ../../include/nav.php:90 -msgid "Edit your profile" +#: ../../include/text.php:1243 ../../include/js_strings.php:50 +msgid "June" msgstr "" -#: ../../include/nav.php:92 -msgid "Your photos" +#: ../../include/text.php:1243 ../../include/js_strings.php:51 +msgid "July" msgstr "" -#: ../../include/nav.php:93 -msgid "Your files" +#: ../../include/text.php:1243 ../../include/js_strings.php:52 +msgid "August" msgstr "" -#: ../../include/nav.php:96 -msgid "Your chatrooms" +#: ../../include/text.php:1243 ../../include/js_strings.php:53 +msgid "September" msgstr "" -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" +#: ../../include/text.php:1243 ../../include/js_strings.php:54 +msgid "October" msgstr "" -#: ../../include/nav.php:102 -msgid "Your bookmarks" +#: ../../include/text.php:1243 ../../include/js_strings.php:55 +msgid "November" msgstr "" -#: ../../include/nav.php:106 -msgid "Your webpages" +#: ../../include/text.php:1243 ../../include/js_strings.php:56 +msgid "December" msgstr "" -#: ../../include/nav.php:108 -msgid "Your wiki" +#: ../../include/text.php:1320 ../../include/text.php:1324 +msgid "Unknown Attachment" msgstr "" -#: ../../include/nav.php:112 -msgid "Sign in" +#: ../../include/text.php:1326 +msgid "unknown" msgstr "" -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" +#: ../../include/text.php:1362 +msgid "remove category" msgstr "" -#: ../../include/nav.php:132 -msgid "Remote authentication" +#: ../../include/text.php:1439 +msgid "remove from file" msgstr "" -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" +#: ../../include/text.php:1738 ../../include/text.php:1809 +msgid "default" msgstr "" -#: ../../include/nav.php:146 -msgid "Home Page" +#: ../../include/text.php:1746 +msgid "Page layout" msgstr "" -#: ../../include/nav.php:149 -msgid "Create an account" +#: ../../include/text.php:1746 +msgid "You can create your own with the layouts tool" msgstr "" -#: ../../include/nav.php:161 -msgid "Help and documentation" +#: ../../include/text.php:1788 +msgid "Page content type" msgstr "" -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" +#: ../../include/text.php:1821 +msgid "Select an alternate language" msgstr "" -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" +#: ../../include/text.php:1958 +msgid "activity" msgstr "" -#: ../../include/nav.php:169 -msgid "Channel Directory" +#: ../../include/text.php:2259 +msgid "Design Tools" msgstr "" -#: ../../include/nav.php:181 -msgid "Your grid" +#: ../../include/text.php:2265 +msgid "Pages" msgstr "" -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" +#: ../../include/text.php:2287 +msgid "Import website..." msgstr "" -#: ../../include/nav.php:184 -msgid "Channel home" +#: ../../include/text.php:2288 +msgid "Select folder to import" msgstr "" -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" +#: ../../include/text.php:2289 +msgid "Import from a zipped folder:" msgstr "" -#: ../../include/nav.php:191 -msgid "Notices" +#: ../../include/text.php:2290 +msgid "Import from cloud files:" msgstr "" -#: ../../include/nav.php:191 -msgid "Notifications" +#: ../../include/text.php:2291 +msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../include/nav.php:192 -msgid "See all notifications" +#: ../../include/text.php:2292 +msgid "Enter path to website files" msgstr "" -#: ../../include/nav.php:195 -msgid "Private mail" +#: ../../include/text.php:2293 +msgid "Select folder" msgstr "" -#: ../../include/nav.php:196 -msgid "See all private messages" +#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1712 +msgid "Logout" msgstr "" -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" +#: ../../include/nav.php:84 ../../include/nav.php:117 +msgid "End this session" msgstr "" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" +#: ../../include/nav.php:87 ../../include/nav.php:148 +msgid "Home" msgstr "" -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" +#: ../../include/nav.php:87 +msgid "Your posts and conversations" msgstr "" -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" +#: ../../include/nav.php:88 +msgid "Your profile page" msgstr "" -#: ../../include/nav.php:203 -msgid "Event Calendar" +#: ../../include/nav.php:90 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/nav.php:204 -msgid "See all events" +#: ../../include/nav.php:92 ../../include/channel.php:963 +msgid "Edit Profile" msgstr "" -#: ../../include/nav.php:205 -msgid "Mark all events seen" +#: ../../include/nav.php:92 +msgid "Edit your profile" msgstr "" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" +#: ../../include/nav.php:94 +msgid "Your photos" msgstr "" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" +#: ../../include/nav.php:95 +msgid "Your files" +msgstr "" + +#: ../../include/nav.php:98 +msgid "Your chatrooms" msgstr "" -#: ../../include/nav.php:218 ../../include/widgets.php:1524 -msgid "Admin" +#: ../../include/nav.php:104 ../../include/conversation.php:1695 +msgid "Bookmarks" msgstr "" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" +#: ../../include/nav.php:104 +msgid "Your bookmarks" msgstr "" -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." +#: ../../include/nav.php:108 +msgid "Your webpages" msgstr "" -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" +#: ../../include/nav.php:110 +msgid "Your wiki" msgstr "" -#: ../../include/nav.php:255 -msgid "Please wait..." +#: ../../include/nav.php:114 +msgid "Sign in" msgstr "" -#: ../../include/network.php:704 -msgid "view full size" +#: ../../include/nav.php:131 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/network.php:1944 -msgid "No Subject" +#: ../../include/nav.php:134 +msgid "Remote authentication" msgstr "" -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" +#: ../../include/nav.php:134 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/network.php:2200 -msgid "OStatus" +#: ../../include/nav.php:148 +msgid "Home Page" msgstr "" -#: ../../include/network.php:2201 -msgid "GNU-Social" +#: ../../include/nav.php:151 +msgid "Create an account" msgstr "" -#: ../../include/network.php:2202 -msgid "RSS/Atom" +#: ../../include/nav.php:163 +msgid "Help and documentation" msgstr "" -#: ../../include/network.php:2204 -msgid "Diaspora" +#: ../../include/nav.php:167 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/network.php:2205 -msgid "Facebook" +#: ../../include/nav.php:169 +msgid "Search site @name, #tag, ?docs, content" msgstr "" -#: ../../include/network.php:2206 -msgid "Zot" +#: ../../include/nav.php:171 +msgid "Channel Directory" msgstr "" -#: ../../include/network.php:2207 -msgid "LinkedIn" +#: ../../include/nav.php:183 +msgid "Your grid" msgstr "" -#: ../../include/network.php:2208 -msgid "XMPP/IM" +#: ../../include/nav.php:184 +msgid "Mark all grid notifications seen" msgstr "" -#: ../../include/network.php:2209 -msgid "MySpace" +#: ../../include/nav.php:186 +msgid "Channel home" msgstr "" -#: ../../include/page_widgets.php:7 -msgid "New Page" +#: ../../include/nav.php:187 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/page_widgets.php:46 -msgid "Title" +#: ../../include/nav.php:193 +msgid "Notices" msgstr "" -#: ../../include/zot.php:697 -msgid "Invalid data packet" +#: ../../include/nav.php:193 +msgid "Notifications" msgstr "" -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" +#: ../../include/nav.php:194 +msgid "See all notifications" msgstr "" -#: ../../include/zot.php:2326 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/nav.php:197 +msgid "Private mail" msgstr "" -#: ../../include/zot.php:3703 -msgid "invalid target signature" +#: ../../include/nav.php:198 +msgid "See all private messages" msgstr "" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" +#: ../../include/nav.php:199 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" +#: ../../include/nav.php:200 ../../include/widgets.php:667 +msgid "Inbox" msgstr "" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" +#: ../../include/nav.php:201 ../../include/widgets.php:672 +msgid "Outbox" msgstr "" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" +#: ../../include/nav.php:202 ../../include/widgets.php:677 +msgid "New Message" msgstr "" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " +#: ../../include/nav.php:205 +msgid "Event Calendar" msgstr "" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." +#: ../../include/nav.php:206 +msgid "See all events" msgstr "" -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" +#: ../../include/nav.php:207 +msgid "Mark all events seen" msgstr "" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" +#: ../../include/nav.php:210 +msgid "Manage Your Channels" msgstr "" -#: ../../include/bbcode.php:346 -msgid "spoiler" +#: ../../include/nav.php:212 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" +#: ../../include/nav.php:220 ../../include/widgets.php:1524 +msgid "Admin" msgstr "" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" +#: ../../include/nav.php:220 +msgid "Site Setup and Configuration" msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../include/nav.php:251 ../../include/conversation.php:855 +msgid "Loading..." msgstr "" -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" +#: ../../include/nav.php:256 +msgid "@name, #tag, ?doc, content" msgstr "" -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" +#: ../../include/nav.php:257 +msgid "Please wait..." msgstr "" -#: ../../include/js_strings.php:10 +#: ../../include/bookmarks.php:35 #, php-format -msgid "%s collapse" +msgid "%1$s's bookmarks" msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" msgstr "" -#: ../../include/js_strings.php:13 -msgid "everybody" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" +#: ../../include/event.php:814 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" +#: ../../include/event.php:1014 +msgid "Not specified" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../include/event.php:1015 +msgid "Needs Action" msgstr "" -#: ../../include/js_strings.php:17 -msgid "close all" +#: ../../include/event.php:1016 +msgid "Completed" msgstr "" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" +#: ../../include/event.php:1017 +msgid "In Process" msgstr "" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" +#: ../../include/event.php:1018 +msgid "Cancelled" msgstr "" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" msgstr "" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" +#: ../../include/group.php:289 +msgid "edit" msgstr "" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" +#: ../../include/group.php:312 +msgid "Edit group" msgstr "" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" +#: ../../include/group.php:313 +msgid "Add privacy group" msgstr "" -#: ../../include/js_strings.php:29 -msgid "ago" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" msgstr "" -#: ../../include/js_strings.php:30 -msgid "from now" +#: ../../include/group.php:316 ../../include/widgets.php:282 +msgid "add" msgstr "" -#: ../../include/js_strings.php:31 -msgid "less than a minute" +#: ../../include/page_widgets.php:7 +msgid "New Page" msgstr "" -#: ../../include/js_strings.php:32 -msgid "about a minute" +#: ../../include/page_widgets.php:46 +msgid "Title" msgstr "" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/js_strings.php:34 -msgid "about an hour" +#: ../../include/channel.php:67 +msgid "Empty name" msgstr "" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" +#: ../../include/channel.php:70 +msgid "Name too long" msgstr "" -#: ../../include/js_strings.php:36 -msgid "a day" +#: ../../include/channel.php:181 +msgid "No account identifier" msgstr "" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" +#: ../../include/channel.php:193 +msgid "Nickname is required." msgstr "" -#: ../../include/js_strings.php:38 -msgid "about a month" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/js_strings.php:40 -msgid "about a year" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" +#: ../../include/channel.php:341 +msgid "Default Profile" msgstr "" -#: ../../include/js_strings.php:42 -msgid " " +#: ../../include/channel.php:813 +msgid "Requested channel is not available." msgstr "" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" +#: ../../include/channel.php:960 +msgid "Create New Profile" msgstr "" -#: ../../include/js_strings.php:45 ../../include/text.php:1241 -msgid "January" +#: ../../include/channel.php:980 +msgid "Visible to everybody" msgstr "" -#: ../../include/js_strings.php:46 ../../include/text.php:1241 -msgid "February" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" msgstr "" -#: ../../include/js_strings.php:47 ../../include/text.php:1241 -msgid "March" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" msgstr "" -#: ../../include/js_strings.php:48 ../../include/text.php:1241 -msgid "April" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" msgstr "" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" +#: ../../include/channel.php:1056 +msgid "Online Now" msgstr "" -#: ../../include/js_strings.php:50 ../../include/text.php:1241 -msgid "June" +#: ../../include/channel.php:1171 +msgid "Like this channel" msgstr "" -#: ../../include/js_strings.php:51 ../../include/text.php:1241 -msgid "July" +#: ../../include/channel.php:1195 +msgid "j F, Y" msgstr "" -#: ../../include/js_strings.php:52 ../../include/text.php:1241 -msgid "August" +#: ../../include/channel.php:1196 +msgid "j F" msgstr "" -#: ../../include/js_strings.php:53 ../../include/text.php:1241 -msgid "September" +#: ../../include/channel.php:1203 +msgid "Birthday:" msgstr "" -#: ../../include/js_strings.php:54 ../../include/text.php:1241 -msgid "October" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: ../../include/js_strings.php:55 ../../include/text.php:1241 -msgid "November" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" msgstr "" -#: ../../include/js_strings.php:56 ../../include/text.php:1241 -msgid "December" +#: ../../include/channel.php:1225 +msgid "Tags:" msgstr "" -#: ../../include/js_strings.php:57 -msgid "Jan" +#: ../../include/channel.php:1227 +msgid "Political Views:" msgstr "" -#: ../../include/js_strings.php:58 -msgid "Feb" +#: ../../include/channel.php:1229 +msgid "Religion:" msgstr "" -#: ../../include/js_strings.php:59 -msgid "Mar" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/js_strings.php:60 -msgid "Apr" +#: ../../include/channel.php:1235 +msgid "Likes:" msgstr "" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" +#: ../../include/channel.php:1237 +msgid "Dislikes:" msgstr "" -#: ../../include/js_strings.php:62 -msgid "Jun" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/js_strings.php:63 -msgid "Jul" +#: ../../include/channel.php:1241 +msgid "My other channels:" msgstr "" -#: ../../include/js_strings.php:64 -msgid "Aug" +#: ../../include/channel.php:1243 +msgid "Musical interests:" msgstr "" -#: ../../include/js_strings.php:65 -msgid "Sep" +#: ../../include/channel.php:1245 +msgid "Books, literature:" msgstr "" -#: ../../include/js_strings.php:66 -msgid "Oct" +#: ../../include/channel.php:1247 +msgid "Television:" msgstr "" -#: ../../include/js_strings.php:67 -msgid "Nov" +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/js_strings.php:68 -msgid "Dec" +#: ../../include/channel.php:1251 +msgid "Love/Romance:" msgstr "" -#: ../../include/js_strings.php:69 ../../include/text.php:1237 -msgid "Sunday" +#: ../../include/channel.php:1253 +msgid "Work/employment:" msgstr "" -#: ../../include/js_strings.php:70 ../../include/text.php:1237 -msgid "Monday" +#: ../../include/channel.php:1255 +msgid "School/education:" msgstr "" -#: ../../include/js_strings.php:71 ../../include/text.php:1237 -msgid "Tuesday" +#: ../../include/channel.php:1276 +msgid "Like this thing" msgstr "" -#: ../../include/js_strings.php:72 ../../include/text.php:1237 -msgid "Wednesday" +#: ../../include/network.php:704 +msgid "view full size" msgstr "" -#: ../../include/js_strings.php:73 ../../include/text.php:1237 -msgid "Thursday" +#: ../../include/network.php:1935 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" msgstr "" -#: ../../include/js_strings.php:74 ../../include/text.php:1237 -msgid "Friday" +#: ../../include/network.php:1949 +msgid "No Subject" msgstr "" -#: ../../include/js_strings.php:75 ../../include/text.php:1237 -msgid "Saturday" +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" msgstr "" -#: ../../include/js_strings.php:76 -msgid "Sun" +#: ../../include/network.php:2205 +msgid "OStatus" msgstr "" -#: ../../include/js_strings.php:77 -msgid "Mon" +#: ../../include/network.php:2206 +msgid "GNU-Social" msgstr "" -#: ../../include/js_strings.php:78 -msgid "Tue" +#: ../../include/network.php:2207 +msgid "RSS/Atom" msgstr "" -#: ../../include/js_strings.php:79 -msgid "Wed" +#: ../../include/network.php:2209 +msgid "Diaspora" msgstr "" -#: ../../include/js_strings.php:80 -msgid "Thu" +#: ../../include/network.php:2210 +msgid "Facebook" msgstr "" -#: ../../include/js_strings.php:81 -msgid "Fri" +#: ../../include/network.php:2211 +msgid "Zot" msgstr "" -#: ../../include/js_strings.php:82 -msgid "Sat" +#: ../../include/network.php:2212 +msgid "LinkedIn" msgstr "" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" +#: ../../include/network.php:2213 +msgid "XMPP/IM" msgstr "" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" +#: ../../include/network.php:2214 +msgid "MySpace" msgstr "" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" msgstr "" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" msgstr "" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" msgstr "" -#: ../../include/api.php:1327 -msgid "Public Timeline" +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" msgstr "" -#: ../../include/conversation.php:204 +#: ../../include/js_strings.php:9 #, php-format -msgid "%1$s is now connected with %2$s" +msgid "%s expand" msgstr "" -#: ../../include/conversation.php:239 +#: ../../include/js_strings.php:10 #, php-format -msgid "%1$s poked %2$s" +msgid "%s collapse" msgstr "" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" +#: ../../include/js_strings.php:11 +msgid "Password too short" msgstr "" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" msgstr "" -#: ../../include/conversation.php:713 -msgid "Categories:" +#: ../../include/js_strings.php:13 +msgid "everybody" msgstr "" -#: ../../include/conversation.php:714 -msgid "Filed under:" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" msgstr "" -#: ../../include/conversation.php:741 -msgid "View in context" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" msgstr "" -#: ../../include/conversation.php:850 -msgid "remove" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" -#: ../../include/conversation.php:951 -msgid "View Source" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" msgstr "" -#: ../../include/conversation.php:952 -msgid "Follow Thread" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" msgstr "" -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" msgstr "" -#: ../../include/conversation.php:958 -msgid "Activity/Posts" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" msgstr "" -#: ../../include/conversation.php:960 -msgid "Edit Connection" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../include/conversation.php:961 -msgid "Message" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" msgstr "" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." +#: ../../include/js_strings.php:29 +msgid "ago" msgstr "" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "" -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "" -#: ../../include/conversation.php:1090 -msgid "and" +#: ../../include/js_strings.php:32 +msgid "about a minute" msgstr "" -#: ../../include/conversation.php:1093 +#: ../../include/js_strings.php:33 #, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" +msgid "%d minutes" +msgstr "" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." +#: ../../include/js_strings.php:34 +msgid "about an hour" msgstr "" -#: ../../include/conversation.php:1094 +#: ../../include/js_strings.php:35 #, php-format -msgid "%s don't like this." +msgid "about %d hours" msgstr "" -#: ../../include/conversation.php:1133 -msgid "Set your location" +#: ../../include/js_strings.php:36 +msgid "a day" msgstr "" -#: ../../include/conversation.php:1134 -msgid "Clear browser location" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" msgstr "" -#: ../../include/conversation.php:1182 -msgid "Tag term:" +#: ../../include/js_strings.php:38 +msgid "about a month" msgstr "" -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" msgstr "" -#: ../../include/conversation.php:1221 -msgid "Page link name" +#: ../../include/js_strings.php:40 +msgid "about a year" msgstr "" -#: ../../include/conversation.php:1224 -msgid "Post as" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" msgstr "" -#: ../../include/conversation.php:1238 -msgid "Toggle voting" +#: ../../include/js_strings.php:42 +msgid " " msgstr "" -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" msgstr "" -#: ../../include/conversation.php:1269 -msgid "Set publish date" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" msgstr "" -#: ../../include/conversation.php:1518 -msgid "Discover" +#: ../../include/js_strings.php:57 +msgid "Jan" msgstr "" -#: ../../include/conversation.php:1521 -msgid "Imported public streams" +#: ../../include/js_strings.php:58 +msgid "Feb" msgstr "" -#: ../../include/conversation.php:1526 -msgid "Commented Order" +#: ../../include/js_strings.php:59 +msgid "Mar" msgstr "" -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" +#: ../../include/js_strings.php:60 +msgid "Apr" msgstr "" -#: ../../include/conversation.php:1533 -msgid "Posted Order" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" msgstr "" -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" +#: ../../include/js_strings.php:62 +msgid "Jun" msgstr "" -#: ../../include/conversation.php:1544 -msgid "Posts that mention or involve you" +#: ../../include/js_strings.php:63 +msgid "Jul" msgstr "" -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" +#: ../../include/js_strings.php:64 +msgid "Aug" msgstr "" -#: ../../include/conversation.php:1559 -msgid "Starred" +#: ../../include/js_strings.php:65 +msgid "Sep" msgstr "" -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" +#: ../../include/js_strings.php:66 +msgid "Oct" msgstr "" -#: ../../include/conversation.php:1569 -msgid "Spam" +#: ../../include/js_strings.php:67 +msgid "Nov" msgstr "" -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" +#: ../../include/js_strings.php:68 +msgid "Dec" msgstr "" -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" +#: ../../include/js_strings.php:76 +msgid "Sun" msgstr "" -#: ../../include/conversation.php:1638 -msgid "About" +#: ../../include/js_strings.php:77 +msgid "Mon" msgstr "" -#: ../../include/conversation.php:1641 -msgid "Profile Details" +#: ../../include/js_strings.php:78 +msgid "Tue" msgstr "" -#: ../../include/conversation.php:1657 -msgid "Files and Storage" +#: ../../include/js_strings.php:79 +msgid "Wed" msgstr "" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:850 -msgid "Chatrooms" +#: ../../include/js_strings.php:80 +msgid "Thu" msgstr "" -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" +#: ../../include/js_strings.php:81 +msgid "Fri" msgstr "" -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" +#: ../../include/js_strings.php:82 +msgid "Sat" msgstr "" -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" msgstr "" -#: ../../include/follow.php:32 -msgid "Channel location missing." +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" msgstr "" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" msgstr "" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" msgstr "" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." +#: ../../include/security.php:109 +msgid "guest:" msgstr "" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." +#: ../../include/security.php:527 +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/follow.php:210 -msgid "Cannot connect to yourself." +#: ../../include/account.php:28 +msgid "Not a valid email address" msgstr "" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/permissions.php:29 -msgid "Can view my normal stream and posts" +#: ../../include/account.php:68 +msgid "An invitation is required." msgstr "" -#: ../../include/permissions.php:33 -msgid "Can view my webpages" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/permissions.php:37 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/account.php:122 +msgid "Please enter the required information." msgstr "" -#: ../../include/permissions.php:40 -msgid "Can like/dislike stuff" +#: ../../include/account.php:189 +msgid "Failed to store account information." msgstr "" -#: ../../include/permissions.php:40 -msgid "Profiles and things other than posts/comments" +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/permissions.php:42 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/permissions.php:42 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/account.php:339 +msgid "your registration password" msgstr "" -#: ../../include/permissions.php:43 -msgid "Can chat with me (when available)" +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/permissions.php:44 -msgid "Can write to my file storage and photos" +#: ../../include/account.php:414 +msgid "Account approved." msgstr "" -#: ../../include/permissions.php:45 -msgid "Can edit my webpages" +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/permissions.php:47 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." msgstr "" -#: ../../include/permissions.php:49 -msgid "Can administer my channel resources" +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/permissions.php:49 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/activities.php:41 -msgid " and " +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" msgstr "" -#: ../../include/activities.php:49 -msgid "public profile" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" msgstr "" -#: ../../include/activities.php:58 +#: ../../include/bbcode.php:178 #, php-format -msgid "%1$s changed %2$s to “%3$s”" +msgid "Install %s element: " msgstr "" -#: ../../include/activities.php:59 +#: ../../include/bbcode.php:182 #, php-format -msgid "Visit %1$s's %2$s" +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." msgstr "" -#: ../../include/activities.php:62 +#: ../../include/bbcode.php:261 #, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" msgstr "" -#: ../../include/attach.php:500 -msgid "No source file." +#: ../../include/bbcode.php:346 +msgid "spoiler" msgstr "" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" +#: ../../include/bbcode.php:619 ../../include/wiki.php:525 +msgid "Different viewers will see this text differently" msgstr "" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" msgstr "" -#: ../../include/attach.php:675 +#: ../../include/conversation.php:204 #, php-format -msgid "File exceeds size limit of %d" +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/attach.php:689 +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:694 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/conversation.php:713 +msgid "Categories:" msgstr "" -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/conversation.php:714 +msgid "Filed under:" msgstr "" -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." +#: ../../include/conversation.php:741 +msgid "View in context" msgstr "" -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" +#: ../../include/conversation.php:851 +msgid "remove" msgstr "" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" msgstr "" -#: ../../include/attach.php:1026 -msgid "Path not found." +#: ../../include/conversation.php:952 +msgid "View Source" msgstr "" -#: ../../include/attach.php:1084 -msgid "mkdir failed." +#: ../../include/conversation.php:953 +msgid "Follow Thread" msgstr "" -#: ../../include/attach.php:1088 -msgid "database storage failed." +#: ../../include/conversation.php:954 +msgid "Unfollow Thread" msgstr "" -#: ../../include/attach.php:1136 -msgid "Empty path" +#: ../../include/conversation.php:959 +msgid "Activity/Posts" msgstr "" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" +#: ../../include/conversation.php:961 +msgid "Edit Connection" msgstr "" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" +#: ../../include/conversation.php:962 +msgid "Message" msgstr "" -#: ../../include/taxonomy.php:293 -msgid "Keywords" +#: ../../include/conversation.php:1079 +#, php-format +msgid "%s likes this." msgstr "" -#: ../../include/taxonomy.php:314 -msgid "have" +#: ../../include/conversation.php:1079 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "" +#: ../../include/conversation.php:1083 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "" +#: ../../include/conversation.php:1085 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/taxonomy.php:315 -msgid "wants" +#: ../../include/conversation.php:1091 +msgid "and" msgstr "" -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "" +#: ../../include/conversation.php:1094 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" -#: ../../include/taxonomy.php:317 -msgid "dislikes" +#: ../../include/conversation.php:1095 +#, php-format +msgid "%s like this." msgstr "" -#: ../../include/auth.php:148 -msgid "Logged out." +#: ../../include/conversation.php:1095 +#, php-format +msgid "%s don't like this." msgstr "" -#: ../../include/auth.php:275 -msgid "Failed authentication" +#: ../../include/conversation.php:1134 +msgid "Set your location" msgstr "" -#: ../../include/auth.php:286 -msgid "Login failed." +#: ../../include/conversation.php:1135 +msgid "Clear browser location" msgstr "" -#: ../../include/text.php:404 -msgid "prev" +#: ../../include/conversation.php:1183 +msgid "Tag term:" msgstr "" -#: ../../include/text.php:406 -msgid "first" +#: ../../include/conversation.php:1184 +msgid "Where are you right now?" msgstr "" -#: ../../include/text.php:435 -msgid "last" +#: ../../include/conversation.php:1222 +msgid "Page link name" msgstr "" -#: ../../include/text.php:438 -msgid "next" +#: ../../include/conversation.php:1225 +msgid "Post as" msgstr "" -#: ../../include/text.php:448 -msgid "older" +#: ../../include/conversation.php:1239 +msgid "Toggle voting" msgstr "" -#: ../../include/text.php:450 -msgid "newer" +#: ../../include/conversation.php:1247 +msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/text.php:843 -msgid "No connections" +#: ../../include/conversation.php:1274 +msgid "Set publish date" msgstr "" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" +#: ../../include/conversation.php:1523 +msgid "Discover" msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" +#: ../../include/conversation.php:1526 +msgid "Imported public streams" msgstr "" -#: ../../include/text.php:1019 -msgid "ping" +#: ../../include/conversation.php:1531 +msgid "Commented Order" msgstr "" -#: ../../include/text.php:1019 -msgid "pinged" +#: ../../include/conversation.php:1534 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/text.php:1020 -msgid "prod" +#: ../../include/conversation.php:1538 +msgid "Posted Order" msgstr "" -#: ../../include/text.php:1020 -msgid "prodded" +#: ../../include/conversation.php:1541 +msgid "Sort by Post Date" msgstr "" -#: ../../include/text.php:1021 -msgid "slap" +#: ../../include/conversation.php:1549 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/text.php:1021 -msgid "slapped" +#: ../../include/conversation.php:1558 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/text.php:1022 -msgid "finger" +#: ../../include/conversation.php:1564 +msgid "Starred" msgstr "" -#: ../../include/text.php:1022 -msgid "fingered" +#: ../../include/conversation.php:1567 +msgid "Favourite Posts" msgstr "" -#: ../../include/text.php:1023 -msgid "rebuff" +#: ../../include/conversation.php:1574 +msgid "Spam" msgstr "" -#: ../../include/text.php:1023 -msgid "rebuffed" +#: ../../include/conversation.php:1577 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/text.php:1035 -msgid "happy" +#: ../../include/conversation.php:1634 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/text.php:1036 -msgid "sad" +#: ../../include/conversation.php:1643 +msgid "About" msgstr "" -#: ../../include/text.php:1037 -msgid "mellow" +#: ../../include/conversation.php:1646 +msgid "Profile Details" msgstr "" -#: ../../include/text.php:1038 -msgid "tired" +#: ../../include/conversation.php:1662 +msgid "Files and Storage" msgstr "" -#: ../../include/text.php:1039 -msgid "perky" +#: ../../include/conversation.php:1682 ../../include/conversation.php:1685 +#: ../../include/widgets.php:850 +msgid "Chatrooms" msgstr "" -#: ../../include/text.php:1040 -msgid "angry" +#: ../../include/conversation.php:1698 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/text.php:1041 -msgid "stupefied" +#: ../../include/conversation.php:1708 +msgid "Manage Webpages" msgstr "" -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "" +#: ../../include/conversation.php:1773 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1043 -msgid "interested" -msgstr "" +#: ../../include/conversation.php:1776 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "" +#: ../../include/conversation.php:1779 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "" +#: ../../include/conversation.php:1782 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1046 -msgid "alive" -msgstr "" +#: ../../include/conversation.php:1785 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1047 -msgid "annoyed" +#: ../../include/conversation.php:1788 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/oembed.php:340 +msgid "Embedded content" msgstr "" -#: ../../include/text.php:1048 -msgid "anxious" +#: ../../include/oembed.php:349 +msgid "Embedding disabled" msgstr "" -#: ../../include/text.php:1049 -msgid "cranky" +#: ../../include/activities.php:41 +msgid " and " msgstr "" -#: ../../include/text.php:1050 -msgid "disturbed" +#: ../../include/activities.php:49 +msgid "public profile" msgstr "" -#: ../../include/text.php:1051 -msgid "frustrated" +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/text.php:1052 -msgid "depressed" +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/text.php:1053 -msgid "motivated" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/text.php:1054 -msgid "relaxed" +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/contact_widgets.php:91 +msgid "Categories" msgstr "" -#: ../../include/text.php:1055 -msgid "surprised" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" msgstr "" -#: ../../include/text.php:1241 -msgid "May" +#: ../../include/taxonomy.php:293 +msgid "Keywords" msgstr "" -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" +#: ../../include/taxonomy.php:314 +msgid "have" msgstr "" -#: ../../include/text.php:1324 -msgid "unknown" +#: ../../include/taxonomy.php:314 +msgid "has" msgstr "" -#: ../../include/text.php:1360 -msgid "remove category" +#: ../../include/taxonomy.php:315 +msgid "want" msgstr "" -#: ../../include/text.php:1437 -msgid "remove from file" +#: ../../include/taxonomy.php:315 +msgid "wants" msgstr "" -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" +#: ../../include/taxonomy.php:316 +msgid "likes" msgstr "" -#: ../../include/text.php:1742 -msgid "Page layout" +#: ../../include/taxonomy.php:317 +msgid "dislikes" msgstr "" -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" +#: ../../include/permissions.php:29 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/text.php:1784 -msgid "Page content type" +#: ../../include/permissions.php:33 +msgid "Can view my webpages" msgstr "" -#: ../../include/text.php:1817 -msgid "Select an alternate language" +#: ../../include/permissions.php:37 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/text.php:1934 -msgid "activity" +#: ../../include/permissions.php:40 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/text.php:2235 -msgid "Design Tools" +#: ../../include/permissions.php:40 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/text.php:2241 -msgid "Pages" +#: ../../include/permissions.php:42 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/text.php:2263 -msgid "Import website..." +#: ../../include/permissions.php:42 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/text.php:2264 -msgid "Select folder to import" +#: ../../include/permissions.php:43 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/text.php:2265 -msgid "Import from a zipped folder:" +#: ../../include/permissions.php:44 +msgid "Can write to my file storage and photos" msgstr "" -#: ../../include/text.php:2266 -msgid "Import from cloud files:" +#: ../../include/permissions.php:45 +msgid "Can edit my webpages" msgstr "" -#: ../../include/text.php:2267 -msgid "/cloud/channel/path/to/folder" +#: ../../include/permissions.php:47 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/text.php:2268 -msgid "Enter path to website files" +#: ../../include/permissions.php:49 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/text.php:2269 -msgid "Select folder" +#: ../../include/permissions.php:49 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" #: ../../include/widgets.php:103 @@ -9575,6 +9619,68 @@ msgstr "" msgid "Plugin Features" msgstr "" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../include/attach.php:689 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:1026 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:1084 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:1088 +msgid "database storage failed." +msgstr "" + +#: ../../include/attach.php:1136 +msgid "Empty path" +msgstr "" + #: ../../include/contact_widgets.php:11 #, php-format msgid "%d invitation available" @@ -9653,158 +9759,46 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "" - -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "" - -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "" - -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "" - -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "" - -#: ../../include/channel.php:821 -msgid "Requested channel is not available." -msgstr "" - -#: ../../include/channel.php:968 -msgid "Create New Profile" -msgstr "" - -#: ../../include/channel.php:988 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/channel.php:1061 ../../include/channel.php:1173 -msgid "Gender:" -msgstr "" - -#: ../../include/channel.php:1062 ../../include/channel.php:1217 -msgid "Status:" -msgstr "" - -#: ../../include/channel.php:1063 ../../include/channel.php:1228 -msgid "Homepage:" -msgstr "" - -#: ../../include/channel.php:1064 -msgid "Online Now" +#: ../../include/auth.php:148 +msgid "Logged out." msgstr "" -#: ../../include/channel.php:1178 -msgid "Like this channel" +#: ../../include/auth.php:275 +msgid "Failed authentication" msgstr "" -#: ../../include/channel.php:1202 -msgid "j F, Y" +#: ../../include/auth.php:286 +msgid "Login failed." msgstr "" -#: ../../include/channel.php:1203 -msgid "j F" +#: ../../include/connections.php:95 +msgid "New window" msgstr "" -#: ../../include/channel.php:1210 -msgid "Birthday:" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/channel.php:1223 +#: ../../include/connections.php:214 #, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/channel.php:1226 -msgid "Sexual Preference:" -msgstr "" - -#: ../../include/channel.php:1232 -msgid "Tags:" -msgstr "" - -#: ../../include/channel.php:1234 -msgid "Political Views:" -msgstr "" - -#: ../../include/channel.php:1236 -msgid "Religion:" -msgstr "" - -#: ../../include/channel.php:1240 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/channel.php:1242 -msgid "Likes:" -msgstr "" - -#: ../../include/channel.php:1244 -msgid "Dislikes:" -msgstr "" - -#: ../../include/channel.php:1246 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/channel.php:1248 -msgid "My other channels:" -msgstr "" - -#: ../../include/channel.php:1250 -msgid "Musical interests:" -msgstr "" - -#: ../../include/channel.php:1252 -msgid "Books, literature:" -msgstr "" - -#: ../../include/channel.php:1254 -msgid "Television:" -msgstr "" - -#: ../../include/channel.php:1256 -msgid "Film/dance/culture/entertainment:" +msgid "User '%s' deleted" msgstr "" -#: ../../include/channel.php:1258 -msgid "Love/Romance:" +#: ../../include/zot.php:697 +msgid "Invalid data packet" msgstr "" -#: ../../include/channel.php:1260 -msgid "Work/employment:" +#: ../../include/zot.php:713 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/channel.php:1262 -msgid "School/education:" +#: ../../include/zot.php:2326 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/channel.php:1283 -msgid "Like this thing" +#: ../../include/zot.php:3703 +msgid "invalid target signature" msgstr "" #: ../../view/theme/redbasic/php/config.php:82 @@ -9943,66 +9937,66 @@ msgstr "" msgid "Set size of followup author photos" msgstr "" -#: ../../boot.php:1163 +#: ../../boot.php:1169 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "" -#: ../../boot.php:1163 +#: ../../boot.php:1169 msgctxt "opensearch" msgid "$Projectname" msgstr "" -#: ../../boot.php:1481 +#: ../../boot.php:1487 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1484 +#: ../../boot.php:1490 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1688 +#: ../../boot.php:1694 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "" -#: ../../boot.php:1709 +#: ../../boot.php:1715 msgid "Login/Email" msgstr "" -#: ../../boot.php:1710 +#: ../../boot.php:1716 msgid "Password" msgstr "" -#: ../../boot.php:1711 +#: ../../boot.php:1717 msgid "Remember me" msgstr "" -#: ../../boot.php:1714 +#: ../../boot.php:1720 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2280 +#: ../../boot.php:2286 msgid "toggle mobile" msgstr "" -#: ../../boot.php:2435 +#: ../../boot.php:2441 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2438 +#: ../../boot.php:2444 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "" -#: ../../boot.php:2542 +#: ../../boot.php:2548 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2546 +#: ../../boot.php:2552 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "" -- cgit v1.2.3 From 165f442d70d5ef3e025f72ba38f5a423d1245736 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 12 Aug 2016 18:17:39 -0700 Subject: pending flag not being reset when using autoperms from custom role --- include/zot.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/zot.php b/include/zot.php index 3a1986e3b..01b29f74b 100644 --- a/include/zot.php +++ b/include/zot.php @@ -457,11 +457,13 @@ function zot_refresh($them, $channel = null, $force = false) { // new connection $my_perms = null; + $automatic = false; $role = get_pconfig($channel['channel_id'],'system','permissions_role'); if($role) { $xx = \Zotlabs\Access\PermissionRoles::role_perms($role); if($xx['perms_auto']) { + $automatic = true; $default_perms = $xx['perms_connect']; $my_perms = \Zotlabs\Access\Permissions::FilledPerms($default_perms); } @@ -470,6 +472,7 @@ function zot_refresh($them, $channel = null, $force = false) { if(! $my_perms) { $m = \Zotlabs\Access\Permissions::FilledAutoperms($channel['channel_id']); if($m) { + $automatic = true; $my_perms = $m; } } @@ -496,7 +499,7 @@ function zot_refresh($them, $channel = null, $force = false) { dbesc(datetime_convert()), dbesc(datetime_convert()), dbesc($next_birthday), - intval(($default_perms) ? 0 : 1) + intval(($automatic) ? 0 : 1) ); if($y) { -- cgit v1.2.3 From 1b90e851f9e53924923d7110591caf50085236c2 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 13 Aug 2016 22:17:47 +0200 Subject: fix #480, enable bbcode autocomplete for photo comments and remove some redundant javascript --- view/js/main.js | 1 + view/js/mod_photos.js | 16 +--------------- view/tpl/comment_item.tpl | 1 + view/tpl/conv_item.tpl | 1 - 4 files changed, 3 insertions(+), 16 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index 21157bdfe..6fa4bf78a 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -635,6 +635,7 @@ function updateConvItems(mode,data) { $(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl?f=&n=1"); /* autocomplete bbcode */ $(".comment-edit-form textarea").bbco_autocomplete('bbcode'); + console.log('bla'); var bimgs = ((preloadImages) ? false : $(".wall-item-body img").not(function() { return this.complete; })); var bimgcount = bimgs.length; diff --git a/view/js/mod_photos.js b/view/js/mod_photos.js index e3df3ca68..cbc1d8fa1 100644 --- a/view/js/mod_photos.js +++ b/view/js/mod_photos.js @@ -7,21 +7,7 @@ $(document).ready(function() { $("#photo-edit-newtag").val('@' + data.name); }); - $('#id_body').bbco_autocomplete('bbcode'); - - $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() { - var selstr; - $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() { - selstr = $(this).text(); - $('#jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); - $('#jot-public').hide(); - }); - if(selstr === null) { - $('#jot-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); - $('#jot-public').show(); - } - }).trigger('change'); - + $('textarea').bbco_autocomplete('bbcode'); showHideBodyTextarea(); }); diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 74917d089..5920efafa 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -71,3 +71,4 @@
+
diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index 903a23eed..add80885b 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -225,7 +225,6 @@
{{$item.comment}}
-
{{/if}} -- cgit v1.2.3 From 6f0ac133cc18e7c6778b2100de5d3d9334fd4444 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 13 Aug 2016 22:27:53 +0200 Subject: remove js debugging --- view/js/main.js | 1 - 1 file changed, 1 deletion(-) diff --git a/view/js/main.js b/view/js/main.js index 6fa4bf78a..21157bdfe 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -635,7 +635,6 @@ function updateConvItems(mode,data) { $(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl?f=&n=1"); /* autocomplete bbcode */ $(".comment-edit-form textarea").bbco_autocomplete('bbcode'); - console.log('bla'); var bimgs = ((preloadImages) ? false : $(".wall-item-body img").not(function() { return this.complete; })); var bimgcount = bimgs.length; -- cgit v1.2.3 From 541d0dce90c1984bf37f75f213aac48a569d4f97 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 14 Aug 2016 11:31:00 +0200 Subject: btn/dropdown rendering issue --- view/tpl/profile_advanced.tpl | 54 ++++++++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 24 deletions(-) diff --git a/view/tpl/profile_advanced.tpl b/view/tpl/profile_advanced.tpl index 947bdd51c..59490ccc1 100755 --- a/view/tpl/profile_advanced.tpl +++ b/view/tpl/profile_advanced.tpl @@ -1,32 +1,38 @@
- - ',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.5",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.5",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.5",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); \ No newline at end of file +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a("#"===f?[]:f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"], input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(a>this.$items.length-1||a<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.7",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.7",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.7",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.7",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.7",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return e=a-d&&"bottom"},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); \ No newline at end of file -- cgit v1.2.3 From 993b182f811a6e7f3287c9554b00abd72517954d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 14 Aug 2016 12:12:37 +0200 Subject: fix javascript error if not logged in --- view/tpl/nav.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index c0e17d6b5..5be6d21bd 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -12,7 +12,7 @@ {{if $nav.help.6}} - {{/if}} @@ -56,7 +56,7 @@ {{if !$userinfo}} {{if $nav.loginmenu}}
{{/if}} -- cgit v1.2.3 From cb9ac6dd3435a429a58250d326ff76ca5f97398a Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 14 Aug 2016 06:46:48 -0400 Subject: Replace hardcoded button title in javascript to translatable text --- include/conversation.php | 2 ++ view/tpl/jot-header.tpl | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index de917c44e..567336646 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1194,6 +1194,8 @@ function status_editor($a, $x, $popup = false) { '$modalerrorlist' => t('Error getting album list'), '$modalerrorlink' => t('Error getting photo link'), '$modalerroralbum' => t('Error getting album'), + '$nocomment_enabled' => t('Comments enabled'), + '$nocomment_disabled' => t('Comments disabled'), )); $tpl = get_markup_template('jot.tpl'); diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 32d5cae03..3d38df0f0 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -375,12 +375,12 @@ function enableOnUser(){ if($('#jot-nocomment').val() > 0) { $('#jot-nocomment').val(0); $('#profile-nocomment, #profile-nocomment-sub').removeClass('fa-comments-o').addClass('fa-comments'); - $('#profile-nocomment-wrapper').attr('title', 'Comments enabled'); + $('#profile-nocomment-wrapper').attr('title', '{{$nocomment_enabled}}'); } else { $('#jot-nocomment').val(1); $('#profile-nocomment, #profile-nocomment-sub').removeClass('fa-comments').addClass('fa-comments-o'); - $('#profile-nocomment-wrapper').attr('title', 'Comments disabled'); + $('#profile-nocomment-wrapper').attr('title', '{{$nocomment_disabled}}'); } } -- cgit v1.2.3 From 229cc2ac431cdcef80cc45a42178fe7a1e4233e4 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 14 Aug 2016 06:55:02 -0400 Subject: Change text for submenu on small screens to be static toggle statement --- include/conversation.php | 1 + view/tpl/jot.tpl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/conversation.php b/include/conversation.php index 567336646..7d1473fe2 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1246,6 +1246,7 @@ function status_editor($a, $x, $popup = false) { '$feature_voting' => $feature_voting, '$consensus' => 0, '$nocommenttitle' => t('Disable comments'), + '$nocommenttitlesub' => t('Toggle comments'), '$feature_nocomment' => $feature_nocomment, '$nocomment' => 0, '$clearloc' => $clearloc, diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index bd615b1df..20357b66f 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -158,7 +158,7 @@
  •  {{$voting}}
  • {{/if}} {{if $feature_nocomment}} -
  •  {{$nocommenttitle}}
  • +
  •  {{$nocommenttitlesub}}
  • {{/if}} -- cgit v1.2.3 From 6868403383b1ab4684c63d30ac02f3a99e880be5 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 14 Aug 2016 13:34:52 -0400 Subject: Context help for settings/features page --- doc/context/en/settings/features/help.html | 12 ++++++++++++ include/features.php | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 doc/context/en/settings/features/help.html diff --git a/doc/context/en/settings/features/help.html b/doc/context/en/settings/features/help.html new file mode 100644 index 000000000..86e4f5dae --- /dev/null +++ b/doc/context/en/settings/features/help.html @@ -0,0 +1,12 @@ +
    +
    General
    +
    This page allows you to configure settings for the many additional features of Hubzilla.
    +
    General Features
    +
    General feature settings include options relevant to your channel, such as webpage and wiki hosting.
    +
    Post Composition Features
    +
    The post composition features provide extra options and capabilities when composing new posts.
    +
    Network and Stream Filtering
    +
    These settings modify features associated with filtering and controlling your view of incoming posts.
    +
    Post/Comment Tools
    +
    These provide additional tools for categorizing posts and allowing additional commenting methods such as emoji or community tagging.
    +
    \ No newline at end of file diff --git a/include/features.php b/include/features.php index f9001d7be..356de35a2 100644 --- a/include/features.php +++ b/include/features.php @@ -74,7 +74,7 @@ function get_features($filtered = true) { array('channel_sources', t('Channel Sources'), t('Automatically import channel content from other channels or feeds'),false,get_config('feature_lock','channel_sources')), array('content_encrypt', t('Even More Encryption'), t('Allow optional encryption of content end-to-end with a shared secret key'),false,get_config('feature_lock','content_encrypt')), array('consensus_tools', t('Enable Voting Tools'), t('Provide a class of post which others can vote on'),false,get_config('feature_lock','consensus_tools')), - array('disable_comments', t('Enable Disabling Comments'), t('Provide the option to disable comments for a post'),false,get_config('feature_lock','disable_comments')), + array('disable_comments', t('Disable Comments'), t('Provide the option to disable comments for a post'),false,get_config('feature_lock','disable_comments')), array('delayed_posting', t('Delayed Posting'), t('Allow posts to be published at a later date'),false,get_config('feature_lock','delayed_posting')), array('suppress_duplicates', t('Suppress Duplicate Posts/Comments'), t('Prevent posts with identical content to be published with less than two minutes in between submissions.'),true,get_config('feature_lock','suppress_duplicates')), -- cgit v1.2.3 From 000861da0dd68a94d67da15301eab7fd2df3cc1a Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 14 Aug 2016 18:22:18 -0700 Subject: event_store_event hook --- doc/hook/event_store_event.bb | 11 +++++++++++ doc/hooklist.bb | 3 +++ include/event.php | 7 +++++++ 3 files changed, 21 insertions(+) create mode 100644 doc/hook/event_store_event.bb diff --git a/doc/hook/event_store_event.bb b/doc/hook/event_store_event.bb new file mode 100644 index 000000000..7015a8322 --- /dev/null +++ b/doc/hook/event_store_event.bb @@ -0,0 +1,11 @@ +[h2]event_store_event[/h2] + +Called from event_store_event() when an event record is being stored. + +Hook info is an array + +'event' => the passed event details, ready for storage +'existing_event' => If the event already exists, a copy of the original event record from the database +'cancel' => false - set to true to cancel the operation. + + diff --git a/doc/hooklist.bb b/doc/hooklist.bb index 66ff1cf71..858a7d021 100644 --- a/doc/hooklist.bb +++ b/doc/hooklist.bb @@ -184,6 +184,9 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the [zrl=[baseurl]/help/hook/event_created]event_created[/zrl] called when an event record is created +[zrl=[baseurl]/help/hook/event_store_event]event_store_event[/zrl] + called when an event record is created or updated + [zrl=[baseurl]/help/hook/event_updated]event_updated[/zrl] called when an event record is modified diff --git a/include/event.php b/include/event.php index 3d650cd14..407736a23 100644 --- a/include/event.php +++ b/include/event.php @@ -343,6 +343,13 @@ function event_store_event($arr) { } } + $hook_info = [ 'event' => $arr, 'existing_event' => $existing_event, 'cancel' => false ]; + call_hooks('event_store_event',$hook_info); + if($hook_info['cancel']) + return false; + + $arr = $hook_info['event']; + $existing_event = $hook_info['existing_event']; if($existing_event) { -- cgit v1.2.3 From 8cbffdf0b44f4bc5a3588455cf31e3c83453af1b Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 14 Aug 2016 22:44:25 -0700 Subject: s/$rr/$rv/ --- boot.php | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/boot.php b/boot.php index d034749a2..19d64bd61 100755 --- a/boot.php +++ b/boot.php @@ -1583,13 +1583,13 @@ function fix_system_urls($oldurl, $newurl) { ); if($r) { - foreach($r as $rr) { - $channel_address = substr($rr['hubloc_addr'],0,strpos($rr['hubloc_addr'],'@')); + foreach($r as $rv) { + $channel_address = substr($rv['hubloc_addr'],0,strpos($rv['hubloc_addr'],'@')); // get the associated channel. If we don't have a local channel, do nothing for this entry. $c = q("select * from channel where channel_hash = '%s' limit 1", - dbesc($rr['hubloc_hash']) + dbesc($rv['hubloc_hash']) ); if(! $c) continue; @@ -1611,19 +1611,19 @@ function fix_system_urls($oldurl, $newurl) { // The xchan_url might point to another nomadic identity clone - $replace_xchan_url = ((strpos($rr['xchan_url'],$oldurl) !== false) ? true : false); + $replace_xchan_url = ((strpos($rv['xchan_url'],$oldurl) !== false) ? true : false); $x = q("update xchan set xchan_addr = '%s', xchan_url = '%s', xchan_connurl = '%s', xchan_follow = '%s', xchan_connpage = '%s', xchan_photo_l = '%s', xchan_photo_m = '%s', xchan_photo_s = '%s', xchan_photo_date = '%s' where xchan_hash = '%s'", dbesc($channel_address . '@' . $rhs), - dbesc(($replace_xchan_url) ? str_replace($oldurl,$newurl,$rr['xchan_url']) : $rr['xchan_url']), - dbesc(str_replace($oldurl,$newurl,$rr['xchan_connurl'])), - dbesc(str_replace($oldurl,$newurl,$rr['xchan_follow'])), - dbesc(str_replace($oldurl,$newurl,$rr['xchan_connpage'])), - dbesc(str_replace($oldurl,$newurl,$rr['xchan_photo_l'])), - dbesc(str_replace($oldurl,$newurl,$rr['xchan_photo_m'])), - dbesc(str_replace($oldurl,$newurl,$rr['xchan_photo_s'])), + dbesc(($replace_xchan_url) ? str_replace($oldurl,$newurl,$rv['xchan_url']) : $rv['xchan_url']), + dbesc(str_replace($oldurl,$newurl,$rv['xchan_connurl'])), + dbesc(str_replace($oldurl,$newurl,$rv['xchan_follow'])), + dbesc(str_replace($oldurl,$newurl,$rv['xchan_connpage'])), + dbesc(str_replace($oldurl,$newurl,$rv['xchan_photo_l'])), + dbesc(str_replace($oldurl,$newurl,$rv['xchan_photo_m'])), + dbesc(str_replace($oldurl,$newurl,$rv['xchan_photo_s'])), dbesc(datetime_convert()), - dbesc($rr['xchan_hash']) + dbesc($rv['xchan_hash']) ); $y = q("update hubloc set hubloc_addr = '%s', hubloc_url = '%s', hubloc_url_sig = '%s', hubloc_host = '%s', hubloc_callback = '%s' where hubloc_hash = '%s' and hubloc_url = '%s'", @@ -1632,13 +1632,13 @@ function fix_system_urls($oldurl, $newurl) { dbesc(base64url_encode(rsa_sign($newurl,$c[0]['channel_prvkey']))), dbesc($newhost), dbesc($newurl . '/post'), - dbesc($rr['xchan_hash']), + dbesc($rv['xchan_hash']), dbesc($oldurl) ); $z = q("update profile set photo = '%s', thumb = '%s' where uid = %d", - dbesc(str_replace($oldurl,$newurl,$rr['xchan_photo_l'])), - dbesc(str_replace($oldurl,$newurl,$rr['xchan_photo_m'])), + dbesc(str_replace($oldurl,$newurl,$rv['xchan_photo_l'])), + dbesc(str_replace($oldurl,$newurl,$rv['xchan_photo_m'])), intval($c[0]['channel_id']) ); @@ -1666,12 +1666,12 @@ function fix_system_urls($oldurl, $newurl) { ); if($r) { - foreach($r as $rr) { + foreach($r as $rv) { $x = q("update xchan set xchan_photo_l = '%s', xchan_photo_m = '%s', xchan_photo_s = '%s' where xchan_hash = '%s'", - dbesc(str_replace($oldurl,$newurl,$rr['xchan_photo_l'])), - dbesc(str_replace($oldurl,$newurl,$rr['xchan_photo_m'])), - dbesc(str_replace($oldurl,$newurl,$rr['xchan_photo_s'])), - dbesc($rr['xchan_hash']) + dbesc(str_replace($oldurl,$newurl,$rv['xchan_photo_l'])), + dbesc(str_replace($oldurl,$newurl,$rv['xchan_photo_m'])), + dbesc(str_replace($oldurl,$newurl,$rv['xchan_photo_s'])), + dbesc($rv['xchan_hash']) ); } } @@ -2029,8 +2029,8 @@ function load_contact_links($uid) { intval($uid) ); if($r) { - foreach($r as $rr){ - $ret[$rr['xchan_hash']] = $rr; + foreach($r as $rv){ + $ret[$rv['xchan_hash']] = $rv; } } else -- cgit v1.2.3 From dd8d20f089670294beedc9fc181a26e95ed76842 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 15 Aug 2016 18:52:27 +0200 Subject: implement groups in the acl select. please notice that selecting *custom selection* now sets an empty (public) acl. it was set to self before... --- view/js/acl.js | 79 +++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 62 insertions(+), 17 deletions(-) diff --git a/view/js/acl.js b/view/js/acl.js index 411190ac9..9e3acf8e1 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -13,6 +13,7 @@ function ACL(backend_url) { that.deny_gid = []; that.group_uids = []; + that.selected_id = ''; that.info = $("#acl-info"); that.list = $("#acl-list"); @@ -33,6 +34,10 @@ function ACL(backend_url) { that.acl_select.change(function(event) { var option = that.acl_select.val(); + if(option != 'public' && option != 'onlyme' && option != 'limited') { // selected group + that.on_showgroup(event); + } + if(option == 'public') { // public that.on_showall(event); } @@ -147,18 +152,33 @@ ACL.prototype.on_showall = function(event) { return true; // return true so that state changes from update_view() will be applied }; +ACL.prototype.on_showgroup = function(event) { + var xid = that.acl_select.children(":selected").val(); + that.selected_id = that.acl_select.children(":selected").attr('id'); + + // preventDefault() isn't called here as we want state changes from update_view() to be applied to the radiobutton + event.stopPropagation(); + + that.allow_cid = []; + that.allow_gid = [xid]; + that.deny_cid = []; + that.deny_gid = []; + + that.update_view(that.selected_id); + that.on_submit(); + + return true; // return true so that state changes from update_view() will be applied +}; + + ACL.prototype.on_showlimited = function(event) { // preventDefault() isn't called here as we want state changes from update_view() to be applied to the radiobutton event.stopPropagation(); - if(that.allow_cid.length === 0 && that.allow_gid.length === 0 && that.deny_cid.length === 0 && that.deny_gid.length === 0) { - that.allow_cid = [that.self[0]]; - } - - that.allow_cid = (that.allow_cid || []); - that.allow_gid = (that.allow_gid || []); - that.deny_cid = (that.deny_cid || []); - that.deny_gid = (that.deny_gid || []); + that.allow_cid = []; + that.allow_gid = []; + that.deny_cid = []; + that.deny_gid = []; that.update_view(event.target.value); that.on_submit(); @@ -237,7 +257,7 @@ ACL.prototype.set_allow = function(itemid) { if (that.deny_cid.indexOf(id)>=0) that.deny_cid.remove(id); break; } - that.update_view(); + that.update_view('limited'); }; ACL.prototype.set_deny = function(itemid) { @@ -261,16 +281,20 @@ ACL.prototype.set_deny = function(itemid) { if (that.allow_cid.indexOf(id)>=0) that.allow_cid.remove(id); break; } - that.update_view(); + that.update_view('limited'); }; ACL.prototype.update_select = function(set) { + if(set != 'public' && set != 'onlyme' && set != 'limited') { + $('#' + set).prop('selected', true ); + } that.showall.prop('selected', set === 'public'); that.onlyme.prop('selected', set === 'onlyme'); that.showlimited.prop('selected', set === 'limited'); }; ACL.prototype.update_view = function(value) { + if(that.form_id) { that.form_id.data('allow_cid', that.allow_cid); that.form_id.data('allow_gid', that.allow_gid); @@ -278,7 +302,7 @@ ACL.prototype.update_view = function(value) { that.form_id.data('deny_gid', that.deny_gid); } - if (that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0) { + if (that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value !== 'limited') { that.list.hide(); //hide acl-list that.info.show(); //show acl-info that.update_select('public'); @@ -289,6 +313,17 @@ ACL.prototype.update_view = function(value) { } + else if (that.allow_gid.length === 1 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value !== 'limited') { + that.list.hide(); //hide acl-list + that.info.hide(); //show acl-info + that.selected_id = that.allow_gid[0].substring(0,40); + that.update_select(that.selected_id); + + /* jot acl */ + $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('.profile-jot-net input').attr('disabled', 'disabled'); + } + // if value != 'onlyme' we should fall through this one else if (that.allow_gid.length === 0 && that.allow_cid.length === 1 && that.allow_cid[0] === that.self[0] && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value !== 'limited') { that.list.hide(); //hide acl-list @@ -306,10 +341,16 @@ ACL.prototype.update_view = function(value) { that.update_select('limited'); /* jot acl */ - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); - $('.profile-jot-net input').attr('disabled', 'disabled'); - + if(that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value === 'limited') { + $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('.profile-jot-net input').attr('disabled', false); + } + else { + $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('.profile-jot-net input').attr('disabled', 'disabled'); + } } + $("#acl-list-content .acl-list-item").each(function() { $(this).removeClass("groupshow grouphide"); }); @@ -384,9 +425,13 @@ ACL.prototype.populate = function(data) { $(data.items).each(function(){ html = "
    "+that.item_tpl+"
    "; html = html.format(this.photo, this.name, this.type, this.xid, '', this.self, this.link, this.taggable); - if (this.uids !== undefined) that.group_uids[this.xid] = this.uids; - if (this.self === 'abook-self') that.self[0] = this.xid; - //console.log(html); + if (this.uids !== undefined) { + that.group_uids[this.xid] = this.uids; + that.onlyme.before($('').attr('id', this.xid.substring(0,40)).attr('value', this.xid).text(this.name)); + } + if (this.self === 'abook-self') { + that.self[0] = this.xid; + } that.list_content.append(html); }); $("#acl-list-content .acl-list-item img[data-src]").each(function(i, el) { -- cgit v1.2.3 From 9e9e0ebb1cdbd79c3d984c26a5eed8636b56d606 Mon Sep 17 00:00:00 2001 From: Einer von Vielen Date: Mon, 15 Aug 2016 20:12:00 +0200 Subject: Merge dev with last changes of homeinstall script in master --- .homeinstall/README.md | 6 +++--- .homeinstall/hubzilla-setup.sh | 48 ++++-------------------------------------- 2 files changed, 7 insertions(+), 47 deletions(-) diff --git a/.homeinstall/README.md b/.homeinstall/README.md index c147f92bc..c0de914a1 100644 --- a/.homeinstall/README.md +++ b/.homeinstall/README.md @@ -27,9 +27,9 @@ Software + Register your own domain (for example at selfHOST) or a free subdomain (for example at freeDNS) + Log on to your new debian (server) - apt-get install git - - mkdir -p /var/www/html - - cd /var/www/html - - git clone https://github.com/redmatrix/hubzilla.git . + - mkdir -p /var/www + - cd /var/www + - git clone https://github.com/redmatrix/hubzilla.git html - cp .homeinstall/hubzilla-config.txt.template .homeinstall/hubzilla-config.txt - nano .homeinstall/hubzilla-config.txt - Enter your values there: db pass, domain, values for dyn DNS diff --git a/.homeinstall/hubzilla-setup.sh b/.homeinstall/hubzilla-setup.sh index b981666c5..6310bf47f 100755 --- a/.homeinstall/hubzilla-setup.sh +++ b/.homeinstall/hubzilla-setup.sh @@ -513,7 +513,7 @@ END fi # run letsencrypt.sh # - ./letsencrypt.sh --cron + ./letsencrypt.sh --cron --config $le_dir/config.sh } function configure_apache_for_https { @@ -668,45 +668,6 @@ function rewrite_to_https { service apache2 restart } - -function install_owncloud { - if [ -z "$owncloud" ] - then - print_info "Do not install owncloud" - return 0 - fi - if [ -f /etc/apt/sources.list.d/owncloud.list ] - then - print_info "owncloud is already installed and is left untouched" - return 0 - fi - print_info "installing owncloud..." - # add the repository key to apt - wget -nv https://download.owncloud.org/download/repositories/stable/Debian_8.0/Release.key -O Release.key - apt-key add - < Release.key - # add the repository and install from there - sh -c "echo 'deb http://download.owncloud.org/download/repositories/stable/Debian_8.0/ /' >> /etc/apt/sources.list.d/owncloud.list" - apt-get update - nocheck_install "owncloud" - chown -R www-data:www-data /var/www/owncloud/ - # set strong permissions - ocpath='/var/www/owncloud' - htuser='www-data' - htgroup='www-data' - rootuser='root' # On QNAP this is admin - find ${ocpath}/ -type f -print0 | xargs -0 chmod 0640 - find ${ocpath}/ -type d -print0 | xargs -0 chmod 0750 - chown -R ${rootuser}:${htgroup} ${ocpath}/ - chown -R ${htuser}:${htgroup} ${ocpath}/apps/ - chown -R ${htuser}:${htgroup} ${ocpath}/config/ - chown -R ${htuser}:${htgroup} ${ocpath}/data/ - chown -R ${htuser}:${htgroup} ${ocpath}/themes/ - chown ${rootuser}:${htgroup} ${ocpath}/.htaccess - chown ${rootuser}:${htgroup} ${ocpath}/data/.htaccess - chmod 0644 ${ocpath}/.htaccess - chmod 0644 ${ocpath}/data/.htaccess -} - # This will allways overwrite both config files # - internal disk # - external disk (LUKS + ext4) @@ -769,11 +730,11 @@ echo "#" >> /var/www/$hubzilladaily echo "echo \" \"" >> /var/www/$hubzilladaily echo "echo \"+++ \$(date) +++\"" >> /var/www/$hubzilladaily echo "echo \" \"" >> /var/www/$hubzilladaily -echo "echo \"\$(date) - renew certificat if 30 days old...\"" >> /var/www/$hubzilladaily -echo "bash /var/www/letsencrypt/letsencrypt.sh --cron" >> /var/www/$hubzilladaily +echo "echo \"\$(date) - renew certificat...\"" >> /var/www/$hubzilladaily +echo "bash $le_dir/letsencrypt.sh --cron --config $le_dir/config.sh" >> /var/www/$hubzilladaily echo "#" >> /var/www/$hubzilladaily echo "# stop hubzilla" >> /var/www/$hubzilladaily -echo "echo \"\$(date) - stoping apaache and mysql...\"" >> /var/www/$hubzilladaily +echo "echo \"\$(date) - stoping apache and mysql...\"" >> /var/www/$hubzilladaily echo "service apache2 stop" >> /var/www/$hubzilladaily echo "/etc/init.d/mysql stop # to avoid inconsistancies" >> /var/www/$hubzilladaily echo "#" >> /var/www/$hubzilladaily @@ -939,7 +900,6 @@ configure_apache_for_https check_https install_hubzilla rewrite_to_https -# install_owncloud # deprecated install_rsnapshot configure_cron_daily install_cryptosetup -- cgit v1.2.3 From 4facae674d0f0047339860cb7011d8a13b3e601d Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 15 Aug 2016 13:18:25 -0700 Subject: fix attached photo/file permissions on clones --- Zotlabs/Module/Item.php | 136 +----------------------------------------------- include/import.php | 4 ++ include/items.php | 134 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 140 insertions(+), 134 deletions(-) diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 8d6d75426..97b1e883d 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -626,9 +626,9 @@ class Item extends \Zotlabs\Web\Controller { */ if(! $preview) { - $this->fix_attached_photo_permissions($profile_uid,$owner_xchan['xchan_hash'],((strpos($body,'[/crypt]')) ? $_POST['media_str'] : $body),$str_contact_allow,$str_group_allow,$str_contact_deny,$str_group_deny); + fix_attached_photo_permissions($profile_uid,$owner_xchan['xchan_hash'],((strpos($body,'[/crypt]')) ? $_POST['media_str'] : $body),$str_contact_allow,$str_group_allow,$str_contact_deny,$str_group_deny); - $this->fix_attached_file_permissions($channel,$observer['xchan_hash'],((strpos($body,'[/crypt]')) ? $_POST['media_str'] : $body),$str_contact_allow,$str_group_allow,$str_contact_deny,$str_group_deny); + fix_attached_file_permissions($channel,$observer['xchan_hash'],((strpos($body,'[/crypt]')) ? $_POST['media_str'] : $body),$str_contact_allow,$str_group_allow,$str_contact_deny,$str_group_deny); } @@ -1090,138 +1090,6 @@ class Item extends \Zotlabs\Web\Controller { } - function fix_attached_photo_permissions($uid,$xchan_hash,$body, - $str_contact_allow,$str_group_allow,$str_contact_deny,$str_group_deny) { - - if(get_pconfig($uid,'system','force_public_uploads')) { - $str_contact_allow = $str_group_allow = $str_contact_deny = $str_group_deny = ''; - } - - $match = null; - // match img and zmg image links - if(preg_match_all("/\[[zi]mg(.*?)\](.*?)\[\/[zi]mg\]/",$body,$match)) { - $images = $match[2]; - if($images) { - foreach($images as $image) { - if(! stristr($image,z_root() . '/photo/')) - continue; - $image_uri = substr($image,strrpos($image,'/') + 1); - if(strpos($image_uri,'-') !== false) - $image_uri = substr($image_uri,0, strpos($image_uri,'-')); - if(strpos($image_uri,'.') !== false) - $image_uri = substr($image_uri,0, strpos($image_uri,'.')); - if(! strlen($image_uri)) - continue; - $srch = '<' . $xchan_hash . '>'; - - $r = q("select folder from attach where hash = '%s' and uid = %d limit 1", - dbesc($image_uri), - intval($uid) - ); - if($r && $r[0]['folder']) { - $f = q("select * from attach where hash = '%s' and is_dir = 1 and uid = %d limit 1", - dbesc($r[0]['folder']), - intval($uid) - ); - if(($f) && (($f[0]['allow_cid']) || ($f[0]['allow_gid']) || ($f[0]['deny_cid']) || ($f[0]['deny_gid']))) { - $str_contact_allow = $f[0]['allow_cid']; - $str_group_allow = $f[0]['allow_gid']; - $str_contact_deny = $f[0]['deny_cid']; - $str_group_deny = $f[0]['deny_gid']; - } - } - - $r = q("SELECT id FROM photo - WHERE allow_cid = '%s' AND allow_gid = '' AND deny_cid = '' AND deny_gid = '' - AND resource_id = '%s' AND uid = %d LIMIT 1", - dbesc($srch), - dbesc($image_uri), - intval($uid) - ); - - if($r) { - $r = q("UPDATE photo SET allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s' - WHERE resource_id = '%s' AND uid = %d ", - dbesc($str_contact_allow), - dbesc($str_group_allow), - dbesc($str_contact_deny), - dbesc($str_group_deny), - dbesc($image_uri), - intval($uid) - ); - - // also update the linked item (which is probably invisible) - - $r = q("select id from item - WHERE allow_cid = '%s' AND allow_gid = '' AND deny_cid = '' AND deny_gid = '' - AND resource_id = '%s' and resource_type = 'photo' AND uid = %d LIMIT 1", - dbesc($srch), - dbesc($image_uri), - intval($uid) - ); - if($r) { - $private = (($str_contact_allow || $str_group_allow || $str_contact_deny || $str_group_deny) ? true : false); - - $r = q("UPDATE item SET allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s', item_private = %d - WHERE id = %d AND uid = %d", - dbesc($str_contact_allow), - dbesc($str_group_allow), - dbesc($str_contact_deny), - dbesc($str_group_deny), - intval($private), - intval($r[0]['id']), - intval($uid) - ); - } - $r = q("select id from attach where hash = '%s' and uid = %d limit 1", - dbesc($image_uri), - intval($uid) - ); - if($r) { - q("update attach SET allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s' - WHERE id = %d AND uid = %d", - dbesc($str_contact_allow), - dbesc($str_group_allow), - dbesc($str_contact_deny), - dbesc($str_group_deny), - intval($r[0]['id']), - intval($uid) - ); - } - } - } - } - } - } - - - function fix_attached_file_permissions($channel,$observer_hash,$body, - $str_contact_allow,$str_group_allow,$str_contact_deny,$str_group_deny) { - - if(get_pconfig($channel['channel_id'],'system','force_public_uploads')) { - $str_contact_allow = $str_group_allow = $str_contact_deny = $str_group_deny = ''; - } - - $match = false; - - if(preg_match_all("/\[attachment\](.*?)\[\/attachment\]/",$body,$match)) { - $attaches = $match[1]; - if($attaches) { - foreach($attaches as $attach) { - $hash = substr($attach,0,strpos($attach,',')); - $rev = intval(substr($attach,strpos($attach,','))); - attach_store($channel,$observer_hash,$options = 'update', array( - 'hash' => $hash, - 'revision' => $rev, - 'allow_cid' => $str_contact_allow, - 'allow_gid' => $str_group_allow, - 'deny_cid' => $str_contact_deny, - 'deny_gid' => $str_group_deny - )); - } - } - } - } function item_check_service_class($channel_id,$iswebpage) { $ret = array('success' => false, 'message' => ''); diff --git a/include/import.php b/include/import.php index 5bbed828f..84881a420 100644 --- a/include/import.php +++ b/include/import.php @@ -629,6 +629,10 @@ function import_items($channel,$items,$sync = false,$relocate = null) { $item_result = item_store($item,$allow_code,$deliver); } + fix_attached_photo_permissions($channel['channel_id'],$item['author_xchan'],$item['body'],$item['allow_cid'],$item['allow_gid'],$item['deny_cid'],$item['deny_gid']); + + fix_attached_file_permissions($channel,$item['author_xchan'],$item['body'],$item['allow_cid'],$item['allow_gid'],$item['deny_cid'],$item['deny_gid']); + if($sync && $item['item_wall']) { // deliver singletons if we have any if($item_result && $item_result['success']) { diff --git a/include/items.php b/include/items.php index 5bd0b0968..0373dcb0d 100755 --- a/include/items.php +++ b/include/items.php @@ -4327,3 +4327,137 @@ function sync_an_item($channel_id,$item_id) { build_sync_packet($channel_d,array('item' => array(encode_item($sync_item[0],true)),'item_id' => $rid)); } } + + +function fix_attached_photo_permissions($uid,$xchan_hash,$body, + $str_contact_allow,$str_group_allow,$str_contact_deny,$str_group_deny) { + + if(get_pconfig($uid,'system','force_public_uploads')) { + $str_contact_allow = $str_group_allow = $str_contact_deny = $str_group_deny = ''; + } + + $match = null; + // match img and zmg image links + if(preg_match_all("/\[[zi]mg(.*?)\](.*?)\[\/[zi]mg\]/",$body,$match)) { + $images = $match[2]; + if($images) { + foreach($images as $image) { + if(! stristr($image,z_root() . '/photo/')) + continue; + $image_uri = substr($image,strrpos($image,'/') + 1); + if(strpos($image_uri,'-') !== false) + $image_uri = substr($image_uri,0, strpos($image_uri,'-')); + if(strpos($image_uri,'.') !== false) + $image_uri = substr($image_uri,0, strpos($image_uri,'.')); + if(! strlen($image_uri)) + continue; + $srch = '<' . $xchan_hash . '>'; + + $r = q("select folder from attach where hash = '%s' and uid = %d limit 1", + dbesc($image_uri), + intval($uid) + ); + if($r && $r[0]['folder']) { + $f = q("select * from attach where hash = '%s' and is_dir = 1 and uid = %d limit 1", + dbesc($r[0]['folder']), + intval($uid) + ); + if(($f) && (($f[0]['allow_cid']) || ($f[0]['allow_gid']) || ($f[0]['deny_cid']) || ($f[0]['deny_gid']))) { + $str_contact_allow = $f[0]['allow_cid']; + $str_group_allow = $f[0]['allow_gid']; + $str_contact_deny = $f[0]['deny_cid']; + $str_group_deny = $f[0]['deny_gid']; + } + } + + $r = q("SELECT id FROM photo + WHERE allow_cid = '%s' AND allow_gid = '' AND deny_cid = '' AND deny_gid = '' + AND resource_id = '%s' AND uid = %d LIMIT 1", + dbesc($srch), + dbesc($image_uri), + intval($uid) + ); + + if($r) { + $r = q("UPDATE photo SET allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s' + WHERE resource_id = '%s' AND uid = %d ", + dbesc($str_contact_allow), + dbesc($str_group_allow), + dbesc($str_contact_deny), + dbesc($str_group_deny), + dbesc($image_uri), + intval($uid) + ); + + // also update the linked item (which is probably invisible) + + $r = q("select id from item + WHERE allow_cid = '%s' AND allow_gid = '' AND deny_cid = '' AND deny_gid = '' + AND resource_id = '%s' and resource_type = 'photo' AND uid = %d LIMIT 1", + dbesc($srch), + dbesc($image_uri), + intval($uid) + ); + if($r) { + $private = (($str_contact_allow || $str_group_allow || $str_contact_deny || $str_group_deny) ? true : false); + + $r = q("UPDATE item SET allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s', item_private = %d + WHERE id = %d AND uid = %d", + dbesc($str_contact_allow), + dbesc($str_group_allow), + dbesc($str_contact_deny), + dbesc($str_group_deny), + intval($private), + intval($r[0]['id']), + intval($uid) + ); + } + $r = q("select id from attach where hash = '%s' and uid = %d limit 1", + dbesc($image_uri), + intval($uid) + ); + if($r) { + q("update attach SET allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s' + WHERE id = %d AND uid = %d", + dbesc($str_contact_allow), + dbesc($str_group_allow), + dbesc($str_contact_deny), + dbesc($str_group_deny), + intval($r[0]['id']), + intval($uid) + ); + } + } + } + } + } +} + + +function fix_attached_file_permissions($channel,$observer_hash,$body, + $str_contact_allow,$str_group_allow,$str_contact_deny,$str_group_deny) { + + if(get_pconfig($channel['channel_id'],'system','force_public_uploads')) { + $str_contact_allow = $str_group_allow = $str_contact_deny = $str_group_deny = ''; + } + + $match = false; + + if(preg_match_all("/\[attachment\](.*?)\[\/attachment\]/",$body,$match)) { + $attaches = $match[1]; + if($attaches) { + foreach($attaches as $attach) { + $hash = substr($attach,0,strpos($attach,',')); + $rev = intval(substr($attach,strpos($attach,','))); + attach_store($channel,$observer_hash,$options = 'update', array( + 'hash' => $hash, + 'revision' => $rev, + 'allow_cid' => $str_contact_allow, + 'allow_gid' => $str_group_allow, + 'deny_cid' => $str_contact_deny, + 'deny_gid' => $str_group_deny + )); + } + } + } +} -- cgit v1.2.3 From 4b101c2240b32053fad98354585bb69ff315aec2 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 15 Aug 2016 22:54:07 +0200 Subject: provide group options serverside and minor cleanup --- include/acl_selectors.php | 119 +++++----------------------------------------- view/js/acl.js | 34 ++++++------- view/tpl/acl_selector.tpl | 1 + 3 files changed, 30 insertions(+), 124 deletions(-) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 148c67a6c..b10417b04 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -13,7 +13,7 @@ function group_select($selname,$selclass,$preselected = false,$size = 4) { $o .= "\r\n"; - else - $o .= "\r\n"; - - call_hooks(App::$module . '_post_' . $selname, $o); - - return $o; -}*/ - - - function contact_select($selname, $selclass, $preselected = false, $size = 4, $privmail = false, $celeb = false, $privatenet = false, $tabindex = null) { @@ -260,10 +154,21 @@ function populate_acl($defaults = null,$show_jotnets = true, $emptyACL_descripti call_hooks('jot_networks', $jotnets); } + $r = q("SELECT id, hash, gname FROM groups WHERE deleted = 0 AND uid = %d ORDER BY gname ASC", + intval(local_channel()) + ); + + if($r) { + foreach($r as $rr) { + $groups .= '' . "\r\n"; + } + } + $tpl = get_markup_template("acl_selector.tpl"); $o = replace_macros($tpl, array( '$showall' => $showall_caption, '$onlyme' => t('Only me'), + '$groups' => $groups, '$showallOrigin' => $showall_origin, '$showallIcon' => $showall_icon, '$select_label' => t('Who can see this?'), diff --git a/view/js/acl.js b/view/js/acl.js index 9e3acf8e1..086d85750 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -13,6 +13,7 @@ function ACL(backend_url) { that.deny_gid = []; that.group_uids = []; + that.group_ids = []; that.selected_id = ''; that.info = $("#acl-info"); @@ -131,7 +132,7 @@ ACL.prototype.on_onlyme = function(event) { that.deny_gid = []; - that.update_view(event.target.value); + that.update_view(); that.on_submit(); return true; // return true so that state changes from update_view() will be applied @@ -146,28 +147,27 @@ ACL.prototype.on_showall = function(event) { that.deny_cid = []; that.deny_gid = []; - that.update_view(event.target.value); + that.update_view(); that.on_submit(); return true; // return true so that state changes from update_view() will be applied }; ACL.prototype.on_showgroup = function(event) { - var xid = that.acl_select.children(":selected").val(); - that.selected_id = that.acl_select.children(":selected").attr('id'); + var xid = that.acl_select.children(":selected").val(); - // preventDefault() isn't called here as we want state changes from update_view() to be applied to the radiobutton - event.stopPropagation(); + // preventDefault() isn't called here as we want state changes from update_view() to be applied to the radiobutton + event.stopPropagation(); - that.allow_cid = []; - that.allow_gid = [xid]; - that.deny_cid = []; - that.deny_gid = []; + that.allow_cid = []; + that.allow_gid = [xid]; + that.deny_cid = []; + that.deny_gid = []; - that.update_view(that.selected_id); - that.on_submit(); + that.update_view(); + that.on_submit(); - return true; // return true so that state changes from update_view() will be applied + return true; // return true so that state changes from update_view() will be applied }; @@ -180,7 +180,7 @@ ACL.prototype.on_showlimited = function(event) { that.deny_cid = []; that.deny_gid = []; - that.update_view(event.target.value); + that.update_view('limited'); that.on_submit(); return true; // return true so that state changes from update_view() will be applied @@ -316,7 +316,7 @@ ACL.prototype.update_view = function(value) { else if (that.allow_gid.length === 1 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value !== 'limited') { that.list.hide(); //hide acl-list that.info.hide(); //show acl-info - that.selected_id = that.allow_gid[0].substring(0,40); + that.selected_id = that.group_ids[that.allow_gid[0]]; that.update_select(that.selected_id); /* jot acl */ @@ -427,17 +427,17 @@ ACL.prototype.populate = function(data) { html = html.format(this.photo, this.name, this.type, this.xid, '', this.self, this.link, this.taggable); if (this.uids !== undefined) { that.group_uids[this.xid] = this.uids; - that.onlyme.before($('').attr('id', this.xid.substring(0,40)).attr('value', this.xid).text(this.name)); + that.group_ids[this.xid] = this.id; } if (this.self === 'abook-self') { that.self[0] = this.xid; } that.list_content.append(html); }); + $("#acl-list-content .acl-list-item img[data-src]").each(function(i, el) { // Replace data-src attribute with src attribute for every image $(el).attr('src', $(el).data("src")); $(el).removeAttr("data-src"); }); - //that.update_view(); }; diff --git a/view/tpl/acl_selector.tpl b/view/tpl/acl_selector.tpl index ddeb25a39..dbddc24a9 100755 --- a/view/tpl/acl_selector.tpl +++ b/view/tpl/acl_selector.tpl @@ -16,6 +16,7 @@ -- cgit v1.2.3 From 7fc254a81c5648653a03a7a631195d7c5212dcba Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 15 Aug 2016 17:18:42 -0700 Subject: Use double quotes for strings passed via templates to javascript. Some translated strings have unescaped single quotes. --- view/tpl/jot-header.tpl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 3d38df0f0..c63aa053e 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -411,7 +411,7 @@ function enableOnUser(){ $.post("embedphotos/album", {name: album}, function(data) { if (data['status']) { - $('#embedPhotoModalLabel').html('{{$modalchooseimages}}'); + $('#embedPhotoModalLabel').html("{{$modalchooseimages}}"); $('#embedPhotoModalBodyAlbumDialog').html('\
    -
    - -
    -
    - +
    + +
    + +
    +

    Pages

    +
    + + + {{foreach $pages as $page}} + + + + + + + {{/foreach}} +
    Export?Page TitlePage LinkType
    +
    + + +
    +
    +
    + {{$page.title}}
    +
    +
    +
    + {{$page.pagetitle}}
    +
    +
    +
    + {{$page.mimetype}}
    +
    +
    +
    -
    -- cgit v1.2.3 From 9fe4bae52f0c7a84f9bfe51d960ec4e3774dfa7c Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 19 Aug 2016 17:12:48 -0700 Subject: block backdoor delivery of bulk imported items --- include/items.php | 35 +++++++++++++++++++++++++++++++---- 1 file changed, 31 insertions(+), 4 deletions(-) diff --git a/include/items.php b/include/items.php index 91110eb07..ac746c189 100755 --- a/include/items.php +++ b/include/items.php @@ -1627,8 +1627,21 @@ function item_store($arr, $allow_exec = false, $deliver = true) { $arr['commented'] = ((x($arr,'commented') !== false) ? datetime_convert('UTC','UTC',$arr['commented']) : datetime_convert()); $arr['comments_closed'] = ((x($arr,'comments_closed') !== false) ? datetime_convert('UTC','UTC',$arr['comments_closed']) : NULL_DATE); - $arr['received'] = datetime_convert(); - $arr['changed'] = datetime_convert(); + if($deliver) { + $arr['received'] = datetime_convert(); + $arr['changed'] = datetime_convert(); + } + else { + + // When deliver flag is false, we are *probably* performing an import or bulk migration. + // If one updates the changed timestamp it will be made available to zotfeed and delivery + // will still take place through backdoor methods. Since these fields are rarely used + // otherwise, just preserve the original timestamp. + + $arr['received'] = ((x($arr,'received') !== false) ? datetime_convert('UTC','UTC',$arr['received']) : datetime_convert()); + $arr['changed'] = ((x($arr,'changed') !== false) ? datetime_convert('UTC','UTC',$arr['changed']) : datetime_convert()); + } + $arr['location'] = ((x($arr,'location')) ? notags(trim($arr['location'])) : ''); $arr['coord'] = ((x($arr,'coord')) ? notags(trim($arr['coord'])) : ''); $arr['parent_mid'] = ((x($arr,'parent_mid')) ? notags(trim($arr['parent_mid'])) : ''); @@ -2035,8 +2048,22 @@ function item_store_update($arr,$allow_exec = false, $deliver = true) { $arr['comments_closed'] = $orig[0]['comments_closed']; $arr['commented'] = $orig[0]['commented']; - $arr['received'] = datetime_convert(); - $arr['changed'] = datetime_convert(); + + if($deliver) { + $arr['received'] = datetime_convert(); + $arr['changed'] = datetime_convert(); + } + else { + + // When deliver flag is false, we are *probably* performing an import or bulk migration. + // If one updates the changed timestamp it will be made available to zotfeed and delivery + // will still take place through backdoor methods. Since these fields are rarely used + // otherwise, just preserve the original timestamp. + + $arr['received'] = $orig[0]['received']; + $arr['changed'] = $orig[0]['changed']; + } + $arr['route'] = ((array_key_exists('route',$arr)) ? trim($arr['route']) : $orig[0]['route']); $arr['diaspora_meta'] = ((x($arr,'diaspora_meta')) ? $arr['diaspora_meta'] : $orig[0]['diaspora_meta']); $arr['location'] = ((x($arr,'location')) ? notags(trim($arr['location'])) : $orig[0]['location']); -- cgit v1.2.3 From d1fa63b389a53ae1866cc7c4fe13d1db05141c4f Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 19 Aug 2016 17:13:34 -0700 Subject: string update --- util/hmessages.po | 9945 +++++++++++++++++++++++++++-------------------------- 1 file changed, 4986 insertions(+), 4959 deletions(-) diff --git a/util/hmessages.po b/util/hmessages.po index 99a478c2e..ada834815 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-12 00:02-0700\n" +"POT-Creation-Date: 2016-08-19 00:02-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -199,8 +199,8 @@ msgid "Unknown" msgstr "" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:95 -#: ../../include/conversation.php:1659 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1669 +#: ../../include/nav.php:95 msgid "Files" msgstr "" @@ -213,24 +213,24 @@ msgid "Shared" msgstr "" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Webpages.php:216 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 +#: ../../Zotlabs/Module/Webpages.php:216 msgid "Create" msgstr "" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1626 msgid "Upload" msgstr "" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:250 -#: ../../Zotlabs/Module/Settings.php:662 ../../Zotlabs/Module/Settings.php:688 #: ../../Zotlabs/Module/Admin.php:1223 #: ../../Zotlabs/Module/Sharedwithme.php:99 +#: ../../Zotlabs/Module/Settings.php:684 ../../Zotlabs/Module/Settings.php:710 msgid "Name" msgstr "" @@ -248,32 +248,32 @@ msgstr "" msgid "Last Modified" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Webpages.php:217 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Thing.php:260 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Editpost.php:84 ../../Zotlabs/Module/Settings.php:722 #: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:217 +#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Lib/Apps.php:341 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/menu.php:113 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:959 +#: ../../include/page_widgets.php:9 ../../include/page_widgets.php:39 +#: ../../include/menu.php:113 ../../include/channel.php:959 #: ../../include/channel.php:963 msgid "Edit" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Webpages.php:219 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Connedit.php:607 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:170 -#: ../../Zotlabs/Module/Connedit.php:610 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 #: ../../Zotlabs/Module/Admin.php:1039 ../../Zotlabs/Module/Admin.php:1213 #: ../../Zotlabs/Module/Admin.php:2114 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Webpages.php:219 +#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Lib/Apps.php:342 #: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "" @@ -304,64 +304,74 @@ msgstr "" msgid "Drop files here to immediately upload" msgstr "" -#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Webpages.php:95 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Item.php:213 -#: ../../Zotlabs/Module/Item.php:221 ../../Zotlabs/Module/Item.php:1071 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:226 -#: ../../Zotlabs/Module/Channel.php:267 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Like.php:283 +#: ../../Zotlabs/Module/Group.php:72 ../../Zotlabs/Module/Import_items.php:114 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:66 +#: ../../include/items.php:384 +msgid "Permission denied" +msgstr "" + +#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:274 +#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Item.php:214 ../../Zotlabs/Module/Item.php:222 +#: ../../Zotlabs/Module/Item.php:1073 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Connedit.php:395 #: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Mail.php:121 #: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Appman.php:75 #: ../../Zotlabs/Module/Pdledit.php:26 ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 -#: ../../Zotlabs/Module/Connedit.php:398 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Settings.php:642 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:226 +#: ../../Zotlabs/Module/Channel.php:267 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Setup.php:215 #: ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 #: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Api.php:12 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Network.php:15 -#: ../../Zotlabs/Module/Regmod.php:21 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Webpages.php:95 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Api.php:12 ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Settings.php:664 +#: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/items.php:3448 ../../include/photos.php:27 -#: ../../include/attach.php:142 ../../include/attach.php:190 -#: ../../include/attach.php:253 ../../include/attach.php:267 -#: ../../include/attach.php:274 ../../include/attach.php:339 -#: ../../include/attach.php:353 ../../include/attach.php:360 -#: ../../include/attach.php:440 ../../include/attach.php:902 -#: ../../include/attach.php:973 ../../include/attach.php:1125 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/photos.php:27 +#: ../../include/items.php:3450 ../../include/attach.php:142 +#: ../../include/attach.php:190 ../../include/attach.php:253 +#: ../../include/attach.php:267 ../../include/attach.php:274 +#: ../../include/attach.php:339 ../../include/attach.php:353 +#: ../../include/attach.php:360 ../../include/attach.php:440 +#: ../../include/attach.php:902 ../../include/attach.php:973 +#: ../../include/attach.php:1125 msgid "Permission denied." msgstr "" @@ -375,14 +385,6 @@ msgstr "" msgid "Page not found." msgstr "" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Like.php:283 -#: ../../Zotlabs/Module/Group.php:72 ../../Zotlabs/Module/Import_items.php:114 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 -msgid "Permission denied" -msgstr "" - #: ../../Zotlabs/Zot/Auth.php:138 msgid "" "Remote authentication blocked. You are logged into this site locally. Please " @@ -395,13 +397,13 @@ msgid "Welcome %s. Remote authentication successful." msgstr "" #: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 #: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../include/channel.php:859 +#: ../../Zotlabs/Module/Webpages.php:33 ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "" @@ -417,1719 +419,1535 @@ msgstr "" msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" +#: ../../Zotlabs/Module/Thing.php:89 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Admin.php:164 +#: ../../Zotlabs/Module/Admin.php:1255 ../../Zotlabs/Module/Admin.php:1561 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3371 +msgid "Item not found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" msgstr "" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" msgstr "" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" msgstr "" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" msgstr "" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" msgstr "" -#: ../../Zotlabs/Module/Setup.php:267 ../../Zotlabs/Module/Events.php:676 -#: ../../Zotlabs/Module/Events.php:685 ../../Zotlabs/Module/Photos.php:960 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" msgstr "" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" msgstr "" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" msgstr "" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 +#: ../../include/acl_selectors.php:186 +msgid "Permissions" msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Appman.php:126 ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Mitem.php:243 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Setup.php:312 ../../Zotlabs/Module/Setup.php:353 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Photos.php:679 +#: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098 +#: ../../Zotlabs/Module/Photos.php:1216 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Settings.php:682 +#: ../../Zotlabs/Module/Settings.php:795 ../../Zotlabs/Module/Settings.php:886 +#: ../../Zotlabs/Module/Settings.php:912 ../../Zotlabs/Module/Settings.php:935 +#: ../../Zotlabs/Module/Settings.php:1040 +#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/widgets.php:763 +#: ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" msgstr "" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." msgstr "" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." msgstr "" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1945 +msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1951 +msgid "status" msgstr "" -#: ../../Zotlabs/Module/Setup.php:312 ../../Zotlabs/Module/Setup.php:353 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Connedit.php:786 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Mail.php:370 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:679 -#: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098 -#: ../../Zotlabs/Module/Photos.php:1216 ../../Zotlabs/Module/Settings.php:660 -#: ../../Zotlabs/Module/Settings.php:773 ../../Zotlabs/Module/Settings.php:864 -#: ../../Zotlabs/Module/Settings.php:890 ../../Zotlabs/Module/Settings.php:913 -#: ../../Zotlabs/Module/Settings.php:1001 -#: ../../Zotlabs/Module/Settings.php:1187 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mitem.php:243 -#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Thing.php:320 -#: ../../Zotlabs/Module/Thing.php:370 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:22 -#: ../../include/widgets.php:763 ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 +#: ../../include/text.php:1948 ../../include/event.php:958 +msgid "event" msgstr "" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:405 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." msgstr "" -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../Zotlabs/Module/Wiki.php:20 ../../Zotlabs/Module/Chat.php:25 +#: ../../Zotlabs/Module/Channel.php:28 +msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" msgstr "" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/conversation.php:1725 ../../include/conversation.php:1728 +#: ../../include/features.php:57 ../../include/nav.php:110 +msgid "Wiki" msgstr "" -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:100 msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be " +"saved*.\"" msgstr "" -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" msgstr "" -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" msgstr "" -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Settings.php:683 +#: ../../Zotlabs/Module/Settings.php:709 ../../include/conversation.php:1242 +#: ../../include/conversation.php:1289 +msgid "Cancel" msgstr "" -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1155 +msgid "Embed image from photo albums" msgstr "" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1241 +msgid "Embed an image from your albums" msgstr "" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1243 +#: ../../include/conversation.php:1288 +msgid "OK" msgstr "" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1191 +msgid "Choose images to embed" msgstr "" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1192 +msgid "Choose an album" msgstr "" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1193 +msgid "Choose a different album..." msgstr "" -#: ../../Zotlabs/Module/Setup.php:500 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1194 +msgid "Error getting album list" msgstr "" -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1195 +msgid "Error getting photo link" msgstr "" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1196 +msgid "Error getting album" msgstr "" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Ratings.php:86 ../../Zotlabs/Module/Photos.php:520 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." msgstr "" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Directory.php:311 ../../include/bb2diaspora.php:507 +#: ../../include/channel.php:1049 ../../include/event.php:52 +#: ../../include/event.php:84 +msgid "Location:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:552 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:553 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:554 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:555 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/conversation.php:960 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +#: ../../include/channel.php:1034 ../../include/connections.php:78 +msgid "Connect" msgstr "" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:572 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:573 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" msgstr "" -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:575 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" msgstr "" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" msgstr "" -#: ../../Zotlabs/Module/Setup.php:594 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../include/contact_widgets.php:23 +msgid "Find" msgstr "" -#: ../../Zotlabs/Module/Setup.php:598 -msgid "store is writable" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:631 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" msgstr "" -#: ../../Zotlabs/Module/Setup.php:632 -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!" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" msgstr "" -#: ../../Zotlabs/Module/Setup.php:633 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" msgstr "" -#: ../../Zotlabs/Module/Setup.php:634 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" msgstr "" -#: ../../Zotlabs/Module/Setup.php:635 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Setup.php:636 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" msgstr "" -#: ../../Zotlabs/Module/Setup.php:641 -msgid "SSL certificate validation" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" msgstr "" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "Url rewrite is working" +#: ../../Zotlabs/Module/Rate.php:159 ../../Zotlabs/Module/Connedit.php:766 +#: ../../include/js_strings.php:20 +msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Setup.php:659 -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." +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:683 -msgid "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:720 -msgid "

    What next

    " +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:721 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/conversation.php:1662 ../../include/nav.php:94 +msgid "Photos" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import Webpage Elements" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:54 -msgid "Import selected" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/widgets.php:201 +#: ../../include/text.php:926 ../../include/text.php:938 +msgid "Save" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:108 ../../include/conversation.php:1705 -msgid "Webpages" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:218 ../../Zotlabs/Module/Photos.php:1078 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../include/conversation.php:1220 -msgid "Share" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:223 ../../Zotlabs/Module/Events.php:680 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../include/page_widgets.php:42 -msgid "View" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:224 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:720 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1199 -msgid "Preview" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 -msgid "Actions" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 -msgid "Page Link" +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Api.php:85 +#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:673 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1717 +msgid "No" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:227 -msgid "Page Title" +#: ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Api.php:84 +#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:673 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1717 +msgid "Yes" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:228 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:229 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:258 -msgid "Invalid file type." +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:270 -msgid "Error opening zip file" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:281 -msgid "Invalid folder path." +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/conversation.php:958 ../../include/nav.php:88 +msgid "View Profile" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:308 -msgid "No webpage elements detected." +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:382 -msgid "Import complete." +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " +#: ../../Zotlabs/Module/Connedit.php:575 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" msgstr "" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " +#: ../../Zotlabs/Module/Connedit.php:575 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" msgstr "" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1049 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" +#: ../../Zotlabs/Module/Connedit.php:583 +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 -#: ../../include/conversation.php:960 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -msgid "Connect" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 +msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 +msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" +#: ../../Zotlabs/Module/Connedit.php:627 ../../Zotlabs/Module/Settings.php:429 +#: ../../Zotlabs/Module/Settings.php:433 ../../Zotlabs/Module/Settings.php:434 +#: ../../Zotlabs/Module/Settings.php:437 ../../Zotlabs/Module/Settings.php:448 +#: ../../include/selectors.php:123 ../../include/widgets.php:495 +#: ../../include/channel.php:402 ../../include/channel.php:403 +#: ../../include/channel.php:410 +msgid "Friends" msgstr "" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 +msgid "Acquaintances" msgstr "" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" +#: ../../Zotlabs/Module/Connedit.php:629 +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 +msgid "All" msgstr "" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" +#: ../../Zotlabs/Module/Connedit.php:690 +msgid "Approve this connection" msgstr "" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" +#: ../../Zotlabs/Module/Connedit.php:690 +msgid "Accept connection to allow communication" msgstr "" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." +#: ../../Zotlabs/Module/Connedit.php:695 +msgid "Set Affinity" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." +#: ../../Zotlabs/Module/Connedit.php:698 +msgid "Set Profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." +#: ../../Zotlabs/Module/Connedit.php:701 +msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" +#: ../../Zotlabs/Module/Connedit.php:750 +msgid "none" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." +#: ../../Zotlabs/Module/Connedit.php:754 ../../include/widgets.php:623 +msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." +#: ../../Zotlabs/Module/Connedit.php:754 ../../include/items.php:3937 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." +#: ../../Zotlabs/Module/Connedit.php:755 +msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." +#: ../../Zotlabs/Module/Connedit.php:755 +msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" +#: ../../Zotlabs/Module/Connedit.php:757 +msgid "This connection's primary address is" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" +#: ../../Zotlabs/Module/Connedit.php:762 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" +#: ../../Zotlabs/Module/Connedit.php:765 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Slide to adjust your rating" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" +#: ../../Zotlabs/Module/Connedit.php:768 ../../Zotlabs/Module/Connedit.php:773 +msgid "Optionally explain your rating" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" +#: ../../Zotlabs/Module/Connedit.php:771 +msgid "Only import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" +#: ../../Zotlabs/Module/Connedit.php:771 ../../Zotlabs/Module/Connedit.php:772 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" +#: ../../Zotlabs/Module/Connedit.php:772 +msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" +#: ../../Zotlabs/Module/Connedit.php:774 +msgid "This information is public!" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Events.php:467 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Connection Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." +#: ../../Zotlabs/Module/Connedit.php:782 ../../Zotlabs/Module/Settings.php:882 +msgid "inherited" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" +#: ../../Zotlabs/Module/Connedit.php:784 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Connedit.php:411 ../../Zotlabs/Module/Connedit.php:693 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Settings.php:651 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Api.php:85 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1717 -msgid "No" +#: ../../Zotlabs/Module/Connedit.php:786 ../../Zotlabs/Module/Settings.php:879 +msgid "Their Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Connedit.php:411 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Settings.php:651 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Api.php:84 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1717 -msgid "Yes" +#: ../../Zotlabs/Module/Connedit.php:787 ../../Zotlabs/Module/Settings.php:880 +msgid "My Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" +#: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Settings.php:884 +msgid "Individual Permissions" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" +#: ../../Zotlabs/Module/Connedit.php:790 ../../Zotlabs/Module/Settings.php:885 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can not change those settings here." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" +#: ../../Zotlabs/Module/Connedit.php:791 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" +#: ../../Zotlabs/Module/Connedit.php:792 +msgid "Last update:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1565 +msgid "New" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1546 -#: ../../include/widgets.php:105 -msgid "Personal" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 +msgid "Status" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1037 +msgid "Approve" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:190 ../../include/text.php:855 +msgid "Connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:169 +#: ../../include/text.php:925 ../../include/text.php:937 +#: ../../include/acl_selectors.php:179 +msgid "Search" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4285 +msgid "female" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4286 +#, php-format +msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4287 +msgid "male" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4288 +#, php-format +msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4290 +#, php-format +msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1710 +msgid "cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:90 -#: ../../include/channel.php:959 -msgid "Edit Profiles" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:778 ../../Zotlabs/Module/Chat.php:255 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" msgstr "" -#: ../../Zotlabs/Module/Rpost.php:135 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings.php:1180 +msgid "or" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" msgstr "" -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" msgstr "" -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." msgstr "" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" msgstr "" -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." msgstr "" -#: ../../Zotlabs/Module/Item.php:1249 +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 #, php-format -msgid "You have reached your limit of %1$.0f top level posts." +msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:94 ../../include/conversation.php:1652 -msgid "Photos" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Settings.php:661 ../../Zotlabs/Module/Settings.php:687 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1279 -msgid "Cancel" +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Page.php:131 +#: ../../Zotlabs/Module/Import.php:548 msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Chat.php:25 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available memory" msgstr "" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." msgstr "" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." msgstr "" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1555 -msgid "New" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." msgstr "" -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:632 ../../include/widgets.php:497 -msgid "All" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" msgstr "" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." msgstr "" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1186 +msgid "Please enter a link URL:" msgstr "" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" msgstr "" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" msgstr "" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" msgstr "" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" msgstr "" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 +msgid "Your message:" msgstr "" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1238 +msgid "Attach file" msgstr "" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1151 +msgid "Insert web link" msgstr "" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" msgstr "" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1281 +msgid "Set expiration date" msgstr "" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 +#: ../../include/conversation.php:1286 +msgid "Encrypt text" msgstr "" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" msgstr "" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" msgstr "" -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" msgstr "" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." msgstr "" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Connedit.php:586 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" msgstr "" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:855 ../../include/nav.php:190 -msgid "Connections" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" msgstr "" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:274 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/nav.php:169 -msgid "Search" +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" msgstr "" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" msgstr "" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1254 +msgid "Title (optional)" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 -msgid "female" +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 -#, php-format -msgid "%1$s updated her %2$s" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 -msgid "male" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 -#, php-format -msgid "%1$s updated his %2$s" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 -#, php-format -msgid "%1$s updated their %2$s" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1710 -msgid "cover photo" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Settings.php:1138 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "or" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" +#: ../../Zotlabs/Module/Chat.php:255 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create New" msgstr "" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" msgstr "" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" msgstr "" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." msgstr "" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." msgstr "" -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" msgstr "" -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" msgstr "" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" msgstr "" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" msgstr "" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" msgstr "" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" msgstr "" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" msgstr "" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" msgstr "" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 -#: ../../include/conversation.php:120 -msgid "photo" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1951 ../../include/conversation.php:148 -msgid "status" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" msgstr "" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 -#: ../../include/event.php:951 ../../include/conversation.php:123 -msgid "event" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" msgstr "" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" msgstr "" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" msgstr "" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:163 +msgid "Help" msgstr "" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../Zotlabs/Module/Help.php:120 +msgid "$Projectname Documentation" msgstr "" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." msgstr "" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." msgstr "" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" msgstr "" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." -msgstr "" - -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Chat.php:207 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../include/conversation.php:1147 -msgid "Insert web link" -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1244 -msgid "Title (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "" - -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" -msgstr "" - -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:163 -msgid "Help" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." msgstr "" #: ../../Zotlabs/Module/Pdledit.php:62 @@ -2166,13 +1984,6 @@ msgstr "" msgid "Visible to:" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Display.php:40 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 -msgid "Item not found." -msgstr "" - #: ../../Zotlabs/Module/Filestorage.php:87 msgid "Permission Denied." msgstr "" @@ -2185,13 +1996,6 @@ msgstr "" msgid "Edit file permissions" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Chat.php:234 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "" - #: ../../Zotlabs/Module/Filestorage.php:159 msgid "Set/edit permissions" msgstr "" @@ -2224,303 +2028,303 @@ msgstr "" msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:443 -msgid "Could not access address book record." +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:463 -msgid "Refresh failed - channel is currently unavailable." +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:478 ../../Zotlabs/Module/Connedit.php:487 -#: ../../Zotlabs/Module/Connedit.php:496 ../../Zotlabs/Module/Connedit.php:505 -#: ../../Zotlabs/Module/Connedit.php:518 -msgid "Unable to set address book parameters." +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:541 -msgid "Connection has been removed." +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:557 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:88 ../../include/conversation.php:958 -msgid "View Profile" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:560 -#, php-format -msgid "View %s's profile" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Refresh Permissions" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:567 -msgid "Fetch updated permissions" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "Recent Activity" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "View recent posts and comments" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Block (or Unblock) all communications with this connection" +#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is blocked!" +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Events.php:467 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unignore" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:589 -msgid "Ignore (or Unignore) all inbound communications from this connection" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "This connection is ignored!" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Unarchive" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Archive" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:597 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:598 -msgid "This connection is archived!" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Unhide" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:605 -msgid "Hide or Unhide this connection from your other connections" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:606 -msgid "This connection is hidden!" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:613 -msgid "Delete this connection" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:493 -msgid "Me" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1556 +#: ../../include/widgets.php:105 +msgid "Personal" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:494 -msgid "Family" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:630 ../../Zotlabs/Module/Settings.php:407 -#: ../../Zotlabs/Module/Settings.php:411 ../../Zotlabs/Module/Settings.php:412 -#: ../../Zotlabs/Module/Settings.php:415 ../../Zotlabs/Module/Settings.php:426 -#: ../../include/selectors.php:123 ../../include/channel.php:402 -#: ../../include/channel.php:403 ../../include/channel.php:410 -#: ../../include/widgets.php:495 -msgid "Friends" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:631 ../../include/widgets.php:496 -msgid "Acquaintances" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:693 -msgid "Approve this connection" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:693 -msgid "Accept connection to allow communication" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "Set Affinity" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:701 -msgid "Set Profile" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:704 -msgid "Set Affinity & Profile" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "none" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:757 ../../include/widgets.php:623 -msgid "Connection Default Permissions" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:757 ../../include/items.php:3935 -#, php-format -msgid "Connection: %s" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "Apply these permissions automatically" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "Connection requests will be approved without your interaction" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:760 -msgid "This connection's primary address is" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Available locations:" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:765 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Connection Tools" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Slide to adjust your degree of friendship" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:769 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "Slide to adjust your rating" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:771 ../../Zotlabs/Module/Connedit.php:776 -msgid "Optionally explain your rating" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:773 -msgid "Custom Filter" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:774 -msgid "Only import posts with this text" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:774 ../../Zotlabs/Module/Connedit.php:775 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Do not import posts with this text" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:777 -msgid "This information is public!" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:782 -msgid "Connection Pending Approval" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:785 ../../Zotlabs/Module/Settings.php:860 -msgid "inherited" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:787 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Settings.php:857 -msgid "Their Settings" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:790 ../../Zotlabs/Module/Settings.php:858 -msgid "My Settings" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:792 ../../Zotlabs/Module/Settings.php:862 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:793 ../../Zotlabs/Module/Settings.php:863 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:794 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:795 -msgid "Last update:" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:90 +#: ../../include/channel.php:959 +msgid "Edit Profiles" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" #: ../../Zotlabs/Module/Group.php:24 @@ -2532,7 +2336,7 @@ msgid "Could not create privacy group." msgstr "" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3904 msgid "Privacy group not found." msgstr "" @@ -2576,128 +2380,134 @@ msgstr "" msgid "Click on a channel to add or remove." msgstr "" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." +#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 +msgid "Menu not found." msgstr "" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" +#: ../../Zotlabs/Module/Mitem.php:120 ../../Zotlabs/Module/Menu.php:166 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings.php:1263 +msgid "(click to open/close)" msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" msgstr "" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 -msgid "Menus" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" msgstr "" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" msgstr "" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" msgstr "" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" msgstr "" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" msgstr "" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" msgstr "" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" msgstr "" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" msgstr "" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" msgstr "" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" msgstr "" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:72 -#: ../../Zotlabs/Module/Import.php:101 -msgid "Imported file is empty." +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:123 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." msgstr "" #: ../../Zotlabs/Module/Import_items.php:104 @@ -2712,11 +2522,6 @@ msgstr "" msgid "Use this form to import existing posts and content from an export file." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:549 -msgid "File to Upload" -msgstr "" - #: ../../Zotlabs/Module/Invite.php:29 msgid "Total invitation limit exceeded." msgstr "" @@ -2758,10 +2563,6 @@ msgstr "" msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "" - #: ../../Zotlabs/Module/Invite.php:136 msgid "Please join my community on $Projectname." msgstr "" @@ -2816,6 +2617,10 @@ msgstr "" msgid "Primary" msgstr "" +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "" + #: ../../Zotlabs/Module/Locs.php:122 msgid "Sync Now" msgstr "" @@ -2838,72 +2643,30 @@ msgstr "" msgid "Hub not found." msgstr "" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1182 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:723 -#: ../../include/conversation.php:1276 -msgid "Encrypt text" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" msgstr "" -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" msgstr "" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" msgstr "" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" msgstr "" -#: ../../Zotlabs/Module/Chat.php:249 +#: ../../Zotlabs/Module/Impel.php:191 #, php-format -msgid "%1$s's Chatrooms" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" +msgid "%s element installed" msgstr "" -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" msgstr "" #: ../../Zotlabs/Module/Events.php:25 @@ -2993,7 +2756,13 @@ msgstr "" msgid "Share this event" msgstr "" -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1248 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Photos.php:1099 +#: ../../Zotlabs/Module/Webpages.php:224 ../../Zotlabs/Lib/ThreadItem.php:720 +#: ../../include/conversation.php:1205 ../../include/page_widgets.php:43 +msgid "Preview" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1258 msgid "Permission settings" msgstr "" @@ -3031,15 +2800,27 @@ msgid "Create Event" msgstr "" #: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 -#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:951 msgid "Previous" msgstr "" +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Setup.php:267 ../../Zotlabs/Module/Cal.php:333 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Photos.php:960 +msgid "Next" +msgstr "" + #: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 msgid "Export" msgstr "" +#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../Zotlabs/Module/Pubsites.php:47 +#: ../../Zotlabs/Module/Webpages.php:223 ../../include/page_widgets.php:42 +msgid "View" +msgstr "" + #: ../../Zotlabs/Module/Events.php:681 msgid "Month" msgstr "" @@ -3064,101 +2845,49 @@ msgstr "" msgid "Failed to remove event" msgstr "" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1232 -msgid "Attach file" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1271 -msgid "Set expiration date" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:210 +msgid "Channel Manager" msgstr "" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" msgstr "" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" msgstr "" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" msgstr "" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" msgstr "" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" msgstr "" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" msgstr "" #: ../../Zotlabs/Module/Lostpass.php:19 @@ -3248,2434 +2977,2524 @@ msgstr "" msgid "Set your current mood and tell your friends" msgstr "" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." msgstr "" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:210 -msgid "Channel Manager" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" msgstr "" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" msgstr "" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" msgstr "" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" msgstr "" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 +msgid "Menus" msgstr "" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Webpages.php:228 +#: ../../include/page_widgets.php:47 +msgid "Created" msgstr "" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Blocks.php:158 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:229 +#: ../../include/page_widgets.php:48 +msgid "Edited" msgstr "" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" msgstr "" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" msgstr "" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" msgstr "" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" msgstr "" -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" msgstr "" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" msgstr "" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" msgstr "" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" msgstr "" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" msgstr "" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." msgstr "" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" msgstr "" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" msgstr "" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" msgstr "" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Album name could not be decoded" +#: ../../Zotlabs/Module/Setup.php:179 +msgid "$Projectname Server - Setup" msgstr "" -#: ../../Zotlabs/Module/Photos.php:745 -msgid "Contact Photos" +#: ../../Zotlabs/Module/Setup.php:183 +msgid "Could not connect to database." msgstr "" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Newest First" +#: ../../Zotlabs/Module/Setup.php:187 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../Zotlabs/Module/Photos.php:770 -msgid "Show Oldest First" +#: ../../Zotlabs/Module/Setup.php:194 +msgid "Could not create table." msgstr "" -#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 -msgid "View Photo" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Your site database has been installed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:825 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 -msgid "Edit Album" +#: ../../Zotlabs/Module/Setup.php:203 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Permission denied. Access to this item may be restricted." +#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 +#: ../../Zotlabs/Module/Setup.php:722 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Photo not available" +#: ../../Zotlabs/Module/Setup.php:263 +msgid "System check" msgstr "" -#: ../../Zotlabs/Module/Photos.php:932 -msgid "Use as profile photo" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "Check again" msgstr "" -#: ../../Zotlabs/Module/Photos.php:933 -msgid "Use as cover photo" +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Database connection" msgstr "" -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Private Photo" +#: ../../Zotlabs/Module/Setup.php:291 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" -#: ../../Zotlabs/Module/Photos.php:955 -msgid "View Full Size" +#: ../../Zotlabs/Module/Setup.php:292 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" +#: ../../Zotlabs/Module/Setup.php:293 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Edit photo" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Server Name" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CW (right)" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Default is 127.0.0.1" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "Rotate CCW (left)" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Port" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" +#: ../../Zotlabs/Module/Setup.php:299 +msgid "Database Login Name" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" +#: ../../Zotlabs/Module/Setup.php:300 +msgid "Database Login Password" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Name" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Type" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "Site administrator email address" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I like this (toggle)" +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I don't like this (toggle)" +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Website URL" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../include/conversation.php:743 -msgid "Please wait" +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:708 -msgid "This is you" +#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 -msgid "Comment" +#: ../../Zotlabs/Module/Setup.php:333 +msgid "Site settings" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" +#: ../../Zotlabs/Module/Setup.php:347 +msgid "Enable $Projectname advanced features?" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" +#: ../../Zotlabs/Module/Setup.php:347 +msgid "" +"Some advanced features, while useful - may be best suited for technically " +"proficient audiences" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" +#: ../../Zotlabs/Module/Setup.php:388 +msgid "PHP version 5.5 or greater is required." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" +#: ../../Zotlabs/Module/Setup.php:389 +msgid "PHP version" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" +#: ../../Zotlabs/Module/Setup.php:404 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" +#: ../../Zotlabs/Module/Setup.php:405 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" +#: ../../Zotlabs/Module/Setup.php:409 +msgid "PHP executable path" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" +#: ../../Zotlabs/Module/Setup.php:409 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1743 -msgid "View all" +#: ../../Zotlabs/Module/Setup.php:414 +msgid "Command line PHP" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1767 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1770 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Setup.php:423 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" +#: ../../Zotlabs/Module/Setup.php:424 +msgid "This is required for message delivery to work." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" +#: ../../Zotlabs/Module/Setup.php:427 +msgid "PHP register_argc_argv" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" +#: ../../Zotlabs/Module/Setup.php:445 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Likes" +#: ../../Zotlabs/Module/Setup.php:450 +msgid "You can adjust these settings in the servers php.ini." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Dislikes" +#: ../../Zotlabs/Module/Setup.php:452 +msgid "PHP upload limits" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 -#: ../../include/acl_selectors.php:283 -msgid "Close" +#: ../../Zotlabs/Module/Setup.php:475 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" +#: ../../Zotlabs/Module/Setup.php:479 +msgid "Generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "libCurl PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" +#: ../../Zotlabs/Module/Setup.php:492 +msgid "GD graphics PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:686 -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" +#: ../../Zotlabs/Module/Setup.php:493 +msgid "OpenSSL PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" +#: ../../Zotlabs/Module/Setup.php:494 +msgid "mysqli or postgres PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." +#: ../../Zotlabs/Module/Setup.php:495 +msgid "mb_string PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." +#: ../../Zotlabs/Module/Setup.php:496 +msgid "xml PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:290 -msgid "Not valid email." +#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:293 -msgid "Protected email address. Cannot change to that email." +#: ../../Zotlabs/Module/Setup.php:500 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:302 -msgid "System failure storing new email. Please try again." +#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 +msgid "proc_open" msgstr "" -#: ../../Zotlabs/Module/Settings.php:319 -msgid "Password verification failed." +#: ../../Zotlabs/Module/Setup.php:506 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../Zotlabs/Module/Settings.php:326 -msgid "Passwords do not match. Password unchanged." +#: ../../Zotlabs/Module/Setup.php:514 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:330 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../Zotlabs/Module/Setup.php:518 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:344 -msgid "Password changed." +#: ../../Zotlabs/Module/Setup.php:522 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:346 -msgid "Password update failed. Please try again." +#: ../../Zotlabs/Module/Setup.php:526 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:595 -msgid "Settings updated." +#: ../../Zotlabs/Module/Setup.php:530 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:659 ../../Zotlabs/Module/Settings.php:685 -#: ../../Zotlabs/Module/Settings.php:721 -msgid "Add application" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: xml PHP module required for DAV but not installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:662 -msgid "Name of application" +#: ../../Zotlabs/Module/Setup.php:552 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -#: ../../Zotlabs/Module/Settings.php:663 ../../Zotlabs/Module/Settings.php:689 -msgid "Consumer Key" +#: ../../Zotlabs/Module/Setup.php:553 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." msgstr "" -#: ../../Zotlabs/Module/Settings.php:663 ../../Zotlabs/Module/Settings.php:664 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../Zotlabs/Module/Setup.php:554 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." msgstr "" -#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Settings.php:690 -msgid "Consumer Secret" +#: ../../Zotlabs/Module/Setup.php:555 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." msgstr "" -#: ../../Zotlabs/Module/Settings.php:665 ../../Zotlabs/Module/Settings.php:691 -msgid "Redirect" +#: ../../Zotlabs/Module/Setup.php:558 +msgid ".htconfig.php is writable" msgstr "" -#: ../../Zotlabs/Module/Settings.php:665 +#: ../../Zotlabs/Module/Setup.php:572 msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: ../../Zotlabs/Module/Settings.php:666 ../../Zotlabs/Module/Settings.php:692 -msgid "Icon url" +#: ../../Zotlabs/Module/Setup.php:573 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." msgstr "" -#: ../../Zotlabs/Module/Settings.php:666 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" +#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../Zotlabs/Module/Settings.php:677 -msgid "Application not found." +#: ../../Zotlabs/Module/Setup.php:575 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../Zotlabs/Module/Settings.php:720 -msgid "Connected Apps" +#: ../../Zotlabs/Module/Setup.php:578 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../Zotlabs/Module/Settings.php:724 -msgid "Client key starts with" +#: ../../Zotlabs/Module/Setup.php:594 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" msgstr "" -#: ../../Zotlabs/Module/Settings.php:725 -msgid "No name" +#: ../../Zotlabs/Module/Setup.php:598 +msgid "store is writable" msgstr "" -#: ../../Zotlabs/Module/Settings.php:726 -msgid "Remove authorization" +#: ../../Zotlabs/Module/Setup.php:631 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../Zotlabs/Module/Settings.php:739 -msgid "No feature settings configured" +#: ../../Zotlabs/Module/Setup.php:632 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" msgstr "" -#: ../../Zotlabs/Module/Settings.php:746 -msgid "Feature/Addon Settings" +#: ../../Zotlabs/Module/Setup.php:633 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../Zotlabs/Module/Settings.php:769 -msgid "Account Settings" +#: ../../Zotlabs/Module/Setup.php:634 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -#: ../../Zotlabs/Module/Settings.php:770 -msgid "Current Password" +#: ../../Zotlabs/Module/Setup.php:635 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../Zotlabs/Module/Settings.php:771 -msgid "Enter New Password" +#: ../../Zotlabs/Module/Setup.php:636 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../Zotlabs/Module/Settings.php:772 -msgid "Confirm New Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:772 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:774 -#: ../../Zotlabs/Module/Settings.php:1194 -msgid "Email Address:" +#: ../../Zotlabs/Module/Setup.php:638 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." msgstr "" -#: ../../Zotlabs/Module/Settings.php:775 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" +#: ../../Zotlabs/Module/Setup.php:641 +msgid "SSL certificate validation" msgstr "" -#: ../../Zotlabs/Module/Settings.php:776 -msgid "Remove this account including all its channels" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../Zotlabs/Module/Settings.php:810 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." +#: ../../Zotlabs/Module/Setup.php:650 +msgid "Url rewrite is working" msgstr "" -#: ../../Zotlabs/Module/Settings.php:812 +#: ../../Zotlabs/Module/Setup.php:659 msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." msgstr "" -#: ../../Zotlabs/Module/Settings.php:847 ../../include/widgets.php:614 -msgid "Guest Access Tokens" +#: ../../Zotlabs/Module/Setup.php:683 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "Login Name" +#: ../../Zotlabs/Module/Setup.php:720 +msgid "

    What next

    " msgstr "" -#: ../../Zotlabs/Module/Settings.php:855 -msgid "Login Password" +#: ../../Zotlabs/Module/Setup.php:721 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../Zotlabs/Module/Settings.php:856 -msgid "Expires (yyyy-mm-dd)" +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." msgstr "" -#: ../../Zotlabs/Module/Settings.php:881 ../../Zotlabs/Module/Admin.php:677 -#: ../../Zotlabs/Module/Admin.php:678 -msgid "Off" +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:881 ../../Zotlabs/Module/Admin.php:677 -#: ../../Zotlabs/Module/Admin.php:678 -msgid "On" +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:888 -msgid "Additional Features" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:912 -msgid "Connector Settings" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:951 -msgid "No special theme for mobile devices" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" msgstr "" -#: ../../Zotlabs/Module/Settings.php:954 -#, php-format -msgid "%s - (Experimental)" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" msgstr "" -#: ../../Zotlabs/Module/Settings.php:957 ../../Zotlabs/Module/Admin.php:410 -msgid "mobile" +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" msgstr "" -#: ../../Zotlabs/Module/Settings.php:996 -msgid "Display Settings" +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" msgstr "" -#: ../../Zotlabs/Module/Settings.php:997 -msgid "Theme Settings" +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Settings.php:998 -msgid "Custom Theme Settings" +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" msgstr "" -#: ../../Zotlabs/Module/Settings.php:999 -msgid "Content Settings" +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1005 -msgid "Display Theme:" +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1006 -msgid "Mobile Theme:" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1007 -msgid "Preload images before rendering the page" +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1007 -msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1008 -msgid "Enable user zoom on mobile devices" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1009 -msgid "Update browser every xx seconds" +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1009 -msgid "Minimum of 10 seconds, no maximum" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1010 -msgid "Maximum number of conversations to load at any time:" +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1010 -msgid "Maximum of 100 items" +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2888 +msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1011 -msgid "Show emoticons (smilies) as images" +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:987 +msgid "mobile" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1012 -msgid "Link post titles to source" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1013 -msgid "System Page Layout Editor - (advanced)" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1016 -msgid "Use blog/list mode on channel page" +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1016 -#: ../../Zotlabs/Module/Settings.php:1017 -msgid "(comments displayed separately)" +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1017 -msgid "Use blog/list mode on grid page" +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1018 -msgid "Channel page max height of content (in pixels)" +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1018 -#: ../../Zotlabs/Module/Settings.php:1019 -msgid "click to expand content exceeding this height" +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1019 -msgid "Grid page max height of content (in pixels)" +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1490 +msgid "Site" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Nobody except yourself" +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:248 +msgid "Registration" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1049 -msgid "Only those you specifically allow" +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Approved connections" +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Any connections" +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1052 -msgid "Anybody on this website" +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Anybody in this network" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1054 -msgid "Anybody authenticated" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Anybody on the internet" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1129 -msgid "Publish your default profile in the network directory" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1134 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1143 -msgid "Your channel address is" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Channel Settings" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1192 -msgid "Basic Settings" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1193 ../../include/channel.php:1164 -msgid "Full Name:" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1195 -msgid "Your Timezone:" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Default Post Location:" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Geographical location to display on your posts" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1197 -msgid "Use Browser Location:" +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Adult Content" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Admin.php:510 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1201 -msgid "Security and Privacy Settings" +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1204 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1206 -msgid "Hide my online presence" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1206 -msgid "Prevents displaying in your profile that you are online" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1208 -msgid "Simple Privacy Settings:" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1209 -msgid "" -"Very Public - extremely permissive (should be used with caution)" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../Zotlabs/Module/Admin.php:514 msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +"Present the site homepage in a frame at the original location instead of " +"redirecting" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1211 -msgid "Private - default private, never open or public" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Accounts abandoned after x days" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1212 -msgid "Blocked - default blocked to/from everybody" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "Allow others to tag your posts" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allowed friend domains" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Admin.php:516 msgid "" -"Often used by the community to retro-actively flag inappropriate content" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "Advanced Privacy Settings" +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "Expire other channel content after this many days" +#: ../../Zotlabs/Module/Admin.php:517 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "0 or blank to use the website limit." +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 -#, php-format -msgid "This website expires after %d days." +#: ../../Zotlabs/Module/Admin.php:518 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "This website does not expire imported content." +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "The website limit takes precedence if lower than your limit." +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1219 -msgid "Maximum Friend Requests/Day:" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1219 -msgid "May reduce spam activity" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1220 -msgid "Default Post and Publish Permissions" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1221 ../../Zotlabs/Module/Mitem.php:154 -#: ../../Zotlabs/Module/Mitem.php:231 -msgid "(click to open/close)" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1222 -msgid "Use my default audience setting for the type of object published" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1229 -msgid "Channel permissions category:" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1235 -msgid "Maximum private messages per day from unknown people:" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1235 -msgid "Useful to reduce spamming" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Notification Settings" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1239 -msgid "By default post a status message when:" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Default directory server" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1240 -msgid "accepting a friend request" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "joining a forum/community" +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Proxy URL" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1242 -msgid "making an interesting profile change" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1243 -msgid "Send a notification email when:" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1244 -msgid "You receive a connection request" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1245 -msgid "Your connections are confirmed" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1246 -msgid "Someone writes on your profile wall" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1247 -msgid "Someone writes a followup comment" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "You receive a private message" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1249 -msgid "You receive a friend suggestion" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1250 -msgid "You are tagged in a post" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Maximum Load Average" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1251 -msgid "You are poked/prodded/etc. in a post" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1254 -msgid "Show visual notifications including:" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "Unseen grid activity" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "0 for no expiration of imported content" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1257 -msgid "Unseen channel activity" +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:903 +msgid "Off" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1258 -msgid "Unseen private messages" +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:903 +msgid "On" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1258 -#: ../../Zotlabs/Module/Settings.php:1263 -#: ../../Zotlabs/Module/Settings.php:1264 -#: ../../Zotlabs/Module/Settings.php:1265 -msgid "Recommended" +#: ../../Zotlabs/Module/Admin.php:678 +#, php-format +msgid "Lock feature %s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1259 -msgid "Upcoming events" +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "Events today" +#: ../../Zotlabs/Module/Admin.php:703 +msgid "No server found" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Upcoming birthdays" +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Not available in all themes" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "System (personal) notifications" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1263 -msgid "System info messages" +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "System critical alerts" +#: ../../Zotlabs/Module/Admin.php:746 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1265 -msgid "New connections" +#: ../../Zotlabs/Module/Admin.php:749 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1266 -msgid "System Registrations" +#: ../../Zotlabs/Module/Admin.php:750 +msgid "" +"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/" +"
    https://vimeo.com/
    https://soundcloud.com/
    " msgstr "" -#: ../../Zotlabs/Module/Settings.php:1267 +#: ../../Zotlabs/Module/Admin.php:751 msgid "" -"Also show new wall posts, private messages and connections under Notices" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1269 -msgid "Notify me of events this many days in advance" +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1493 +msgid "Security" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1269 -msgid "Must be greater than 0" +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1271 -msgid "Advanced Account/Page Type Settings" +#: ../../Zotlabs/Module/Admin.php:758 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1272 -msgid "Change the behaviour of this account for special situations" +#: ../../Zotlabs/Module/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1275 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1276 -msgid "Miscellaneous Settings" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Default photo upload folder" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1277 -#: ../../Zotlabs/Module/Settings.php:1278 -msgid "%Y - current year, %m - current month" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1278 -msgid "Default file upload folder" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Personal menu to display in your channel pages" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1281 ../../Zotlabs/Module/Removeme.php:64 -msgid "Remove Channel" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "Remove this channel." +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1283 -msgid "Firefox Share $Projectname provider" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1284 -msgid "Start calendar week on monday" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" +#: ../../Zotlabs/Module/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" +#: ../../Zotlabs/Module/Admin.php:805 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." msgstr "" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" +#: ../../Zotlabs/Module/Admin.php:825 +msgid "Failed Updates" msgstr "" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" +#: ../../Zotlabs/Module/Admin.php:827 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" +#: ../../Zotlabs/Module/Admin.php:859 +msgid "Queue Statistics" msgstr "" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" msgstr "" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" msgstr "" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" msgstr "" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" msgstr "" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" msgstr "" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2888 -msgid "Default" +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" msgstr "" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" msgstr "" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1491 +msgid "Accounts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" msgstr "" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" msgstr "" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" msgstr "" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2208 +msgid "Email" msgstr "" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1490 -msgid "Site" +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." msgstr "" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:248 -msgid "Registration" +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" msgstr "" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" msgstr "" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" msgstr "" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" msgstr "" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" +#: ../../Zotlabs/Module/Admin.php:1054 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:1055 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:1091 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:1100 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +#: ../../Zotlabs/Module/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" msgstr "" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" +#: ../../Zotlabs/Module/Admin.php:1136 +#, php-format +msgid "Channel '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' uncensored" msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1492 +msgid "Channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" +#: ../../Zotlabs/Module/Admin.php:1214 +msgid "Censor" msgstr "" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" +#: ../../Zotlabs/Module/Admin.php:1215 +msgid "Uncensor" msgstr "" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" msgstr "" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" +#: ../../Zotlabs/Module/Admin.php:1217 +msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1641 +msgid "Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." +#: ../../Zotlabs/Module/Admin.php:1222 +msgid "UID" msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" +#: ../../Zotlabs/Module/Admin.php:1226 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Admin.php:1227 msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." msgstr "" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" +#: ../../Zotlabs/Module/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." msgstr "" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" +#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" msgstr "" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" +#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1495 +msgid "Plugins" msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" +#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 +#: ../../include/nav.php:212 +msgid "Settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" +#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" +#: ../../Zotlabs/Module/Admin.php:1342 +msgid "Maximum project version: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." +#: ../../Zotlabs/Module/Admin.php:1343 +msgid "Minimum PHP version: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" +#: ../../Zotlabs/Module/Admin.php:1344 +msgid "Requires: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" msgstr "" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." msgstr "" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." +#: ../../Zotlabs/Module/Admin.php:1395 +msgid "Plugin repo git URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "Custom repo name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "(optional)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Display contextual help for the current page when the help button is pressed." +#: ../../Zotlabs/Module/Admin.php:1404 +msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" +#: ../../Zotlabs/Module/Admin.php:1427 +msgid "Manage Repos" msgstr "" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" +#: ../../Zotlabs/Module/Admin.php:1428 +msgid "Installed Plugin Repositories" msgstr "" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 +#: ../../Zotlabs/Module/Settings.php:708 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: ../../Zotlabs/Module/Admin.php:1436 +msgid "Switch branch" msgstr "" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" +#: ../../Zotlabs/Module/Admin.php:1437 ../../Zotlabs/Module/Photos.php:1000 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" msgstr "" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." +#: ../../Zotlabs/Module/Admin.php:1550 +msgid "No themes found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" +#: ../../Zotlabs/Module/Admin.php:1606 +msgid "Screenshot" msgstr "" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." +#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1496 +msgid "Themes" msgstr "" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" +#: ../../Zotlabs/Module/Admin.php:1652 +msgid "[Experimental]" msgstr "" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." +#: ../../Zotlabs/Module/Admin.php:1653 +msgid "[Unsupported]" msgstr "" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" +#: ../../Zotlabs/Module/Admin.php:1677 +msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1517 +#: ../../include/widgets.php:1527 +msgid "Logs" msgstr "" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" +#: ../../Zotlabs/Module/Admin.php:1734 +msgid "Clear" msgstr "" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" +#: ../../Zotlabs/Module/Admin.php:1740 +msgid "Debugging" msgstr "" -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" msgstr "" -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." msgstr "" -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" +#: ../../Zotlabs/Module/Admin.php:2028 +msgid "New Profile Field" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" msgstr "" -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" +#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" msgstr "" -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" msgstr "" -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/" -"
    https://vimeo.com/
    https://soundcloud.com/
    " +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" msgstr "" -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1493 -msgid "Security" +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" msgstr "" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1498 +msgid "Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Admin.php:2107 +msgid "Basic Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "Advanced Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "(In addition to basic fields)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" msgstr "" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" msgstr "" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" +#: ../../Zotlabs/Module/Admin.php:2115 +msgid "Create Custom Field" msgstr "" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" msgstr "" -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" msgstr "" -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" msgstr "" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" msgstr "" -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." msgstr "" -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" msgstr "" -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." msgstr "" -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." msgstr "" -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" msgstr "" -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" msgstr "" -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" msgstr "" -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." msgstr "" -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" msgstr "" -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 +msgid "Mark all system notifications seen" msgstr "" -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:964 +msgid "Poke" msgstr "" -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" msgstr "" -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" msgstr "" -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" msgstr "" -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" msgstr "" -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1491 -msgid "Accounts" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2208 -msgid "Email" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1054 +#: ../../Zotlabs/Module/Api.php:83 msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1055 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1492 -msgid "Channels" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 +msgid "Blocks" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1631 -msgid "Channel" +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 +#: ../../include/conversation.php:1226 +msgid "Share" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 +msgid "Layouts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1226 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1351 +msgid "Public Hubs" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1495 -msgid "Plugins" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:212 -#: ../../include/widgets.php:647 -msgid "Settings" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:963 +msgid "Ratings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 +msgid "Import" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:167 +msgid "Apps" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1496 -msgid "Themes" +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1517 -#: ../../include/widgets.php:1527 -msgid "Logs" +#: ../../Zotlabs/Module/Network.php:216 +msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" +#: ../../Zotlabs/Module/Network.php:225 +msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" +#: ../../Zotlabs/Module/Network.php:251 +msgid "Invalid connection." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1498 -msgid "Profile Fields" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Album name could not be decoded" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." +#: ../../Zotlabs/Module/Photos.php:745 +msgid "Contact Photos" msgstr "" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" +#: ../../Zotlabs/Module/Photos.php:770 +msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" +#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" +#: ../../Zotlabs/Module/Photos.php:825 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." +#: ../../Zotlabs/Module/Photos.php:874 +msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" +#: ../../Zotlabs/Module/Photos.php:932 +msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 -msgid "Mark all system notifications seen" +#: ../../Zotlabs/Module/Photos.php:933 +msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:964 -msgid "Poke" +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" +#: ../../Zotlabs/Module/Photos.php:955 +msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CW (right)" msgstr "" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "Rotate CCW (left)" msgstr "" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" msgstr "" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 -msgid "Profile" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../include/conversation.php:743 +msgid "Please wait" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:708 +msgid "This is you" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 +msgid "Comment" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/features.php:57 ../../include/nav.php:110 -#: ../../include/conversation.php:1715 ../../include/conversation.php:1718 -msgid "Wiki" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:98 -msgid "Sandbox" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:100 -msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be " -"saved*.\"" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:169 -msgid "Revision Comparison" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:170 -msgid "Revert" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:201 -msgid "Enter the name of your new wiki:" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:202 -msgid "Enter the name of the new page:" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1753 +msgid "View all" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Enter the new name:" -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/conversation.php:1777 ../../include/taxonomy.php:403 +#: ../../include/channel.php:1182 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1151 -msgid "Embed image from photo albums" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1780 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1235 -msgid "Embed an image from your albums" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1237 -#: ../../include/conversation.php:1278 -msgid "OK" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1187 -msgid "Choose images to embed" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1188 -msgid "Choose an album" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1189 -msgid "Choose a different album..." +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../include/acl_selectors.php:188 +msgid "Close" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1190 -msgid "Error getting album list" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1191 -msgid "Error getting photo link" +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1192 -msgid "Error getting album" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:49 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." +"This account and all its channels will be completely removed from the " +"network. " msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings.php:797 +msgid "Remove Account" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:63 +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +"By default only the instance of the channel located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" +#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1323 +msgid "Remove Channel" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 -msgid "Blocks" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" +#: ../../Zotlabs/Module/Uexport.php:57 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 -msgid "Layouts" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1351 -msgid "Public Hubs" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:25 +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." +"To select all posts for a given month, such as January of this year, visit " +"%2$s" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import selected" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" +#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/conversation.php:1715 ../../include/nav.php:108 +msgid "Webpages" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" +#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +msgid "Actions" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:963 -msgid "Ratings" +#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +msgid "Page Link" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" +#: ../../Zotlabs/Module/Webpages.php:227 +msgid "Page Title" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../Zotlabs/Module/Webpages.php:258 +msgid "Invalid file type." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" +#: ../../Zotlabs/Module/Webpages.php:270 +msgid "Error opening zip file" msgstr "" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." +#: ../../Zotlabs/Module/Webpages.php:281 +msgid "Invalid folder path." msgstr "" -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 -msgid "Import" +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "No webpage elements detected." msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." +#: ../../Zotlabs/Module/Webpages.php:382 +msgid "Import complete." msgstr "" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" msgstr "" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." msgstr "" #: ../../Zotlabs/Module/Register.php:49 @@ -5775,2624 +5594,2583 @@ msgid "" "are returned to a login page, please check your email for instructions." msgstr "" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:167 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" +#: ../../Zotlabs/Module/Rpost.php:135 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" +#: ../../Zotlabs/Module/Acl.php:312 +msgid "network" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" +#: ../../Zotlabs/Module/Acl.php:322 +msgid "RSS" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:74 +#: ../../include/widgets.php:639 +msgid "Channel Sources" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings.php:688 +msgid "Optional" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." msgstr "" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" msgstr "" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" msgstr "" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" msgstr "" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." msgstr "" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +#: ../../Zotlabs/Module/Suggest.php:39 msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1953 +msgid "comment" msgstr "" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" msgstr "" -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" msgstr "" -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Network.php:216 -msgid "Privacy group is empty" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" msgstr "" -#: ../../Zotlabs/Module/Network.php:225 -msgid "Privacy group: " +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" msgstr "" -#: ../../Zotlabs/Module/Network.php:251 -msgid "Invalid connection." +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" msgstr "" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" +#: ../../Zotlabs/Module/Settings.php:64 +msgid "Name is required" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" +#: ../../Zotlabs/Module/Settings.php:68 +msgid "Key and Secret are required" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:57 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can " -"be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for " -"this download to begin." +#: ../../Zotlabs/Module/Settings.php:184 +msgid "Token saved." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." +#: ../../Zotlabs/Module/Settings.php:312 +msgid "Not valid email." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." +#: ../../Zotlabs/Module/Settings.php:315 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" +#: ../../Zotlabs/Module/Settings.php:324 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" +#: ../../Zotlabs/Module/Settings.php:341 +msgid "Password verification failed." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." +#: ../../Zotlabs/Module/Settings.php:348 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" +#: ../../Zotlabs/Module/Settings.php:352 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" +#: ../../Zotlabs/Module/Settings.php:366 +msgid "Password changed." msgstr "" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" +#: ../../Zotlabs/Module/Settings.php:368 +msgid "Password update failed. Please try again." msgstr "" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Settings.php:617 +msgid "Settings updated." msgstr "" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" +#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 +#: ../../Zotlabs/Module/Settings.php:743 +msgid "Add application" msgstr "" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." +#: ../../Zotlabs/Module/Settings.php:684 +msgid "Name of application" msgstr "" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 +msgid "Consumer Key" msgstr "" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" +#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 +msgid "Consumer Secret" msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Only sends to viewers of the applicable profile" +#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 +msgid "Redirect" msgstr "" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" +#: ../../Zotlabs/Module/Settings.php:687 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 +msgid "Icon url" msgstr "" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 -msgid "URL for photo of thing (optional)" +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Application not found." msgstr "" -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" +#: ../../Zotlabs/Module/Settings.php:742 +msgid "Connected Apps" msgstr "" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" +#: ../../Zotlabs/Module/Settings.php:746 +msgid "Client key starts with" msgstr "" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" +#: ../../Zotlabs/Module/Settings.php:747 +msgid "No name" msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." +#: ../../Zotlabs/Module/Settings.php:748 +msgid "Remove authorization" msgstr "" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" +#: ../../Zotlabs/Module/Settings.php:761 +msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +#: ../../Zotlabs/Module/Settings.php:768 +msgid "Feature/Addon Settings" msgstr "" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" +#: ../../Zotlabs/Module/Settings.php:791 +msgid "Account Settings" msgstr "" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" +#: ../../Zotlabs/Module/Settings.php:792 +msgid "Current Password" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." +#: ../../Zotlabs/Module/Settings.php:793 +msgid "Enter New Password" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Confirm New Password" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" +#: ../../Zotlabs/Module/Settings.php:796 +#: ../../Zotlabs/Module/Settings.php:1236 +msgid "Email Address:" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" +#: ../../Zotlabs/Module/Settings.php:798 +msgid "Remove this account including all its channels" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" +#: ../../Zotlabs/Module/Settings.php:832 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" +#: ../../Zotlabs/Module/Settings.php:834 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" +#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 +msgid "Guest Access Tokens" msgstr "" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." +#: ../../Zotlabs/Module/Settings.php:876 +msgid "Login Name" msgstr "" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." +#: ../../Zotlabs/Module/Settings.php:877 +msgid "Login Password" msgstr "" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." +#: ../../Zotlabs/Module/Settings.php:878 +msgid "Expires (yyyy-mm-dd)" msgstr "" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." +#: ../../Zotlabs/Module/Settings.php:910 +msgid "Additional Features" msgstr "" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" +#: ../../Zotlabs/Module/Settings.php:934 +msgid "Connector Settings" msgstr "" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:74 -#: ../../include/widgets.php:639 -msgid "Channel Sources" +#: ../../Zotlabs/Module/Settings.php:981 +msgid "No special theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." +#: ../../Zotlabs/Module/Settings.php:984 +#, php-format +msgid "%s - (Experimental)" msgstr "" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" +#: ../../Zotlabs/Module/Settings.php:1035 +msgid "Display Settings" msgstr "" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +#: ../../Zotlabs/Module/Settings.php:1036 +msgid "Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" +#: ../../Zotlabs/Module/Settings.php:1037 +msgid "Custom Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" +#: ../../Zotlabs/Module/Settings.php:1038 +msgid "Content Settings" msgstr "" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Display Theme:" msgstr "" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" +#: ../../Zotlabs/Module/Settings.php:1045 +msgid "Select scheme" msgstr "" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." +#: ../../Zotlabs/Module/Settings.php:1047 +msgid "Mobile Theme:" msgstr "" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Preload images before rendering the page" msgstr "" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" msgstr "" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" +#: ../../Zotlabs/Module/Settings.php:1049 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Update browser every xx seconds" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum of 100 items" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" +#: ../../Zotlabs/Module/Settings.php:1052 +msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Link post titles to source" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 -#: ../../include/conversation.php:150 -msgid "comment" +#: ../../Zotlabs/Module/Settings.php:1054 +msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Use blog/list mode on channel page" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" +#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "(comments displayed separately)" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Use blog/list mode on grid page" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" +#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "click to expand content exceeding this height" msgstr "" -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "Grid page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Nobody except yourself" msgstr "" -#: ../../Zotlabs/Module/Api.php:83 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "Only those you specifically allow" msgstr "" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "Approved connections" msgstr "" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "Any connections" msgstr "" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "Anybody on this website" msgstr "" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." +#: ../../Zotlabs/Module/Settings.php:1095 +msgid "Anybody in this network" msgstr "" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." +#: ../../Zotlabs/Module/Settings.php:1096 +msgid "Anybody authenticated" msgstr "" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Import.php:548 -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." +#: ../../Zotlabs/Module/Settings.php:1171 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" +#: ../../Zotlabs/Module/Settings.php:1176 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" +#: ../../Zotlabs/Module/Settings.php:1185 +msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" +#: ../../Zotlabs/Module/Settings.php:1227 +msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" +#: ../../Zotlabs/Module/Settings.php:1234 +msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Import.php:554 -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." +#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 +msgid "Full Name:" msgstr "" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" +#: ../../Zotlabs/Module/Settings.php:1237 +msgid "Your Timezone:" msgstr "" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available memory" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Default Post Location:" msgstr "" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." +#: ../../Zotlabs/Module/Settings.php:1239 +msgid "Use Browser Location:" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "Adult Content" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" +#: ../../Zotlabs/Module/Settings.php:1243 +msgid "Security and Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" +#: ../../Zotlabs/Module/Settings.php:1246 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Hide my online presence" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" +#: ../../Zotlabs/Module/Settings.php:1250 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." +#: ../../Zotlabs/Module/Settings.php:1251 +msgid "" +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." +#: ../../Zotlabs/Module/Settings.php:1252 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" +#: ../../Zotlabs/Module/Settings.php:1253 +msgid "Private - default private, never open or public" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 -msgid "$Projectname Notification" +#: ../../Zotlabs/Module/Settings.php:1254 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 -msgid "$projectname" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "Allow others to tag your posts" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 -msgid "Thank You," +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 -#, php-format -msgid "%s Administrator" +#: ../../Zotlabs/Module/Settings.php:1258 +msgid "Advanced Privacy Settings" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:106 +#: ../../Zotlabs/Module/Settings.php:1260 #, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." +msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../Zotlabs/Module/Settings.php:1262 +msgid "Default Post and Publish Permissions" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +#: ../../Zotlabs/Module/Settings.php:1271 +msgid "Channel permissions category:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:193 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" +#: ../../Zotlabs/Module/Settings.php:1280 +msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" +#: ../../Zotlabs/Module/Settings.php:1281 +msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" +#: ../../Zotlabs/Module/Settings.php:1283 +msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" +#: ../../Zotlabs/Module/Settings.php:1284 +msgid "making an interesting profile change" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +#: ../../Zotlabs/Module/Settings.php:1285 +msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "Your connections are confirmed" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +#: ../../Zotlabs/Module/Settings.php:1288 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" +#: ../../Zotlabs/Module/Settings.php:1289 +msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" +#: ../../Zotlabs/Module/Settings.php:1290 +msgid "You receive a private message" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +#: ../../Zotlabs/Module/Settings.php:1291 +msgid "You receive a friend suggestion" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" +#: ../../Zotlabs/Module/Settings.php:1292 +msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +#: ../../Zotlabs/Module/Settings.php:1293 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +#: ../../Zotlabs/Module/Settings.php:1296 +msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" +#: ../../Zotlabs/Module/Settings.php:1298 +msgid "Unseen grid activity" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." +#: ../../Zotlabs/Module/Settings.php:1299 +msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" +#: ../../Zotlabs/Module/Settings.php:1300 +msgid "Unseen private messages" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +#: ../../Zotlabs/Module/Settings.php:1300 +#: ../../Zotlabs/Module/Settings.php:1305 +#: ../../Zotlabs/Module/Settings.php:1306 +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "Recommended" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:293 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +#: ../../Zotlabs/Module/Settings.php:1301 +msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" +#: ../../Zotlabs/Module/Settings.php:1302 +msgid "Events today" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" +#: ../../Zotlabs/Module/Settings.php:1304 +msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" +#: ../../Zotlabs/Module/Settings.php:1305 +msgid "System info messages" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" +#: ../../Zotlabs/Module/Settings.php:1306 +msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "New connections" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" +#: ../../Zotlabs/Module/Settings.php:1308 +msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" +#: ../../Zotlabs/Module/Settings.php:1309 +msgid "" +"Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" +#: ../../Zotlabs/Module/Settings.php:1313 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:92 -msgid "Suggest Channels" +#: ../../Zotlabs/Module/Settings.php:1314 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 -#: ../../boot.php:1713 -msgid "Login" +#: ../../Zotlabs/Module/Settings.php:1317 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 -msgid "Grid" +#: ../../Zotlabs/Module/Settings.php:1318 +msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 -msgid "Channel Home" +#: ../../Zotlabs/Module/Settings.php:1319 +msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:205 -#: ../../include/conversation.php:1669 ../../include/conversation.php:1672 -msgid "Events" +#: ../../Zotlabs/Module/Settings.php:1319 +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 -msgid "Directory" +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 -msgid "Mail" +#: ../../Zotlabs/Module/Settings.php:1322 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 -msgid "Chat" +#: ../../Zotlabs/Module/Settings.php:1324 +msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" +#: ../../Zotlabs/Module/Settings.php:1325 +msgid "Firefox Share $Projectname provider" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" +#: ../../Zotlabs/Module/Settings.php:1326 +msgid "Start calendar week on monday" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 -msgid "Features" +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 +msgid "$Projectname Notification" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 +msgid "$projectname" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 +msgid "Thank You," msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 +#, php-format +msgid "%s Administrator" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" +#: ../../Zotlabs/Lib/Enotify.php:104 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" +#: ../../Zotlabs/Lib/Enotify.php:108 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" +#: ../../Zotlabs/Lib/Enotify.php:164 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" +#: ../../Zotlabs/Lib/Enotify.php:172 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" +#: ../../Zotlabs/Lib/Enotify.php:181 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" +#: ../../Zotlabs/Lib/Enotify.php:202 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" +#: ../../Zotlabs/Lib/Enotify.php:204 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" +#: ../../Zotlabs/Lib/Enotify.php:206 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" +#: ../../Zotlabs/Lib/Enotify.php:244 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 -msgid "like" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 -msgid "dislike" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "Share This" +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "share" +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:276 -msgid "Delivery Report" +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:294 +#: ../../Zotlabs/Lib/Enotify.php:278 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 #, php-format -msgid "View %s's profile - %s" +msgid "You may visit their profile at %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "to" +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "via" +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "Wall-to-Wall" +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:330 -msgid "via Wall-To-Wall:" +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 -#, php-format -msgid "from %s" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/Enotify.php:303 #, php-format -msgid "Expires: %s" +msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Save Bookmarks" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:372 -msgid "Add to Calendar" +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:381 -msgid "Mark all seen" +#: ../../Zotlabs/Lib/Enotify.php:668 +#, php-format +msgid "commented on %s's post" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Bold" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Italic" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Underline" +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Quote" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1231 -msgid "Code" +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Image" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:93 +msgid "Suggest Channels" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Insert Link" +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 +#: ../../boot.php:1713 +msgid "Login" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:719 -msgid "Video" +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 +msgid "Grid" msgstr "" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 +msgid "Channel Home" msgstr "" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1679 +#: ../../include/conversation.php:1682 ../../include/nav.php:205 +msgid "Events" msgstr "" -#: ../../include/dba/dba_driver.php:171 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 +msgid "Directory" msgstr "" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 +msgid "Mail" msgstr "" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 +msgid "Chat" msgstr "" -#: ../../include/items.php:1143 -msgid "Visible to you only." +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" msgstr "" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" msgstr "" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" msgstr "" -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" msgstr "" -#: ../../include/items.php:1151 -msgid "Visible to all connections." +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 +msgid "Features" msgstr "" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" msgstr "" -#: ../../include/items.php:1155 -msgid "Visible to specific connections." +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" msgstr "" -#: ../../include/items.php:3918 -msgid "Privacy group is empty." +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" msgstr "" -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" msgstr "" -#: ../../include/items.php:3937 -msgid "Connection not found." +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:124 +msgid "Visible to your default audience" msgstr "" -#: ../../include/items.php:4290 -msgid "profile photo" +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:170 +msgid "Only me" msgstr "" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" msgstr "" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" msgstr "" -#: ../../include/photos.php:114 +#: ../../Zotlabs/Lib/PermissionDescription.php:109 #, php-format -msgid "Image exceeds website size limit of %lu bytes" +msgid "Any account on %s" msgstr "" -#: ../../include/photos.php:121 -msgid "Image file is empty." +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" msgstr "" -#: ../../include/photos.php:259 -msgid "Photo storage failed." +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" msgstr "" -#: ../../include/photos.php:299 -msgid "a new photo" +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" msgstr "" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" msgstr "" -#: ../../include/photos.php:506 ../../include/conversation.php:1655 -msgid "Photo Albums" +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." msgstr "" -#: ../../include/photos.php:510 -msgid "Upload New Photos" +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" msgstr "" -#: ../../include/features.php:50 -msgid "General Features" +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" msgstr "" -#: ../../include/features.php:52 -msgid "Content Expiration" +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" msgstr "" -#: ../../include/features.php:52 -msgid "Remove posts/comments and/or private messages at a future time" +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" msgstr "" -#: ../../include/features.php:53 -msgid "Multiple Profiles" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" msgstr "" -#: ../../include/features.php:53 -msgid "Ability to create multiple profiles" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +msgid "Select" msgstr "" -#: ../../include/features.php:54 -msgid "Advanced Profiles" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" msgstr "" -#: ../../include/features.php:54 -msgid "Additional profile sections and selections" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" msgstr "" -#: ../../include/features.php:55 -msgid "Profile Import/Export" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" msgstr "" -#: ../../include/features.php:55 -msgid "Save and load profile details across sites/channels" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" msgstr "" -#: ../../include/features.php:56 -msgid "Web Pages" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" msgstr "" -#: ../../include/features.php:56 -msgid "Provide managed web pages on your channel" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" msgstr "" -#: ../../include/features.php:57 -msgid "Provide a wiki for your channel" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" msgstr "" -#: ../../include/features.php:58 -msgid "Hide Rating" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" msgstr "" -#: ../../include/features.php:58 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" msgstr "" -#: ../../include/features.php:59 -msgid "Private Notes" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" msgstr "" -#: ../../include/features.php:59 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" msgstr "" -#: ../../include/features.php:60 -msgid "Navigation Channel Select" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +msgid "Message signature validated" msgstr "" -#: ../../include/features.php:60 -msgid "Change channels directly from within the navigation dropdown menu" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +msgid "Message signature incorrect" msgstr "" -#: ../../include/features.php:61 -msgid "Photo Location" +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" msgstr "" -#: ../../include/features.php:61 -msgid "If location data is available on uploaded photos, link this to a map." +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 +msgid "like" msgstr "" -#: ../../include/features.php:62 -msgid "Access Controlled Chatrooms" +#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 +msgid "dislike" msgstr "" -#: ../../include/features.php:62 -msgid "Provide chatrooms and chat services with access control." +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "Share This" msgstr "" -#: ../../include/features.php:63 -msgid "Smart Birthdays" +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "share" msgstr "" -#: ../../include/features.php:63 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." +#: ../../Zotlabs/Lib/ThreadItem.php:276 +msgid "Delivery Report" msgstr "" -#: ../../include/features.php:64 -msgid "Expert Mode" -msgstr "" +#: ../../Zotlabs/Lib/ThreadItem.php:294 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" -#: ../../include/features.php:64 -msgid "Enable Expert Mode to provide advanced configuration options" +#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 +#, php-format +msgid "View %s's profile - %s" msgstr "" -#: ../../include/features.php:65 -msgid "Premium Channel" +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "to" msgstr "" -#: ../../include/features.php:65 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "via" msgstr "" -#: ../../include/features.php:70 -msgid "Post Composition Features" +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "Wall-to-Wall" msgstr "" -#: ../../include/features.php:73 -msgid "Large Photos" +#: ../../Zotlabs/Lib/ThreadItem.php:330 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../include/features.php:73 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" +#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 +#, php-format +msgid "from %s" msgstr "" -#: ../../include/features.php:74 -msgid "Automatically import channel content from other channels or feeds" +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 +#, php-format +msgid "last edited: %s" msgstr "" -#: ../../include/features.php:75 -msgid "Even More Encryption" +#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 +#, php-format +msgid "Expires: %s" msgstr "" -#: ../../include/features.php:75 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Save Bookmarks" msgstr "" -#: ../../include/features.php:76 -msgid "Enable Voting Tools" +#: ../../Zotlabs/Lib/ThreadItem.php:372 +msgid "Add to Calendar" msgstr "" -#: ../../include/features.php:76 -msgid "Provide a class of post which others can vote on" +#: ../../Zotlabs/Lib/ThreadItem.php:381 +msgid "Mark all seen" msgstr "" -#: ../../include/features.php:77 -msgid "Delayed Posting" +#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" msgstr "" -#: ../../include/features.php:77 -msgid "Allow posts to be published at a later date" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1233 +msgid "Bold" msgstr "" -#: ../../include/features.php:78 -msgid "Suppress Duplicate Posts/Comments" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1234 +msgid "Italic" msgstr "" -#: ../../include/features.php:78 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1235 +msgid "Underline" msgstr "" -#: ../../include/features.php:84 -msgid "Network and Stream Filtering" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1236 +msgid "Quote" msgstr "" -#: ../../include/features.php:85 -msgid "Search by Date" +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1237 +msgid "Code" msgstr "" -#: ../../include/features.php:85 -msgid "Ability to select posts by date ranges" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Image" msgstr "" -#: ../../include/features.php:86 ../../include/group.php:311 -msgid "Privacy Groups" +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Insert Link" msgstr "" -#: ../../include/features.php:86 -msgid "Enable management and selection of privacy groups" +#: ../../Zotlabs/Lib/ThreadItem.php:719 +msgid "Video" msgstr "" -#: ../../include/features.php:87 ../../include/widgets.php:281 -msgid "Saved Searches" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." msgstr "" -#: ../../include/features.php:87 -msgid "Save search terms for re-use" +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../include/features.php:88 -msgid "Network Personal Tab" +#: ../../include/dba/dba_driver.php:171 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/features.php:88 -msgid "Enable tab to display only Network posts that you've interacted on" +#: ../../include/auth.php:148 +msgid "Logged out." msgstr "" -#: ../../include/features.php:89 -msgid "Network New Tab" +#: ../../include/auth.php:275 +msgid "Failed authentication" msgstr "" -#: ../../include/features.php:89 -msgid "Enable tab to display all new Network activity" +#: ../../include/auth.php:286 +msgid "Login failed." msgstr "" -#: ../../include/features.php:90 -msgid "Affinity Tool" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" msgstr "" -#: ../../include/features.php:90 -msgid "Filter stream activity by depth of relationships" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" msgstr "" -#: ../../include/features.php:91 -msgid "Connection Filtering" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " msgstr "" -#: ../../include/features.php:91 -msgid "Filter incoming posts from connections based on keywords/content" +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." msgstr "" -#: ../../include/features.php:92 -msgid "Show channel suggestions" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/features.php:97 -msgid "Post/Comment Tools" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" msgstr "" -#: ../../include/features.php:98 -msgid "Community Tagging" +#: ../../include/bbcode.php:346 +msgid "spoiler" msgstr "" -#: ../../include/features.php:98 -msgid "Ability to tag existing posts" +#: ../../include/bbcode.php:619 ../../include/wiki.php:525 +msgid "Different viewers will see this text differently" msgstr "" -#: ../../include/features.php:99 -msgid "Post Categories" +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" msgstr "" -#: ../../include/features.php:99 -msgid "Add categories to your posts" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/features.php:100 -msgid "Emoji Reactions" +#: ../../include/follow.php:32 +msgid "Channel location missing." msgstr "" -#: ../../include/features.php:100 -msgid "Add emoji reaction ability to posts" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/features.php:101 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/features.php:101 -msgid "Ability to file posts under folders" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." msgstr "" -#: ../../include/features.php:102 -msgid "Dislike Posts" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." msgstr "" -#: ../../include/features.php:102 -msgid "Ability to dislike posts/comments" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/features.php:103 -msgid "Star Posts" +#: ../../include/api.php:1330 +msgid "Public Timeline" msgstr "" -#: ../../include/features.php:103 -msgid "Ability to mark special posts with a star indicator" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/features.php:104 -msgid "Tag Cloud" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/features.php:104 -msgid "Provide a personal tag cloud on your channel page" +#: ../../include/conversation.php:243 ../../include/text.php:1013 +#: ../../include/text.php:1018 +msgid "poked" msgstr "" -#: ../../include/api.php:1337 -msgid "Public Timeline" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" +#: ../../include/conversation.php:713 +msgid "Categories:" msgstr "" -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" +#: ../../include/conversation.php:714 +msgid "Filed under:" msgstr "" -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." +#: ../../include/conversation.php:741 +msgid "View in context" msgstr "" -#: ../../include/acl_selectors.php:272 -msgid "Show" +#: ../../include/conversation.php:851 +msgid "remove" msgstr "" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" +#: ../../include/conversation.php:855 ../../include/nav.php:251 +msgid "Loading..." msgstr "" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" msgstr "" -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These " -"permissions set who is allowed to view the post." +#: ../../include/conversation.php:952 +msgid "View Source" msgstr "" -#: ../../include/datetime.php:135 -msgid "Birthday" +#: ../../include/conversation.php:953 +msgid "Follow Thread" msgstr "" -#: ../../include/datetime.php:137 -msgid "Age: " +#: ../../include/conversation.php:954 +msgid "Unfollow Thread" msgstr "" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" +#: ../../include/conversation.php:959 +msgid "Activity/Posts" msgstr "" -#: ../../include/datetime.php:272 ../../boot.php:2549 -msgid "never" +#: ../../include/conversation.php:961 +msgid "Edit Connection" msgstr "" -#: ../../include/datetime.php:278 -msgid "less than a second ago" +#: ../../include/conversation.php:962 +msgid "Message" msgstr "" -#: ../../include/datetime.php:296 +#: ../../include/conversation.php:1079 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" +msgid "%s likes this." msgstr "" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" +#: ../../include/conversation.php:1079 +#, php-format +msgid "%s doesn't like this." +msgstr "" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" +#: ../../include/conversation.php:1083 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" +#: ../../include/conversation.php:1085 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" +#: ../../include/conversation.php:1091 +msgid "and" +msgstr "" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" +#: ../../include/conversation.php:1094 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:562 +#: ../../include/conversation.php:1095 #, php-format -msgid "%1$s's birthday" +msgid "%s like this." msgstr "" -#: ../../include/datetime.php:563 +#: ../../include/conversation.php:1095 #, php-format -msgid "Happy Birthday %1$s" -msgstr "" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "" - -#: ../../include/selectors.php:33 -msgid "Daily" +msgid "%s don't like this." msgstr "" -#: ../../include/selectors.php:34 -msgid "Weekly" +#: ../../include/conversation.php:1138 +msgid "Set your location" msgstr "" -#: ../../include/selectors.php:35 -msgid "Monthly" +#: ../../include/conversation.php:1139 +msgid "Clear browser location" msgstr "" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Male" +#: ../../include/conversation.php:1187 +msgid "Tag term:" msgstr "" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Female" +#: ../../include/conversation.php:1188 +msgid "Where are you right now?" msgstr "" -#: ../../include/selectors.php:49 -msgid "Currently Male" +#: ../../include/conversation.php:1197 +msgid "Comments enabled" msgstr "" -#: ../../include/selectors.php:49 -msgid "Currently Female" +#: ../../include/conversation.php:1198 +msgid "Comments disabled" msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Male" +#: ../../include/conversation.php:1228 +msgid "Page link name" msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Female" +#: ../../include/conversation.php:1231 +msgid "Post as" msgstr "" -#: ../../include/selectors.php:49 -msgid "Transgender" +#: ../../include/conversation.php:1245 +msgid "Toggle voting" msgstr "" -#: ../../include/selectors.php:49 -msgid "Intersex" +#: ../../include/conversation.php:1248 +msgid "Disable comments" msgstr "" -#: ../../include/selectors.php:49 -msgid "Transsexual" +#: ../../include/conversation.php:1249 +msgid "Toggle comments" msgstr "" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" +#: ../../include/conversation.php:1257 +msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/selectors.php:49 -msgid "Neuter" +#: ../../include/conversation.php:1284 +msgid "Set publish date" msgstr "" -#: ../../include/selectors.php:49 -msgid "Non-specific" +#: ../../include/conversation.php:1533 +msgid "Discover" msgstr "" -#: ../../include/selectors.php:49 -msgid "Undecided" +#: ../../include/conversation.php:1536 +msgid "Imported public streams" msgstr "" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" +#: ../../include/conversation.php:1541 +msgid "Commented Order" msgstr "" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" +#: ../../include/conversation.php:1544 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/selectors.php:85 -msgid "Gay" +#: ../../include/conversation.php:1548 +msgid "Posted Order" msgstr "" -#: ../../include/selectors.php:85 -msgid "Lesbian" +#: ../../include/conversation.php:1551 +msgid "Sort by Post Date" msgstr "" -#: ../../include/selectors.php:85 -msgid "No Preference" +#: ../../include/conversation.php:1559 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/selectors.php:85 -msgid "Bisexual" +#: ../../include/conversation.php:1568 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/selectors.php:85 -msgid "Autosexual" +#: ../../include/conversation.php:1574 +msgid "Starred" msgstr "" -#: ../../include/selectors.php:85 -msgid "Abstinent" +#: ../../include/conversation.php:1577 +msgid "Favourite Posts" msgstr "" -#: ../../include/selectors.php:85 -msgid "Virgin" +#: ../../include/conversation.php:1584 +msgid "Spam" msgstr "" -#: ../../include/selectors.php:85 -msgid "Deviant" +#: ../../include/conversation.php:1587 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/selectors.php:85 -msgid "Fetish" +#: ../../include/conversation.php:1644 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/selectors.php:85 -msgid "Oodles" +#: ../../include/conversation.php:1653 +msgid "About" msgstr "" -#: ../../include/selectors.php:85 -msgid "Nonsexual" +#: ../../include/conversation.php:1656 +msgid "Profile Details" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" +#: ../../include/conversation.php:1665 ../../include/photos.php:506 +msgid "Photo Albums" msgstr "" -#: ../../include/selectors.php:123 -msgid "Lonely" +#: ../../include/conversation.php:1672 +msgid "Files and Storage" msgstr "" -#: ../../include/selectors.php:123 -msgid "Available" +#: ../../include/conversation.php:1692 ../../include/conversation.php:1695 +#: ../../include/widgets.php:850 +msgid "Chatrooms" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unavailable" +#: ../../include/conversation.php:1705 ../../include/nav.php:104 +msgid "Bookmarks" msgstr "" -#: ../../include/selectors.php:123 -msgid "Has crush" +#: ../../include/conversation.php:1708 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/selectors.php:123 -msgid "Infatuated" +#: ../../include/conversation.php:1718 +msgid "Manage Webpages" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" +#: ../../include/conversation.php:1783 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1786 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1792 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1795 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1798 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/features.php:50 +msgid "General Features" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unfaithful" +#: ../../include/features.php:52 +msgid "Content Expiration" msgstr "" -#: ../../include/selectors.php:123 -msgid "Sex Addict" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" +#: ../../include/features.php:53 +msgid "Multiple Profiles" msgstr "" -#: ../../include/selectors.php:123 -msgid "Casual" +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/selectors.php:123 -msgid "Engaged" +#: ../../include/features.php:54 +msgid "Advanced Profiles" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" msgstr "" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" +#: ../../include/features.php:55 +msgid "Profile Import/Export" msgstr "" -#: ../../include/selectors.php:123 -msgid "Partners" +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" +#: ../../include/features.php:56 +msgid "Web Pages" msgstr "" -#: ../../include/selectors.php:123 -msgid "Common law" +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../include/selectors.php:123 -msgid "Happy" +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" msgstr "" -#: ../../include/selectors.php:123 -msgid "Not looking" +#: ../../include/features.php:58 +msgid "Hide Rating" msgstr "" -#: ../../include/selectors.php:123 -msgid "Swinger" +#: ../../include/features.php:58 +msgid "" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." msgstr "" -#: ../../include/selectors.php:123 -msgid "Betrayed" +#: ../../include/features.php:59 +msgid "Private Notes" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unstable" +#: ../../include/features.php:60 +msgid "Navigation Channel Select" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" +#: ../../include/features.php:61 +msgid "Photo Location" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" +#: ../../include/features.php:61 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../include/selectors.php:123 -msgid "Uncertain" +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." msgstr "" -#: ../../include/selectors.php:123 -msgid "Don't care" +#: ../../include/features.php:63 +msgid "Smart Birthdays" msgstr "" -#: ../../include/selectors.php:123 -msgid "Ask me" +#: ../../include/features.php:63 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." msgstr "" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." +#: ../../include/features.php:64 +msgid "Expert Mode" msgstr "" -#: ../../include/follow.php:32 -msgid "Channel location missing." +#: ../../include/features.php:64 +msgid "Enable Expert Mode to provide advanced configuration options" msgstr "" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." +#: ../../include/features.php:65 +msgid "Premium Channel" msgstr "" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." +#: ../../include/features.php:65 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" msgstr "" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." +#: ../../include/features.php:70 +msgid "Post Composition Features" msgstr "" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." +#: ../../include/features.php:73 +msgid "Large Photos" msgstr "" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." +#: ../../include/features.php:73 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -#: ../../include/text.php:404 -msgid "prev" +#: ../../include/features.php:74 +msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../include/text.php:406 -msgid "first" +#: ../../include/features.php:75 +msgid "Even More Encryption" msgstr "" -#: ../../include/text.php:435 -msgid "last" +#: ../../include/features.php:75 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../include/text.php:438 -msgid "next" +#: ../../include/features.php:76 +msgid "Enable Voting Tools" msgstr "" -#: ../../include/text.php:448 -msgid "older" +#: ../../include/features.php:76 +msgid "Provide a class of post which others can vote on" msgstr "" -#: ../../include/text.php:450 -msgid "newer" +#: ../../include/features.php:77 +msgid "Disable Comments" msgstr "" -#: ../../include/text.php:843 -msgid "No connections" +#: ../../include/features.php:77 +msgid "Provide the option to disable comments for a post" msgstr "" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" +#: ../../include/features.php:78 +msgid "Delayed Posting" msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" +#: ../../include/features.php:78 +msgid "Allow posts to be published at a later date" msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -#: ../../include/conversation.php:243 -msgid "poked" +#: ../../include/features.php:79 +msgid "Suppress Duplicate Posts/Comments" msgstr "" -#: ../../include/text.php:1019 -msgid "ping" +#: ../../include/features.php:79 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." msgstr "" -#: ../../include/text.php:1019 -msgid "pinged" +#: ../../include/features.php:85 +msgid "Network and Stream Filtering" msgstr "" -#: ../../include/text.php:1020 -msgid "prod" +#: ../../include/features.php:86 +msgid "Search by Date" msgstr "" -#: ../../include/text.php:1020 -msgid "prodded" +#: ../../include/features.php:86 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/text.php:1021 -msgid "slap" +#: ../../include/features.php:87 ../../include/group.php:311 +msgid "Privacy Groups" msgstr "" -#: ../../include/text.php:1021 -msgid "slapped" +#: ../../include/features.php:87 +msgid "Enable management and selection of privacy groups" msgstr "" -#: ../../include/text.php:1022 -msgid "finger" +#: ../../include/features.php:88 ../../include/widgets.php:281 +msgid "Saved Searches" msgstr "" -#: ../../include/text.php:1022 -msgid "fingered" +#: ../../include/features.php:88 +msgid "Save search terms for re-use" msgstr "" -#: ../../include/text.php:1023 -msgid "rebuff" +#: ../../include/features.php:89 +msgid "Network Personal Tab" msgstr "" -#: ../../include/text.php:1023 -msgid "rebuffed" +#: ../../include/features.php:89 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/text.php:1035 -msgid "happy" +#: ../../include/features.php:90 +msgid "Network New Tab" msgstr "" -#: ../../include/text.php:1036 -msgid "sad" +#: ../../include/features.php:90 +msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/text.php:1037 -msgid "mellow" +#: ../../include/features.php:91 +msgid "Affinity Tool" msgstr "" -#: ../../include/text.php:1038 -msgid "tired" +#: ../../include/features.php:91 +msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/text.php:1039 -msgid "perky" +#: ../../include/features.php:92 +msgid "Connection Filtering" msgstr "" -#: ../../include/text.php:1040 -msgid "angry" +#: ../../include/features.php:92 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../include/text.php:1041 -msgid "stupefied" +#: ../../include/features.php:93 +msgid "Show channel suggestions" msgstr "" -#: ../../include/text.php:1042 -msgid "puzzled" +#: ../../include/features.php:98 +msgid "Post/Comment Tools" msgstr "" -#: ../../include/text.php:1043 -msgid "interested" +#: ../../include/features.php:99 +msgid "Community Tagging" msgstr "" -#: ../../include/text.php:1044 -msgid "bitter" +#: ../../include/features.php:99 +msgid "Ability to tag existing posts" msgstr "" -#: ../../include/text.php:1045 -msgid "cheerful" +#: ../../include/features.php:100 +msgid "Post Categories" msgstr "" -#: ../../include/text.php:1046 -msgid "alive" +#: ../../include/features.php:100 +msgid "Add categories to your posts" msgstr "" -#: ../../include/text.php:1047 -msgid "annoyed" +#: ../../include/features.php:101 +msgid "Emoji Reactions" msgstr "" -#: ../../include/text.php:1048 -msgid "anxious" +#: ../../include/features.php:101 +msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../include/text.php:1049 -msgid "cranky" +#: ../../include/features.php:102 ../../include/widgets.php:310 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" msgstr "" -#: ../../include/text.php:1050 -msgid "disturbed" +#: ../../include/features.php:102 +msgid "Ability to file posts under folders" msgstr "" -#: ../../include/text.php:1051 -msgid "frustrated" +#: ../../include/features.php:103 +msgid "Dislike Posts" msgstr "" -#: ../../include/text.php:1052 -msgid "depressed" +#: ../../include/features.php:103 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/text.php:1053 -msgid "motivated" +#: ../../include/features.php:104 +msgid "Star Posts" msgstr "" -#: ../../include/text.php:1054 -msgid "relaxed" +#: ../../include/features.php:104 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/text.php:1055 -msgid "surprised" +#: ../../include/features.php:105 +msgid "Tag Cloud" msgstr "" -#: ../../include/text.php:1239 ../../include/js_strings.php:70 -msgid "Monday" +#: ../../include/features.php:105 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/text.php:1239 ../../include/js_strings.php:71 -msgid "Tuesday" +#: ../../include/datetime.php:135 +msgid "Birthday" msgstr "" -#: ../../include/text.php:1239 ../../include/js_strings.php:72 -msgid "Wednesday" +#: ../../include/datetime.php:137 +msgid "Age: " msgstr "" -#: ../../include/text.php:1239 ../../include/js_strings.php:73 -msgid "Thursday" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/text.php:1239 ../../include/js_strings.php:74 -msgid "Friday" +#: ../../include/datetime.php:272 ../../boot.php:2552 +msgid "never" msgstr "" -#: ../../include/text.php:1239 ../../include/js_strings.php:75 -msgid "Saturday" +#: ../../include/datetime.php:278 +msgid "less than a second ago" msgstr "" -#: ../../include/text.php:1239 ../../include/js_strings.php:69 -msgid "Sunday" +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" msgstr "" -#: ../../include/text.php:1243 ../../include/js_strings.php:45 -msgid "January" -msgstr "" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1243 ../../include/js_strings.php:46 -msgid "February" -msgstr "" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1243 ../../include/js_strings.php:47 -msgid "March" -msgstr "" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1243 ../../include/js_strings.php:48 -msgid "April" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" msgstr "" -#: ../../include/text.php:1243 -msgid "May" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/text.php:1243 ../../include/js_strings.php:50 -msgid "June" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/text.php:1243 ../../include/js_strings.php:51 -msgid "July" +#: ../../include/photos.php:121 +msgid "Image file is empty." msgstr "" -#: ../../include/text.php:1243 ../../include/js_strings.php:52 -msgid "August" +#: ../../include/photos.php:259 +msgid "Photo storage failed." msgstr "" -#: ../../include/text.php:1243 ../../include/js_strings.php:53 -msgid "September" +#: ../../include/photos.php:299 +msgid "a new photo" msgstr "" -#: ../../include/text.php:1243 ../../include/js_strings.php:54 -msgid "October" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" msgstr "" -#: ../../include/text.php:1243 ../../include/js_strings.php:55 -msgid "November" +#: ../../include/photos.php:510 +msgid "Upload New Photos" msgstr "" -#: ../../include/text.php:1243 ../../include/js_strings.php:56 -msgid "December" +#: ../../include/selectors.php:30 +msgid "Frequently" msgstr "" -#: ../../include/text.php:1320 ../../include/text.php:1324 -msgid "Unknown Attachment" +#: ../../include/selectors.php:31 +msgid "Hourly" msgstr "" -#: ../../include/text.php:1326 -msgid "unknown" +#: ../../include/selectors.php:32 +msgid "Twice daily" msgstr "" -#: ../../include/text.php:1362 -msgid "remove category" +#: ../../include/selectors.php:33 +msgid "Daily" msgstr "" -#: ../../include/text.php:1439 -msgid "remove from file" +#: ../../include/selectors.php:34 +msgid "Weekly" msgstr "" -#: ../../include/text.php:1738 ../../include/text.php:1809 -msgid "default" +#: ../../include/selectors.php:35 +msgid "Monthly" msgstr "" -#: ../../include/text.php:1746 -msgid "Page layout" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" msgstr "" -#: ../../include/text.php:1746 -msgid "You can create your own with the layouts tool" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" msgstr "" -#: ../../include/text.php:1788 -msgid "Page content type" +#: ../../include/selectors.php:49 +msgid "Currently Male" msgstr "" -#: ../../include/text.php:1821 -msgid "Select an alternate language" +#: ../../include/selectors.php:49 +msgid "Currently Female" msgstr "" -#: ../../include/text.php:1958 -msgid "activity" +#: ../../include/selectors.php:49 +msgid "Mostly Male" msgstr "" -#: ../../include/text.php:2259 -msgid "Design Tools" +#: ../../include/selectors.php:49 +msgid "Mostly Female" msgstr "" -#: ../../include/text.php:2265 -msgid "Pages" +#: ../../include/selectors.php:49 +msgid "Transgender" msgstr "" -#: ../../include/text.php:2287 -msgid "Import website..." +#: ../../include/selectors.php:49 +msgid "Intersex" msgstr "" -#: ../../include/text.php:2288 -msgid "Select folder to import" +#: ../../include/selectors.php:49 +msgid "Transsexual" msgstr "" -#: ../../include/text.php:2289 -msgid "Import from a zipped folder:" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" msgstr "" -#: ../../include/text.php:2290 -msgid "Import from cloud files:" +#: ../../include/selectors.php:49 +msgid "Neuter" msgstr "" -#: ../../include/text.php:2291 -msgid "/cloud/channel/path/to/folder" +#: ../../include/selectors.php:49 +msgid "Non-specific" msgstr "" -#: ../../include/text.php:2292 -msgid "Enter path to website files" +#: ../../include/selectors.php:49 +msgid "Undecided" msgstr "" -#: ../../include/text.php:2293 -msgid "Select folder" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" msgstr "" -#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1712 -msgid "Logout" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" msgstr "" -#: ../../include/nav.php:84 ../../include/nav.php:117 -msgid "End this session" +#: ../../include/selectors.php:85 +msgid "Gay" msgstr "" -#: ../../include/nav.php:87 ../../include/nav.php:148 -msgid "Home" +#: ../../include/selectors.php:85 +msgid "Lesbian" msgstr "" -#: ../../include/nav.php:87 -msgid "Your posts and conversations" +#: ../../include/selectors.php:85 +msgid "No Preference" msgstr "" -#: ../../include/nav.php:88 -msgid "Your profile page" +#: ../../include/selectors.php:85 +msgid "Bisexual" msgstr "" -#: ../../include/nav.php:90 -msgid "Manage/Edit profiles" +#: ../../include/selectors.php:85 +msgid "Autosexual" msgstr "" -#: ../../include/nav.php:92 ../../include/channel.php:963 -msgid "Edit Profile" +#: ../../include/selectors.php:85 +msgid "Abstinent" msgstr "" -#: ../../include/nav.php:92 -msgid "Edit your profile" +#: ../../include/selectors.php:85 +msgid "Virgin" msgstr "" -#: ../../include/nav.php:94 -msgid "Your photos" +#: ../../include/selectors.php:85 +msgid "Deviant" msgstr "" -#: ../../include/nav.php:95 -msgid "Your files" +#: ../../include/selectors.php:85 +msgid "Fetish" msgstr "" -#: ../../include/nav.php:98 -msgid "Your chatrooms" +#: ../../include/selectors.php:85 +msgid "Oodles" msgstr "" -#: ../../include/nav.php:104 ../../include/conversation.php:1695 -msgid "Bookmarks" +#: ../../include/selectors.php:85 +msgid "Nonsexual" msgstr "" -#: ../../include/nav.php:104 -msgid "Your bookmarks" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" msgstr "" -#: ../../include/nav.php:108 -msgid "Your webpages" +#: ../../include/selectors.php:123 +msgid "Lonely" msgstr "" -#: ../../include/nav.php:110 -msgid "Your wiki" +#: ../../include/selectors.php:123 +msgid "Available" msgstr "" -#: ../../include/nav.php:114 -msgid "Sign in" +#: ../../include/selectors.php:123 +msgid "Unavailable" msgstr "" -#: ../../include/nav.php:131 -#, php-format -msgid "%s - click to logout" +#: ../../include/selectors.php:123 +msgid "Has crush" msgstr "" -#: ../../include/nav.php:134 -msgid "Remote authentication" +#: ../../include/selectors.php:123 +msgid "Infatuated" msgstr "" -#: ../../include/nav.php:134 -msgid "Click to authenticate to your home hub" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" msgstr "" -#: ../../include/nav.php:148 -msgid "Home Page" +#: ../../include/selectors.php:123 +msgid "Unfaithful" msgstr "" -#: ../../include/nav.php:151 -msgid "Create an account" +#: ../../include/selectors.php:123 +msgid "Sex Addict" msgstr "" -#: ../../include/nav.php:163 -msgid "Help and documentation" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" msgstr "" -#: ../../include/nav.php:167 -msgid "Applications, utilities, links, games" +#: ../../include/selectors.php:123 +msgid "Casual" msgstr "" -#: ../../include/nav.php:169 -msgid "Search site @name, #tag, ?docs, content" +#: ../../include/selectors.php:123 +msgid "Engaged" msgstr "" -#: ../../include/nav.php:171 -msgid "Channel Directory" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" msgstr "" -#: ../../include/nav.php:183 -msgid "Your grid" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" msgstr "" -#: ../../include/nav.php:184 -msgid "Mark all grid notifications seen" +#: ../../include/selectors.php:123 +msgid "Partners" msgstr "" -#: ../../include/nav.php:186 -msgid "Channel home" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" msgstr "" -#: ../../include/nav.php:187 -msgid "Mark all channel notifications seen" +#: ../../include/selectors.php:123 +msgid "Common law" msgstr "" -#: ../../include/nav.php:193 -msgid "Notices" +#: ../../include/selectors.php:123 +msgid "Happy" msgstr "" -#: ../../include/nav.php:193 -msgid "Notifications" +#: ../../include/selectors.php:123 +msgid "Not looking" msgstr "" -#: ../../include/nav.php:194 -msgid "See all notifications" +#: ../../include/selectors.php:123 +msgid "Swinger" msgstr "" -#: ../../include/nav.php:197 -msgid "Private mail" +#: ../../include/selectors.php:123 +msgid "Betrayed" msgstr "" -#: ../../include/nav.php:198 -msgid "See all private messages" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" msgstr "" -#: ../../include/nav.php:199 -msgid "Mark all private messages seen" +#: ../../include/selectors.php:123 +msgid "Unstable" msgstr "" -#: ../../include/nav.php:200 ../../include/widgets.php:667 -msgid "Inbox" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" msgstr "" -#: ../../include/nav.php:201 ../../include/widgets.php:672 -msgid "Outbox" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" msgstr "" -#: ../../include/nav.php:202 ../../include/widgets.php:677 -msgid "New Message" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" msgstr "" -#: ../../include/nav.php:205 -msgid "Event Calendar" +#: ../../include/selectors.php:123 +msgid "Uncertain" msgstr "" -#: ../../include/nav.php:206 -msgid "See all events" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" msgstr "" -#: ../../include/nav.php:207 -msgid "Mark all events seen" +#: ../../include/selectors.php:123 +msgid "Don't care" msgstr "" -#: ../../include/nav.php:210 -msgid "Manage Your Channels" +#: ../../include/selectors.php:123 +msgid "Ask me" msgstr "" -#: ../../include/nav.php:212 -msgid "Account/Channel Settings" +#: ../../include/permissions.php:29 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/nav.php:220 ../../include/widgets.php:1524 -msgid "Admin" +#: ../../include/permissions.php:33 +msgid "Can view my webpages" msgstr "" -#: ../../include/nav.php:220 -msgid "Site Setup and Configuration" +#: ../../include/permissions.php:37 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/nav.php:251 ../../include/conversation.php:855 -msgid "Loading..." +#: ../../include/permissions.php:40 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/nav.php:256 -msgid "@name, #tag, ?doc, content" +#: ../../include/permissions.php:40 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/nav.php:257 -msgid "Please wait..." +#: ../../include/permissions.php:42 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" +#: ../../include/permissions.php:42 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" +#: ../../include/permissions.php:43 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" +#: ../../include/permissions.php:44 +msgid "Can write to my file storage and photos" msgstr "" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" +#: ../../include/permissions.php:45 +msgid "Can edit my webpages" msgstr "" -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." +#: ../../include/permissions.php:47 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/event.php:1014 -msgid "Not specified" +#: ../../include/permissions.php:49 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/event.php:1015 -msgid "Needs Action" +#: ../../include/permissions.php:49 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/event.php:1016 -msgid "Completed" +#: ../../include/security.php:109 +msgid "guest:" msgstr "" -#: ../../include/event.php:1017 -msgid "In Process" +#: ../../include/security.php:527 +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/event.php:1018 -msgid "Cancelled" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" msgstr "" #: ../../include/group.php:26 @@ -8434,221 +8212,269 @@ msgstr "" msgid "Title" msgstr "" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 +msgid "Categories" msgstr "" -#: ../../include/channel.php:67 -msgid "Empty name" +#: ../../include/widgets.php:103 +msgid "System" msgstr "" -#: ../../include/channel.php:70 -msgid "Name too long" +#: ../../include/widgets.php:106 +msgid "New App" msgstr "" -#: ../../include/channel.php:181 -msgid "No account identifier" +#: ../../include/widgets.php:154 +msgid "Suggestions" msgstr "" -#: ../../include/channel.php:193 -msgid "Nickname is required." +#: ../../include/widgets.php:155 +msgid "See more..." msgstr "" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../include/widgets.php:181 +msgid "Add New Connection" msgstr "" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" +#: ../../include/widgets.php:182 +msgid "Enter channel address" msgstr "" -#: ../../include/channel.php:341 -msgid "Default Profile" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" msgstr "" -#: ../../include/channel.php:813 -msgid "Requested channel is not available." +#: ../../include/widgets.php:199 +msgid "Notes" msgstr "" -#: ../../include/channel.php:960 -msgid "Create New Profile" +#: ../../include/widgets.php:273 +msgid "Remove term" msgstr "" -#: ../../include/channel.php:980 -msgid "Visible to everybody" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" msgstr "" -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" +#: ../../include/widgets.php:354 +msgid "Archives" msgstr "" -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" +#: ../../include/widgets.php:516 +msgid "Refresh" msgstr "" -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" +#: ../../include/widgets.php:556 +msgid "Account settings" msgstr "" -#: ../../include/channel.php:1056 -msgid "Online Now" +#: ../../include/widgets.php:562 +msgid "Channel settings" msgstr "" -#: ../../include/channel.php:1171 -msgid "Like this channel" +#: ../../include/widgets.php:571 +msgid "Additional features" msgstr "" -#: ../../include/channel.php:1195 -msgid "j F, Y" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" msgstr "" -#: ../../include/channel.php:1196 -msgid "j F" +#: ../../include/widgets.php:584 +msgid "Display settings" msgstr "" -#: ../../include/channel.php:1203 -msgid "Birthday:" +#: ../../include/widgets.php:591 +msgid "Manage locations" msgstr "" -#: ../../include/channel.php:1216 -#, php-format -msgid "for %1$d %2$s" +#: ../../include/widgets.php:600 +msgid "Export channel" msgstr "" -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" +#: ../../include/widgets.php:607 +msgid "Connected apps" msgstr "" -#: ../../include/channel.php:1225 -msgid "Tags:" +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" msgstr "" -#: ../../include/channel.php:1227 -msgid "Political Views:" +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" msgstr "" -#: ../../include/channel.php:1229 -msgid "Religion:" +#: ../../include/widgets.php:662 +msgid "Combined View" msgstr "" -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" +#: ../../include/widgets.php:667 ../../include/nav.php:200 +msgid "Inbox" msgstr "" -#: ../../include/channel.php:1235 -msgid "Likes:" +#: ../../include/widgets.php:672 ../../include/nav.php:201 +msgid "Outbox" msgstr "" -#: ../../include/channel.php:1237 -msgid "Dislikes:" +#: ../../include/widgets.php:677 ../../include/nav.php:202 +msgid "New Message" msgstr "" -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" msgstr "" -#: ../../include/channel.php:1241 -msgid "My other channels:" +#: ../../include/widgets.php:698 +msgid "Received Messages" msgstr "" -#: ../../include/channel.php:1243 -msgid "Musical interests:" +#: ../../include/widgets.php:702 +msgid "Sent Messages" msgstr "" -#: ../../include/channel.php:1245 -msgid "Books, literature:" +#: ../../include/widgets.php:716 +msgid "No messages." msgstr "" -#: ../../include/channel.php:1247 -msgid "Television:" +#: ../../include/widgets.php:734 +msgid "Delete conversation" msgstr "" -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" +#: ../../include/widgets.php:760 +msgid "Events Tools" msgstr "" -#: ../../include/channel.php:1251 -msgid "Love/Romance:" +#: ../../include/widgets.php:761 +msgid "Export Calendar" msgstr "" -#: ../../include/channel.php:1253 -msgid "Work/employment:" +#: ../../include/widgets.php:762 +msgid "Import Calendar" msgstr "" -#: ../../include/channel.php:1255 -msgid "School/education:" +#: ../../include/widgets.php:854 +msgid "Overview" msgstr "" -#: ../../include/channel.php:1276 -msgid "Like this thing" +#: ../../include/widgets.php:861 +msgid "Chat Members" msgstr "" -#: ../../include/network.php:704 -msgid "view full size" +#: ../../include/widgets.php:883 +msgid "Wiki List" msgstr "" -#: ../../include/network.php:1935 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" +#: ../../include/widgets.php:921 +msgid "Wiki Pages" msgstr "" -#: ../../include/network.php:1949 -msgid "No Subject" +#: ../../include/widgets.php:956 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/network.php:2203 ../../include/network.php:2204 -msgid "Friendica" +#: ../../include/widgets.php:979 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 +msgid "photo/image" +msgstr "" + +#: ../../include/widgets.php:1180 +msgid "Click to show more" +msgstr "" + +#: ../../include/widgets.php:1331 +msgid "Rating Tools" +msgstr "" + +#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 +msgid "Rate Me" +msgstr "" + +#: ../../include/widgets.php:1340 +msgid "View Ratings" +msgstr "" + +#: ../../include/widgets.php:1424 +msgid "Forums" +msgstr "" + +#: ../../include/widgets.php:1453 +msgid "Tasks" +msgstr "" + +#: ../../include/widgets.php:1462 +msgid "Documentation" msgstr "" -#: ../../include/network.php:2205 -msgid "OStatus" +#: ../../include/widgets.php:1464 +msgid "Project/Site Information" msgstr "" -#: ../../include/network.php:2206 -msgid "GNU-Social" +#: ../../include/widgets.php:1465 +msgid "For Members" msgstr "" -#: ../../include/network.php:2207 -msgid "RSS/Atom" +#: ../../include/widgets.php:1466 +msgid "For Administrators" msgstr "" -#: ../../include/network.php:2209 -msgid "Diaspora" +#: ../../include/widgets.php:1467 +msgid "For Developers" msgstr "" -#: ../../include/network.php:2210 -msgid "Facebook" +#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 +msgid "Member registrations waiting for confirmation" msgstr "" -#: ../../include/network.php:2211 -msgid "Zot" +#: ../../include/widgets.php:1497 +msgid "Inspect queue" msgstr "" -#: ../../include/network.php:2212 -msgid "LinkedIn" +#: ../../include/widgets.php:1499 +msgid "DB updates" msgstr "" -#: ../../include/network.php:2213 -msgid "XMPP/IM" +#: ../../include/widgets.php:1524 ../../include/nav.php:220 +msgid "Admin" msgstr "" -#: ../../include/network.php:2214 -msgid "MySpace" +#: ../../include/widgets.php:1525 +msgid "Plugin Features" msgstr "" #: ../../include/bb2diaspora.php:398 msgid "Attachments:" msgstr "" +#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 +#: ../../include/event.php:69 +msgid "l F d, Y \\@ g:i A" +msgstr "" + #: ../../include/bb2diaspora.php:487 msgid "$Projectname event notification:" msgstr "" +#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 +#: ../../include/event.php:73 +msgid "Starts:" +msgstr "" + +#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 +#: ../../include/event.php:77 +msgid "Finishes:" +msgstr "" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" @@ -8763,922 +8589,1101 @@ msgstr "" msgid "%d days" msgstr "" -#: ../../include/js_strings.php:38 -msgid "about a month" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "" + +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "" + +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "" + +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "" + +#: ../../include/js_strings.php:42 +msgid " " +msgstr "" + +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "" + +#: ../../include/js_strings.php:45 ../../include/text.php:1243 +msgid "January" +msgstr "" + +#: ../../include/js_strings.php:46 ../../include/text.php:1243 +msgid "February" +msgstr "" + +#: ../../include/js_strings.php:47 ../../include/text.php:1243 +msgid "March" +msgstr "" + +#: ../../include/js_strings.php:48 ../../include/text.php:1243 +msgid "April" +msgstr "" + +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:50 ../../include/text.php:1243 +msgid "June" +msgstr "" + +#: ../../include/js_strings.php:51 ../../include/text.php:1243 +msgid "July" +msgstr "" + +#: ../../include/js_strings.php:52 ../../include/text.php:1243 +msgid "August" +msgstr "" + +#: ../../include/js_strings.php:53 ../../include/text.php:1243 +msgid "September" +msgstr "" + +#: ../../include/js_strings.php:54 ../../include/text.php:1243 +msgid "October" +msgstr "" + +#: ../../include/js_strings.php:55 ../../include/text.php:1243 +msgid "November" +msgstr "" + +#: ../../include/js_strings.php:56 ../../include/text.php:1243 +msgid "December" +msgstr "" + +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "" + +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "" + +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "" + +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "" + +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "" + +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "" + +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "" + +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "" + +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "" + +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "" + +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "" + +#: ../../include/js_strings.php:69 ../../include/text.php:1239 +msgid "Sunday" +msgstr "" + +#: ../../include/js_strings.php:70 ../../include/text.php:1239 +msgid "Monday" +msgstr "" + +#: ../../include/js_strings.php:71 ../../include/text.php:1239 +msgid "Tuesday" +msgstr "" + +#: ../../include/js_strings.php:72 ../../include/text.php:1239 +msgid "Wednesday" +msgstr "" + +#: ../../include/js_strings.php:73 ../../include/text.php:1239 +msgid "Thursday" +msgstr "" + +#: ../../include/js_strings.php:74 ../../include/text.php:1239 +msgid "Friday" +msgstr "" + +#: ../../include/js_strings.php:75 ../../include/text.php:1239 +msgid "Saturday" +msgstr "" + +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "" + +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "" + +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "" + +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "" + +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "" + +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "" + +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "" + +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "" + +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "" + +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "" + +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "" + +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "" + +#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1712 +msgid "Logout" +msgstr "" + +#: ../../include/nav.php:84 ../../include/nav.php:117 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:87 ../../include/nav.php:148 +msgid "Home" +msgstr "" + +#: ../../include/nav.php:87 +msgid "Your posts and conversations" +msgstr "" + +#: ../../include/nav.php:88 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:92 ../../include/channel.php:963 +msgid "Edit Profile" msgstr "" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" +#: ../../include/nav.php:92 +msgid "Edit your profile" msgstr "" -#: ../../include/js_strings.php:40 -msgid "about a year" +#: ../../include/nav.php:94 +msgid "Your photos" msgstr "" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" +#: ../../include/nav.php:95 +msgid "Your files" msgstr "" -#: ../../include/js_strings.php:42 -msgid " " +#: ../../include/nav.php:98 +msgid "Your chatrooms" msgstr "" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" +#: ../../include/nav.php:104 +msgid "Your bookmarks" msgstr "" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" +#: ../../include/nav.php:108 +msgid "Your webpages" msgstr "" -#: ../../include/js_strings.php:57 -msgid "Jan" +#: ../../include/nav.php:110 +msgid "Your wiki" msgstr "" -#: ../../include/js_strings.php:58 -msgid "Feb" +#: ../../include/nav.php:114 +msgid "Sign in" msgstr "" -#: ../../include/js_strings.php:59 -msgid "Mar" +#: ../../include/nav.php:131 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/js_strings.php:60 -msgid "Apr" +#: ../../include/nav.php:134 +msgid "Remote authentication" msgstr "" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" +#: ../../include/nav.php:134 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/js_strings.php:62 -msgid "Jun" +#: ../../include/nav.php:148 +msgid "Home Page" msgstr "" -#: ../../include/js_strings.php:63 -msgid "Jul" +#: ../../include/nav.php:151 +msgid "Create an account" msgstr "" -#: ../../include/js_strings.php:64 -msgid "Aug" +#: ../../include/nav.php:163 +msgid "Help and documentation" msgstr "" -#: ../../include/js_strings.php:65 -msgid "Sep" +#: ../../include/nav.php:167 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/js_strings.php:66 -msgid "Oct" +#: ../../include/nav.php:169 +msgid "Search site @name, #tag, ?docs, content" msgstr "" -#: ../../include/js_strings.php:67 -msgid "Nov" +#: ../../include/nav.php:171 +msgid "Channel Directory" msgstr "" -#: ../../include/js_strings.php:68 -msgid "Dec" +#: ../../include/nav.php:183 +msgid "Your grid" msgstr "" -#: ../../include/js_strings.php:76 -msgid "Sun" +#: ../../include/nav.php:184 +msgid "Mark all grid notifications seen" msgstr "" -#: ../../include/js_strings.php:77 -msgid "Mon" +#: ../../include/nav.php:186 +msgid "Channel home" msgstr "" -#: ../../include/js_strings.php:78 -msgid "Tue" +#: ../../include/nav.php:187 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/js_strings.php:79 -msgid "Wed" +#: ../../include/nav.php:193 +msgid "Notices" msgstr "" -#: ../../include/js_strings.php:80 -msgid "Thu" +#: ../../include/nav.php:193 +msgid "Notifications" msgstr "" -#: ../../include/js_strings.php:81 -msgid "Fri" +#: ../../include/nav.php:194 +msgid "See all notifications" msgstr "" -#: ../../include/js_strings.php:82 -msgid "Sat" +#: ../../include/nav.php:197 +msgid "Private mail" msgstr "" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" +#: ../../include/nav.php:198 +msgid "See all private messages" msgstr "" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" +#: ../../include/nav.php:199 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" +#: ../../include/nav.php:205 +msgid "Event Calendar" msgstr "" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" +#: ../../include/nav.php:206 +msgid "See all events" msgstr "" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" +#: ../../include/nav.php:207 +msgid "Mark all events seen" msgstr "" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/nav.php:210 +msgid "Manage Your Channels" msgstr "" -#: ../../include/security.php:527 -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." +#: ../../include/nav.php:212 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/account.php:28 -msgid "Not a valid email address" +#: ../../include/nav.php:220 +msgid "Site Setup and Configuration" msgstr "" -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/nav.php:256 +msgid "@name, #tag, ?doc, content" msgstr "" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." +#: ../../include/nav.php:257 +msgid "Please wait..." msgstr "" -#: ../../include/account.php:68 -msgid "An invitation is required." +#: ../../include/network.php:704 +msgid "view full size" msgstr "" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." +#: ../../include/network.php:1935 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" msgstr "" -#: ../../include/account.php:122 -msgid "Please enter the required information." +#: ../../include/network.php:1949 +msgid "No Subject" msgstr "" -#: ../../include/account.php:189 -msgid "Failed to store account information." +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" msgstr "" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" +#: ../../include/network.php:2205 +msgid "OStatus" msgstr "" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" +#: ../../include/network.php:2206 +msgid "GNU-Social" msgstr "" -#: ../../include/account.php:339 -msgid "your registration password" +#: ../../include/network.php:2207 +msgid "RSS/Atom" msgstr "" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" +#: ../../include/network.php:2209 +msgid "Diaspora" msgstr "" -#: ../../include/account.php:414 -msgid "Account approved." +#: ../../include/network.php:2210 +msgid "Facebook" msgstr "" -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/network.php:2211 +msgid "Zot" msgstr "" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." +#: ../../include/network.php:2212 +msgid "LinkedIn" msgstr "" -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/network.php:2213 +msgid "XMPP/IM" msgstr "" -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." +#: ../../include/network.php:2214 +msgid "MySpace" msgstr "" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " +#: ../../include/items.php:899 ../../include/items.php:944 +msgid "(Unknown)" msgstr "" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." +#: ../../include/items.php:1143 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" +#: ../../include/items.php:1145 +msgid "Visible to you only." msgstr "" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" +#: ../../include/items.php:1147 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/bbcode.php:346 -msgid "spoiler" +#: ../../include/items.php:1149 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1151 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/bbcode.php:619 ../../include/wiki.php:525 -msgid "Different viewers will see this text differently" +#: ../../include/items.php:1153 +msgid "Visible to all connections." msgstr "" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" +#: ../../include/items.php:1155 +msgid "Visible to approved connections." msgstr "" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../include/items.php:1157 +msgid "Visible to specific connections." msgstr "" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/items.php:3920 +msgid "Privacy group is empty." msgstr "" -#: ../../include/conversation.php:694 +#: ../../include/items.php:3927 #, php-format -msgid "View %s's profile @ %s" +msgid "Privacy group: %s" msgstr "" -#: ../../include/conversation.php:713 -msgid "Categories:" +#: ../../include/items.php:3939 +msgid "Connection not found." msgstr "" -#: ../../include/conversation.php:714 -msgid "Filed under:" +#: ../../include/items.php:4292 +msgid "profile photo" msgstr "" -#: ../../include/conversation.php:741 -msgid "View in context" +#: ../../include/text.php:404 +msgid "prev" msgstr "" -#: ../../include/conversation.php:851 -msgid "remove" +#: ../../include/text.php:406 +msgid "first" msgstr "" -#: ../../include/conversation.php:856 -msgid "Delete Selected Items" +#: ../../include/text.php:435 +msgid "last" msgstr "" -#: ../../include/conversation.php:952 -msgid "View Source" +#: ../../include/text.php:438 +msgid "next" msgstr "" -#: ../../include/conversation.php:953 -msgid "Follow Thread" +#: ../../include/text.php:448 +msgid "older" msgstr "" -#: ../../include/conversation.php:954 -msgid "Unfollow Thread" +#: ../../include/text.php:450 +msgid "newer" msgstr "" -#: ../../include/conversation.php:959 -msgid "Activity/Posts" +#: ../../include/text.php:843 +msgid "No connections" msgstr "" -#: ../../include/conversation.php:961 -msgid "Edit Connection" +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" msgstr "" -#: ../../include/conversation.php:962 -msgid "Message" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" msgstr "" -#: ../../include/conversation.php:1079 -#, php-format -msgid "%s likes this." +#: ../../include/text.php:1019 +msgid "ping" msgstr "" -#: ../../include/conversation.php:1079 -#, php-format -msgid "%s doesn't like this." +#: ../../include/text.php:1019 +msgid "pinged" msgstr "" -#: ../../include/conversation.php:1083 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1085 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1020 +msgid "prod" +msgstr "" -#: ../../include/conversation.php:1091 -msgid "and" +#: ../../include/text.php:1020 +msgid "prodded" msgstr "" -#: ../../include/conversation.php:1094 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1021 +msgid "slap" +msgstr "" -#: ../../include/conversation.php:1095 -#, php-format -msgid "%s like this." +#: ../../include/text.php:1021 +msgid "slapped" msgstr "" -#: ../../include/conversation.php:1095 -#, php-format -msgid "%s don't like this." +#: ../../include/text.php:1022 +msgid "finger" msgstr "" -#: ../../include/conversation.php:1134 -msgid "Set your location" +#: ../../include/text.php:1022 +msgid "fingered" msgstr "" -#: ../../include/conversation.php:1135 -msgid "Clear browser location" +#: ../../include/text.php:1023 +msgid "rebuff" msgstr "" -#: ../../include/conversation.php:1183 -msgid "Tag term:" +#: ../../include/text.php:1023 +msgid "rebuffed" msgstr "" -#: ../../include/conversation.php:1184 -msgid "Where are you right now?" +#: ../../include/text.php:1035 +msgid "happy" msgstr "" -#: ../../include/conversation.php:1222 -msgid "Page link name" +#: ../../include/text.php:1036 +msgid "sad" msgstr "" -#: ../../include/conversation.php:1225 -msgid "Post as" +#: ../../include/text.php:1037 +msgid "mellow" msgstr "" -#: ../../include/conversation.php:1239 -msgid "Toggle voting" +#: ../../include/text.php:1038 +msgid "tired" msgstr "" -#: ../../include/conversation.php:1247 -msgid "Categories (optional, comma-separated list)" +#: ../../include/text.php:1039 +msgid "perky" msgstr "" -#: ../../include/conversation.php:1274 -msgid "Set publish date" +#: ../../include/text.php:1040 +msgid "angry" msgstr "" -#: ../../include/conversation.php:1523 -msgid "Discover" +#: ../../include/text.php:1041 +msgid "stupefied" msgstr "" -#: ../../include/conversation.php:1526 -msgid "Imported public streams" +#: ../../include/text.php:1042 +msgid "puzzled" msgstr "" -#: ../../include/conversation.php:1531 -msgid "Commented Order" +#: ../../include/text.php:1043 +msgid "interested" msgstr "" -#: ../../include/conversation.php:1534 -msgid "Sort by Comment Date" +#: ../../include/text.php:1044 +msgid "bitter" msgstr "" -#: ../../include/conversation.php:1538 -msgid "Posted Order" +#: ../../include/text.php:1045 +msgid "cheerful" msgstr "" -#: ../../include/conversation.php:1541 -msgid "Sort by Post Date" +#: ../../include/text.php:1046 +msgid "alive" msgstr "" -#: ../../include/conversation.php:1549 -msgid "Posts that mention or involve you" +#: ../../include/text.php:1047 +msgid "annoyed" msgstr "" -#: ../../include/conversation.php:1558 -msgid "Activity Stream - by date" +#: ../../include/text.php:1048 +msgid "anxious" msgstr "" -#: ../../include/conversation.php:1564 -msgid "Starred" +#: ../../include/text.php:1049 +msgid "cranky" msgstr "" -#: ../../include/conversation.php:1567 -msgid "Favourite Posts" +#: ../../include/text.php:1050 +msgid "disturbed" msgstr "" -#: ../../include/conversation.php:1574 -msgid "Spam" +#: ../../include/text.php:1051 +msgid "frustrated" msgstr "" -#: ../../include/conversation.php:1577 -msgid "Posts flagged as SPAM" +#: ../../include/text.php:1052 +msgid "depressed" msgstr "" -#: ../../include/conversation.php:1634 -msgid "Status Messages and Posts" +#: ../../include/text.php:1053 +msgid "motivated" msgstr "" -#: ../../include/conversation.php:1643 -msgid "About" +#: ../../include/text.php:1054 +msgid "relaxed" msgstr "" -#: ../../include/conversation.php:1646 -msgid "Profile Details" +#: ../../include/text.php:1055 +msgid "surprised" msgstr "" -#: ../../include/conversation.php:1662 -msgid "Files and Storage" +#: ../../include/text.php:1243 +msgid "May" msgstr "" -#: ../../include/conversation.php:1682 ../../include/conversation.php:1685 -#: ../../include/widgets.php:850 -msgid "Chatrooms" +#: ../../include/text.php:1320 ../../include/text.php:1324 +msgid "Unknown Attachment" msgstr "" -#: ../../include/conversation.php:1698 -msgid "Saved Bookmarks" +#: ../../include/text.php:1326 +msgid "unknown" msgstr "" -#: ../../include/conversation.php:1708 -msgid "Manage Webpages" +#: ../../include/text.php:1362 +msgid "remove category" msgstr "" -#: ../../include/conversation.php:1773 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1439 +msgid "remove from file" +msgstr "" -#: ../../include/conversation.php:1776 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1738 ../../include/text.php:1809 +msgid "default" +msgstr "" -#: ../../include/conversation.php:1779 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1746 +msgid "Page layout" +msgstr "" -#: ../../include/conversation.php:1782 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1746 +msgid "You can create your own with the layouts tool" +msgstr "" -#: ../../include/conversation.php:1785 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1788 +msgid "Page content type" +msgstr "" -#: ../../include/conversation.php:1788 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1821 +msgid "Select an alternate language" +msgstr "" -#: ../../include/oembed.php:340 -msgid "Embedded content" +#: ../../include/text.php:1958 +msgid "activity" msgstr "" -#: ../../include/oembed.php:349 -msgid "Embedding disabled" +#: ../../include/text.php:2259 +msgid "Design Tools" msgstr "" -#: ../../include/activities.php:41 -msgid " and " +#: ../../include/text.php:2265 +msgid "Pages" msgstr "" -#: ../../include/activities.php:49 -msgid "public profile" +#: ../../include/text.php:2287 +msgid "Import website..." msgstr "" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../include/text.php:2288 +msgid "Select folder to import" msgstr "" -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../include/text.php:2289 +msgid "Import from a zipped folder:" msgstr "" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/text.php:2290 +msgid "Import from cloud files:" msgstr "" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" +#: ../../include/text.php:2291 +msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" +#: ../../include/text.php:2292 +msgid "Enter path to website files" msgstr "" -#: ../../include/taxonomy.php:293 -msgid "Keywords" +#: ../../include/text.php:2293 +msgid "Select folder" msgstr "" -#: ../../include/taxonomy.php:314 -msgid "have" +#: ../../include/acl_selectors.php:174 +msgid "Who can see this?" msgstr "" -#: ../../include/taxonomy.php:314 -msgid "has" +#: ../../include/acl_selectors.php:175 +msgid "Custom selection" msgstr "" -#: ../../include/taxonomy.php:315 -msgid "want" +#: ../../include/acl_selectors.php:176 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." msgstr "" -#: ../../include/taxonomy.php:315 -msgid "wants" +#: ../../include/acl_selectors.php:177 +msgid "Show" msgstr "" -#: ../../include/taxonomy.php:316 -msgid "likes" +#: ../../include/acl_selectors.php:178 +msgid "Don't show" msgstr "" -#: ../../include/taxonomy.php:317 -msgid "dislikes" +#: ../../include/acl_selectors.php:184 +msgid "Other networks and post services" msgstr "" -#: ../../include/permissions.php:29 -msgid "Can view my normal stream and posts" +#: ../../include/acl_selectors.php:214 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These " +"permissions set who is allowed to view the post." msgstr "" -#: ../../include/permissions.php:33 -msgid "Can view my webpages" +#: ../../include/oembed.php:340 +msgid "Embedded content" msgstr "" -#: ../../include/permissions.php:37 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/oembed.php:349 +msgid "Embedding disabled" msgstr "" -#: ../../include/permissions.php:40 -msgid "Can like/dislike stuff" +#: ../../include/activities.php:41 +msgid " and " msgstr "" -#: ../../include/permissions.php:40 -msgid "Profiles and things other than posts/comments" +#: ../../include/activities.php:49 +msgid "public profile" msgstr "" -#: ../../include/permissions.php:42 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/permissions.php:42 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/permissions.php:43 -msgid "Can chat with me (when available)" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/permissions.php:44 -msgid "Can write to my file storage and photos" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." msgstr "" -#: ../../include/permissions.php:45 -msgid "Can edit my webpages" +#: ../../include/attach.php:500 +msgid "No source file." msgstr "" -#: ../../include/permissions.php:47 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/permissions.php:49 -msgid "Can administer my channel resources" +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/permissions.php:49 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/widgets.php:103 -msgid "System" +#: ../../include/attach.php:689 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/widgets.php:106 -msgid "New App" +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/widgets.php:154 -msgid "Suggestions" +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/widgets.php:155 -msgid "See more..." +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." msgstr "" -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" msgstr "" -#: ../../include/widgets.php:181 -msgid "Add New Connection" +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" msgstr "" -#: ../../include/widgets.php:182 -msgid "Enter channel address" +#: ../../include/attach.php:1026 +msgid "Path not found." msgstr "" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" +#: ../../include/attach.php:1084 +msgid "mkdir failed." msgstr "" -#: ../../include/widgets.php:199 -msgid "Notes" +#: ../../include/attach.php:1088 +msgid "database storage failed." msgstr "" -#: ../../include/widgets.php:273 -msgid "Remove term" +#: ../../include/attach.php:1136 +msgid "Empty path" msgstr "" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" msgstr "" -#: ../../include/widgets.php:354 -msgid "Archives" +#: ../../include/taxonomy.php:293 +msgid "Keywords" msgstr "" -#: ../../include/widgets.php:516 -msgid "Refresh" +#: ../../include/taxonomy.php:314 +msgid "have" msgstr "" -#: ../../include/widgets.php:556 -msgid "Account settings" +#: ../../include/taxonomy.php:314 +msgid "has" msgstr "" -#: ../../include/widgets.php:562 -msgid "Channel settings" +#: ../../include/taxonomy.php:315 +msgid "want" msgstr "" -#: ../../include/widgets.php:571 -msgid "Additional features" +#: ../../include/taxonomy.php:315 +msgid "wants" msgstr "" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" +#: ../../include/taxonomy.php:316 +msgid "likes" msgstr "" -#: ../../include/widgets.php:584 -msgid "Display settings" +#: ../../include/taxonomy.php:317 +msgid "dislikes" msgstr "" -#: ../../include/widgets.php:591 -msgid "Manage locations" +#: ../../include/zot.php:700 +msgid "Invalid data packet" msgstr "" -#: ../../include/widgets.php:600 -msgid "Export channel" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/widgets.php:607 -msgid "Connected apps" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" +#: ../../include/zot.php:3706 +msgid "invalid target signature" msgstr "" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/widgets.php:662 -msgid "Combined View" +#: ../../include/channel.php:67 +msgid "Empty name" msgstr "" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" +#: ../../include/channel.php:70 +msgid "Name too long" msgstr "" -#: ../../include/widgets.php:698 -msgid "Received Messages" +#: ../../include/channel.php:181 +msgid "No account identifier" msgstr "" -#: ../../include/widgets.php:702 -msgid "Sent Messages" +#: ../../include/channel.php:193 +msgid "Nickname is required." msgstr "" -#: ../../include/widgets.php:716 -msgid "No messages." +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/widgets.php:734 -msgid "Delete conversation" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/widgets.php:760 -msgid "Events Tools" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/widgets.php:761 -msgid "Export Calendar" +#: ../../include/channel.php:341 +msgid "Default Profile" msgstr "" -#: ../../include/widgets.php:762 -msgid "Import Calendar" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." msgstr "" -#: ../../include/widgets.php:854 -msgid "Overview" +#: ../../include/channel.php:960 +msgid "Create New Profile" msgstr "" -#: ../../include/widgets.php:861 -msgid "Chat Members" +#: ../../include/channel.php:980 +msgid "Visible to everybody" msgstr "" - -#: ../../include/widgets.php:883 -msgid "Wiki List" + +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" msgstr "" -#: ../../include/widgets.php:921 -msgid "Wiki Pages" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" msgstr "" -#: ../../include/widgets.php:956 -msgid "Bookmarked Chatrooms" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" msgstr "" -#: ../../include/widgets.php:979 -msgid "Suggested Chatrooms" +#: ../../include/channel.php:1056 +msgid "Online Now" msgstr "" -#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 -msgid "photo/image" +#: ../../include/channel.php:1171 +msgid "Like this channel" msgstr "" -#: ../../include/widgets.php:1180 -msgid "Click to show more" +#: ../../include/channel.php:1195 +msgid "j F, Y" msgstr "" -#: ../../include/widgets.php:1331 -msgid "Rating Tools" +#: ../../include/channel.php:1196 +msgid "j F" msgstr "" -#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 -msgid "Rate Me" +#: ../../include/channel.php:1203 +msgid "Birthday:" msgstr "" -#: ../../include/widgets.php:1340 -msgid "View Ratings" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: ../../include/widgets.php:1424 -msgid "Forums" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" msgstr "" -#: ../../include/widgets.php:1453 -msgid "Tasks" +#: ../../include/channel.php:1225 +msgid "Tags:" msgstr "" -#: ../../include/widgets.php:1462 -msgid "Documentation" +#: ../../include/channel.php:1227 +msgid "Political Views:" msgstr "" -#: ../../include/widgets.php:1464 -msgid "Project/Site Information" +#: ../../include/channel.php:1229 +msgid "Religion:" msgstr "" -#: ../../include/widgets.php:1465 -msgid "For Members" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/widgets.php:1466 -msgid "For Administrators" +#: ../../include/channel.php:1235 +msgid "Likes:" msgstr "" -#: ../../include/widgets.php:1467 -msgid "For Developers" +#: ../../include/channel.php:1237 +msgid "Dislikes:" msgstr "" -#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 -msgid "Member registrations waiting for confirmation" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/widgets.php:1497 -msgid "Inspect queue" +#: ../../include/channel.php:1241 +msgid "My other channels:" msgstr "" -#: ../../include/widgets.php:1499 -msgid "DB updates" +#: ../../include/channel.php:1243 +msgid "Musical interests:" msgstr "" -#: ../../include/widgets.php:1525 -msgid "Plugin Features" +#: ../../include/channel.php:1245 +msgid "Books, literature:" msgstr "" -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." +#: ../../include/channel.php:1247 +msgid "Television:" msgstr "" -#: ../../include/attach.php:500 -msgid "No source file." +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" +#: ../../include/channel.php:1251 +msgid "Love/Romance:" msgstr "" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" +#: ../../include/channel.php:1253 +msgid "Work/employment:" msgstr "" -#: ../../include/attach.php:675 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../include/channel.php:1255 +msgid "School/education:" msgstr "" -#: ../../include/attach.php:689 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../include/channel.php:1276 +msgid "Like this thing" msgstr "" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/connections.php:95 +msgid "New window" msgstr "" -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" +#: ../../include/event.php:1021 +msgid "Not specified" msgstr "" -#: ../../include/attach.php:1026 -msgid "Path not found." +#: ../../include/event.php:1022 +msgid "Needs Action" msgstr "" -#: ../../include/attach.php:1084 -msgid "mkdir failed." +#: ../../include/event.php:1023 +msgid "Completed" msgstr "" -#: ../../include/attach.php:1088 -msgid "database storage failed." +#: ../../include/event.php:1024 +msgid "In Process" msgstr "" -#: ../../include/attach.php:1136 -msgid "Empty path" +#: ../../include/event.php:1025 +msgid "Cancelled" msgstr "" #: ../../include/contact_widgets.php:11 @@ -9759,181 +9764,203 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" -#: ../../include/auth.php:148 -msgid "Logged out." +#: ../../include/account.php:28 +msgid "Not a valid email address" msgstr "" -#: ../../include/auth.php:275 -msgid "Failed authentication" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/auth.php:286 -msgid "Login failed." +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/connections.php:95 -msgid "New window" +#: ../../include/account.php:68 +msgid "An invitation is required." msgstr "" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/connections.php:214 +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:249 #, php-format -msgid "User '%s' deleted" +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/zot.php:697 -msgid "Invalid data packet" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" +#: ../../include/account.php:339 +msgid "your registration password" msgstr "" -#: ../../include/zot.php:2326 +#: ../../include/account.php:342 ../../include/account.php:402 #, php-format -msgid "Unable to verify site signature for %s" +msgid "Registration details for %s" msgstr "" -#: ../../include/zot.php:3703 -msgid "invalid target signature" +#: ../../include/account.php:414 +msgid "Account approved." msgstr "" -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Focus (Hubzilla default)" +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Theme settings" +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." msgstr "" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:6 +msgid "Focus (Hubzilla default)" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Theme settings" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:111 msgid "Narrow navbar" msgstr "" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar background color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Navigation bar gradient top color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Navigation bar gradient bottom color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Navigation active button gradient top color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Navigation active button gradient bottom color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Navigation bar border color " msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Navigation bar icon color " msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Navigation bar active icon color " msgstr "" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:120 msgid "link color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set font-color for banner" msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the background color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set the background image" msgstr "" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set the background color of items" msgstr "" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:125 msgid "Set the background color of comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set the border color of comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set the indent for comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:122 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set the basic color for item icons" msgstr "" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Set the hover color for item icons" msgstr "" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Set font-size for the entire application" msgstr "" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Example: 14px" msgstr "" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set font-size for posts and comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set font-color for posts and comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:127 +#: ../../view/theme/redbasic/php/config.php:133 msgid "Set radius of corners" msgstr "" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:134 msgid "Set shadow depth of photos" msgstr "" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Set maximum width of content region in pixel" msgstr "" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Leave empty for default width" msgstr "" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:136 msgid "Left align page content" msgstr "" -#: ../../view/theme/redbasic/php/config.php:131 +#: ../../view/theme/redbasic/php/config.php:137 msgid "Set minimum opacity of nav bar - to hide it" msgstr "" -#: ../../view/theme/redbasic/php/config.php:132 +#: ../../view/theme/redbasic/php/config.php:138 msgid "Set size of conversation author photo" msgstr "" -#: ../../view/theme/redbasic/php/config.php:133 +#: ../../view/theme/redbasic/php/config.php:139 msgid "Set size of followup author photos" msgstr "" @@ -9979,24 +10006,24 @@ msgstr "" msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2286 +#: ../../boot.php:2289 msgid "toggle mobile" msgstr "" -#: ../../boot.php:2441 +#: ../../boot.php:2444 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2444 +#: ../../boot.php:2447 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "" -#: ../../boot.php:2548 +#: ../../boot.php:2551 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2552 +#: ../../boot.php:2555 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "" -- cgit v1.2.3 From 80ed05d45d0e9f7f23848919a3a8af388988fdd9 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 20 Aug 2016 15:22:30 -0400 Subject: Export of pages and their layouts to a zip file works. Bug on importing the exported zip file for pages. --- Zotlabs/Lib/ExtendedZip.php | 57 ++++++++++++++ Zotlabs/Module/Webpages.php | 142 +++++++++++++++++++++++++++++++++-- include/import.php | 45 ++++++++++- view/tpl/webpage_export_list.tpl | 6 +- view/tpl/website_portation_tools.tpl | 2 +- 5 files changed, 242 insertions(+), 10 deletions(-) create mode 100644 Zotlabs/Lib/ExtendedZip.php diff --git a/Zotlabs/Lib/ExtendedZip.php b/Zotlabs/Lib/ExtendedZip.php new file mode 100644 index 000000000..a40110c55 --- /dev/null +++ b/Zotlabs/Lib/ExtendedZip.php @@ -0,0 +1,57 @@ +addEmptyDir($localname); + $this->_addTree($dirname, $localname); + } + + // Internal function, to recurse + protected function _addTree($dirname, $localname) { + $dir = opendir($dirname); + while ($filename = readdir($dir)) { + // Discard . and .. + if ($filename == '.' || $filename == '..') + continue; + + // Proceed according to type + $path = $dirname . '/' . $filename; + $localpath = $localname ? ($localname . '/' . $filename) : $filename; + if (is_dir($path)) { + // Directory: add & recurse + $this->addEmptyDir($localpath); + $this->_addTree($path, $localpath); + } + else if (is_file($path)) { + // File: just add + $this->addFile($path, $localpath); + } + } + closedir($dir); + } + + // Helper function + public static function zipTree($dirname, $zipFilename, $flags = 0, $localname = '') { + $zip = new self(); + $zip->open($zipFilename, $flags); + $zip->addTree($dirname, $localname); + $zip->close(); + } + +} diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php index b927f95df..daa323007 100644 --- a/Zotlabs/Module/Webpages.php +++ b/Zotlabs/Module/Webpages.php @@ -70,7 +70,6 @@ class Webpages extends \Zotlabs\Web\Controller { require_once('include/import.php'); $elements = get_webpage_elements($channel, 'pages'); - logger(json_encode($elements), LOGGER_DEBUG); $o .= replace_macros(get_markup_template('webpage_export_list.tpl'), array( '$title' => t('Export Webpage Elements'), '$exportbtn' => t('Export selected'), @@ -405,20 +404,151 @@ class Webpages extends \Zotlabs\Web\Controller { if(isset($_POST['w_download'])) { $_SESSION['action'] = 'export_select_list'; $_SESSION['export'] = 'zipfile'; - if(isset($_POST['filename'])) { - $filename = filter_var($_POST['filename'], FILTER_SANITIZE_ENCODED); + if(isset($_POST['zipfilename']) && $_POST['zipfilename'] !== '') { + $filename = filter_var($_POST['zipfilename'], FILTER_SANITIZE_ENCODED); } else { $filename = 'website.zip'; } + $_SESSION['zipfilename'] = $filename; + } + + break; + + case 'zipfile': + + $tmp_folder_name = random_string(10); + $zip_folder_name = random_string(10); + $zip_filename = $_SESSION['zipfilename']; + $tmp_folderpath = '/tmp/' . $tmp_folder_name; + $zip_folderpath = '/tmp/' . $zip_folder_name; + if (!mkdir($zip_folderpath, 0770, false)) { + logger('Error creating zip file export folder: ' . $zip_folderpath, LOGGER_NORMAL); + json_return_and_die(array('message' => 'Error creating zip file export folder')); + } + $zip_filepath = '/tmp/' . $zip_folder_name . '/' . $zip_filename; + + $checkedpages = $_POST['page']; + $pages = []; + if (!empty($checkedpages)) { + foreach ($checkedpages as $mid) { + + $channel = \App::get_channel(); + $p = q("select * from iconfig left join item on iconfig.iid = item.id + where item.uid = %d and item.mid = '%s' and iconfig.cat = 'system' and iconfig.k = 'WEBPAGE' and item_type = %d", + intval($channel['channel_id']), + dbesc($mid), + intval(ITEM_TYPE_WEBPAGE) + ); + + if($p) { + foreach ($p as $pp) { + // Get the associated layout + $layoutinfo = array(); + if($pp['layout_mid']) { + // TODO: Should we check for ownership here if the layout is already associated with the page? + $l = q("select iconfig.v, iconfig.k, mimetype, title, body from iconfig + left join item on item.id = iconfig.iid + where mid = '%s' and item.uid = %d and iconfig.cat = 'system' and iconfig.k = 'PDL' order by iconfig.v asc limit 1", + dbesc($pp['layout_mid']), + intval($channel['channel_id']) + ); + if($l) { + $l = $l[0]; + $layoutinfo = array( + 'body' => $l['body'], + 'mimetype' => $l['mimetype'], + 'description' => $l['title'], + 'name' => $l['v'], + 'json' => array( + 'description' => $l['title'], + 'name' => $l['v'], + ) + ); + switch ($layoutinfo['mimetype']) { + case 'text/bbcode': + default: + $layout_ext = 'bbcode'; + break; + } + $layout_filename = $layoutinfo['name'] . '.' . $layout_ext; + $tmp_layoutfolder = $tmp_folderpath . '/layouts/' . $layoutinfo['name']; + $layout_filepath = $tmp_layoutfolder . '/' . $layout_filename; + $layoutinfo['json']['contentfile'] = $layout_filename; + $layout_jsonpath = $tmp_layoutfolder . '/layout.json'; + if (!mkdir($tmp_layoutfolder, 0770, true)) { + logger('Error creating temp export folder: ' . $tmp_layoutfolder, LOGGER_NORMAL); + json_return_and_die(array('message' => 'Error creating temp export folder')); + } + file_put_contents($layout_filepath, $layoutinfo['body']); + file_put_contents($layout_jsonpath, json_encode($layoutinfo['json'], JSON_UNESCAPED_SLASHES)); + } + } + switch ($pp['mimetype']) { + case 'text/html': + $page_ext = 'html'; + break; + case 'text/bbcode': + $page_ext = 'bbcode'; + break; + case 'text/markdown': + $page_ext = 'md'; + break; + case 'application/x-pdl': + $page_ext = 'pdl'; + break; + case 'application/x-php': + $page_ext = 'php'; + break; + default: + break; + } + $pageinfo = array( + 'title' => $pp['title'], + 'body' => $pp['body'], + 'pagelink' => $pp['v'], + 'mimetype' => $pp['mimetype'], + 'contentfile' => $pp['v'] . '.' . $page_ext, + 'layout' => ((x($layoutinfo,'name')) ? $layoutinfo['name'] : ''), + 'json' => array( + 'title' => $pp['title'], + 'pagelink' => $pp['v'], + 'mimetype' => $pp['mimetype'], + 'layout' => ((x($layoutinfo,'name')) ? $layoutinfo['name'] : ''), + ) + ); + $page_filename = $pageinfo['pagelink'] . '.' . $page_ext; + $tmp_pagefolder = $tmp_folderpath . '/pages/' . $pageinfo['pagelink']; + $page_filepath = $tmp_pagefolder . '/' . $page_filename; + $page_jsonpath = $tmp_pagefolder . '/page.json'; + $pageinfo['json']['contentfile'] = $page_filename; + if (!mkdir($tmp_pagefolder, 0770, true)) { + logger('Error creating temp export folder: ' . $tmp_pagefolder, LOGGER_NORMAL); + json_return_and_die(array('message' => 'Error creating temp export folder')); + } + file_put_contents($page_filepath, $pageinfo['body']); + file_put_contents($page_jsonpath, json_encode($pageinfo['json'], JSON_UNESCAPED_SLASHES)); + } + } + } + } + // TODO: Generate zipped file and return for download + + //create_zip_file($tmp_folderpath, $zip_filepath, true); + + \Zotlabs\Lib\ExtendedZip::zipTree($tmp_folderpath, $zip_filepath, \ZipArchive::CREATE); + + header('Content-disposition: attachment; filename="' . $zip_filename . '"'); + header("Content-Type: application/zip"); + readfile($zip_filepath); + rrmdir($zip_folderpath); + rrmdir($tmp_folderpath); + break; default : break; } } - - - } } diff --git a/include/import.php b/include/import.php index f7df636f3..b4d342273 100644 --- a/include/import.php +++ b/include/import.php @@ -1533,4 +1533,47 @@ function get_webpage_elements($channel, $type = 'all') { return null; } return $elements; -} \ No newline at end of file +} + +/* creates a compressed zip file */ + +function create_zip_file($files = array(), $destination = '', $overwrite = false) { + //if the zip file already exists and overwrite is false, return false + if (file_exists($destination) && !$overwrite) { + return false; + } + //vars + $valid_files = array(); + //if files were passed in... + if (is_array($files)) { + //cycle through each file + foreach ($files as $file) { + //make sure the file exists + if (file_exists($file)) { + $valid_files[] = $file; + } + } + } + + //if we have good files... + if (count($valid_files)) { + //create the archive + $zip = new ZipArchive(); + if ($zip->open($destination, $overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) { + return false; + } + //add the files + foreach ($valid_files as $file) { + $zip->addFile($file, $file); + } + //debug + //echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status; + //close the zip -- done! + $zip->close(); + + //check to make sure the file exists + return file_exists($destination); + } else { + return false; + } +} diff --git a/view/tpl/webpage_export_list.tpl b/view/tpl/webpage_export_list.tpl index 1b943ace8..d980ea981 100644 --- a/view/tpl/webpage_export_list.tpl +++ b/view/tpl/webpage_export_list.tpl @@ -17,7 +17,9 @@

    Pages

    - + + + {{foreach $pages as $page}} diff --git a/view/tpl/website_portation_tools.tpl b/view/tpl/website_portation_tools.tpl index d9ebed179..2f68a7393 100644 --- a/view/tpl/website_portation_tools.tpl +++ b/view/tpl/website_portation_tools.tpl @@ -46,7 +46,7 @@
    - +
    -- cgit v1.2.3 From 2d42d587388aeaedf8b53b2b56b3b4ccda37af03 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 20 Aug 2016 16:05:27 -0400 Subject: Layouts list and are selectable for export to the zip file --- Zotlabs/Module/Webpages.php | 70 ++++++++++++++++++++++++++++++++-------- include/import.php | 48 +++++++++++++++++++++++++-- view/tpl/webpage_export_list.tpl | 35 ++++++++++++++++++++ 3 files changed, 137 insertions(+), 16 deletions(-) diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php index daa323007..9a0e311d6 100644 --- a/Zotlabs/Module/Webpages.php +++ b/Zotlabs/Module/Webpages.php @@ -69,12 +69,14 @@ class Webpages extends \Zotlabs\Web\Controller { } require_once('include/import.php'); - $elements = get_webpage_elements($channel, 'pages'); + $pages = get_webpage_elements($channel, 'pages'); + $layouts = get_webpage_elements($channel, 'layouts'); $o .= replace_macros(get_markup_template('webpage_export_list.tpl'), array( '$title' => t('Export Webpage Elements'), '$exportbtn' => t('Export selected'), '$action' => $_SESSION['export'], // value should be 'zipfile' or 'cloud' - '$pages' => $elements['pages'], + '$pages' => $pages['pages'], + '$layouts' => $layouts['layouts'], )); $_SESSION['export'] = null; return $o; @@ -417,6 +419,8 @@ class Webpages extends \Zotlabs\Web\Controller { case 'zipfile': + $channel = \App::get_channel(); + $tmp_folder_name = random_string(10); $zip_folder_name = random_string(10); $zip_filename = $_SESSION['zipfilename']; @@ -428,12 +432,54 @@ class Webpages extends \Zotlabs\Web\Controller { } $zip_filepath = '/tmp/' . $zip_folder_name . '/' . $zip_filename; + $checkedlayouts = $_POST['layout']; + $layouts = []; + if (!empty($checkedlayouts)) { + foreach ($checkedlayouts as $mid) { + $l = q("select iconfig.v, iconfig.k, mimetype, title, body from iconfig + left join item on item.id = iconfig.iid + where mid = '%s' and item.uid = %d and iconfig.cat = 'system' and iconfig.k = 'PDL' order by iconfig.v asc limit 1", + dbesc($mid), + intval($channel['channel_id']) + ); + if($l) { + $l = $l[0]; + $layoutinfo = array( + 'body' => $l['body'], + 'mimetype' => $l['mimetype'], + 'description' => $l['title'], + 'name' => $l['v'], + 'json' => array( + 'description' => $l['title'], + 'name' => $l['v'], + ) + ); + switch ($layoutinfo['mimetype']) { + case 'text/bbcode': + default: + $layout_ext = 'bbcode'; + break; + } + $layout_filename = $layoutinfo['name'] . '.' . $layout_ext; + $tmp_layoutfolder = $tmp_folderpath . '/layouts/' . $layoutinfo['name']; + $layout_filepath = $tmp_layoutfolder . '/' . $layout_filename; + $layoutinfo['json']['contentfile'] = $layout_filename; + $layout_jsonpath = $tmp_layoutfolder . '/layout.json'; + if (!is_dir($tmp_layoutfolder) && !mkdir($tmp_layoutfolder, 0770, true)) { + logger('Error creating temp export folder: ' . $tmp_layoutfolder, LOGGER_NORMAL); + json_return_and_die(array('message' => 'Error creating temp export folder')); + } + file_put_contents($layout_filepath, $layoutinfo['body']); + file_put_contents($layout_jsonpath, json_encode($layoutinfo['json'], JSON_UNESCAPED_SLASHES)); + } + } + } + $checkedpages = $_POST['page']; $pages = []; if (!empty($checkedpages)) { foreach ($checkedpages as $mid) { - - $channel = \App::get_channel(); + $p = q("select * from iconfig left join item on iconfig.iid = item.id where item.uid = %d and item.mid = '%s' and iconfig.cat = 'system' and iconfig.k = 'WEBPAGE' and item_type = %d", intval($channel['channel_id']), @@ -446,7 +492,6 @@ class Webpages extends \Zotlabs\Web\Controller { // Get the associated layout $layoutinfo = array(); if($pp['layout_mid']) { - // TODO: Should we check for ownership here if the layout is already associated with the page? $l = q("select iconfig.v, iconfig.k, mimetype, title, body from iconfig left join item on item.id = iconfig.iid where mid = '%s' and item.uid = %d and iconfig.cat = 'system' and iconfig.k = 'PDL' order by iconfig.v asc limit 1", @@ -476,7 +521,7 @@ class Webpages extends \Zotlabs\Web\Controller { $layout_filepath = $tmp_layoutfolder . '/' . $layout_filename; $layoutinfo['json']['contentfile'] = $layout_filename; $layout_jsonpath = $tmp_layoutfolder . '/layout.json'; - if (!mkdir($tmp_layoutfolder, 0770, true)) { + if (!is_dir($tmp_layoutfolder) && !mkdir($tmp_layoutfolder, 0770, true)) { logger('Error creating temp export folder: ' . $tmp_layoutfolder, LOGGER_NORMAL); json_return_and_die(array('message' => 'Error creating temp export folder')); } @@ -522,7 +567,7 @@ class Webpages extends \Zotlabs\Web\Controller { $page_filepath = $tmp_pagefolder . '/' . $page_filename; $page_jsonpath = $tmp_pagefolder . '/page.json'; $pageinfo['json']['contentfile'] = $page_filename; - if (!mkdir($tmp_pagefolder, 0770, true)) { + if (!is_dir($tmp_pagefolder) && !mkdir($tmp_pagefolder, 0770, true)) { logger('Error creating temp export folder: ' . $tmp_pagefolder, LOGGER_NORMAL); json_return_and_die(array('message' => 'Error creating temp export folder')); } @@ -532,17 +577,14 @@ class Webpages extends \Zotlabs\Web\Controller { } } } - // TODO: Generate zipped file and return for download - - //create_zip_file($tmp_folderpath, $zip_filepath, true); - + // Generate the zip file \Zotlabs\Lib\ExtendedZip::zipTree($tmp_folderpath, $zip_filepath, \ZipArchive::CREATE); - + // Output the file for download header('Content-disposition: attachment; filename="' . $zip_filename . '"'); header("Content-Type: application/zip"); readfile($zip_filepath); - rrmdir($zip_folderpath); - rrmdir($tmp_folderpath); + rrmdir($zip_folderpath); // delete temporary files + rrmdir($tmp_folderpath); // delete temporary files break; default : break; diff --git a/include/import.php b/include/import.php index b4d342273..a62747d9b 100644 --- a/include/import.php +++ b/include/import.php @@ -1479,6 +1479,8 @@ function get_webpage_elements($channel, $type = 'all') { return null; } switch ($type) { + case 'all': + // If all, execute all the pages, layouts, blocks case statements case 'pages': $elements['pages'] = null; $owner = $channel['channel_id']; @@ -1527,10 +1529,52 @@ function get_webpage_elements($channel, $type = 'all') { } } - break; + if($type !== 'all') { + break; + } + + case 'layouts': + $elements['layouts'] = null; + $owner = $channel['channel_id']; + + $sql_extra = item_permissions_sql($owner); + + + $r = q("select * from iconfig left join item on iconfig.iid = item.id + where item.uid = %d and iconfig.cat = 'system' and iconfig.k = 'PDL' and item_type = %d + $sql_extra order by item.created desc", + intval($owner), + intval(ITEM_TYPE_PDL) + ); + + $layouts = null; + + if($r) { + $elements['layouts'] = array(); + $layouts = array(); + foreach($r as $rr) { + unobscure($rr); + $elements['layouts'][] = array( + 'type' => 'layout', + 'description' => $rr['title'], // description of the layout + 'body' => $rr['body'], + 'created' => $rr['created'], + 'edited' => $rr['edited'], + 'mimetype' => $rr['mimetype'], + 'name' => $rr['v'], // name of reference for the layout + 'mid' => $rr['mid'], + ); + } + + } + + if($type !== 'all') { + break; + } + default: - return null; + break; } return $elements; } diff --git a/view/tpl/webpage_export_list.tpl b/view/tpl/webpage_export_list.tpl index d980ea981..faffbf8c6 100644 --- a/view/tpl/webpage_export_list.tpl +++ b/view/tpl/webpage_export_list.tpl @@ -47,6 +47,41 @@ {{/foreach}}
    Export?Page TitlePage LinkType
    Export?Page TitlePage LinkType
    @@ -27,7 +29,7 @@ -
    +
    {{$page.title}}
    + +
    +

    Layouts

    +
    + + + + + {{foreach $layouts as $layout}} + + + + + + + {{/foreach}} +
    Export?Layout NameLayout DescriptionType
    +
    + + +
    +
    +
    + {{$layout.name}}
    +
    +
    +
    + {{$layout.description}}
    +
    +
    +
    + {{$layout.mimetype}}
    +
    +
    +
    -- cgit v1.2.3 From 1c61e316b477460f05b263b9a01cc5d37b5e8cb6 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 20 Aug 2016 21:08:15 -0400 Subject: Block export and re-import works. Fixed bug where layout content was not being imported properly. --- Zotlabs/Module/Webpages.php | 69 +++++++++++++++++++++++++++++++++++++++- include/import.php | 55 ++++++++++++++++++++++++++++++-- view/tpl/webpage_export_list.tpl | 36 +++++++++++++++++++++ 3 files changed, 157 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php index 9a0e311d6..0fec06c38 100644 --- a/Zotlabs/Module/Webpages.php +++ b/Zotlabs/Module/Webpages.php @@ -71,12 +71,14 @@ class Webpages extends \Zotlabs\Web\Controller { $pages = get_webpage_elements($channel, 'pages'); $layouts = get_webpage_elements($channel, 'layouts'); + $blocks = get_webpage_elements($channel, 'blocks'); $o .= replace_macros(get_markup_template('webpage_export_list.tpl'), array( '$title' => t('Export Webpage Elements'), '$exportbtn' => t('Export selected'), '$action' => $_SESSION['export'], // value should be 'zipfile' or 'cloud' '$pages' => $pages['pages'], '$layouts' => $layouts['layouts'], + '$blocks' => $blocks['blocks'], )); $_SESSION['export'] = null; return $o; @@ -314,6 +316,7 @@ class Webpages extends \Zotlabs\Web\Controller { $path = $website; } $elements['pages'] = scan_webpage_elements($path, 'page', $cloud); + logger('$elements pages: ' . json_encode($elements['pages'])); $elements['layouts'] = scan_webpage_elements($path, 'layout', $cloud); $elements['blocks'] = scan_webpage_elements($path, 'block', $cloud); $_SESSION['blocks'] = $elements['blocks']; @@ -331,7 +334,8 @@ class Webpages extends \Zotlabs\Web\Controller { // If the website elements were imported from a zip file, delete the temporary decompressed files if ($cloud === false && $website && $elements) { - rrmdir($website); // Delete the temporary decompressed files + $_SESSION['tempimportpath'] = $website; + //rrmdir($website); // Delete the temporary decompressed files } break; @@ -399,6 +403,10 @@ class Webpages extends \Zotlabs\Web\Controller { if(!(empty($_SESSION['import_pages']) && empty($_SESSION['import_blocks']) && empty($_SESSION['import_layouts']))) { info( t('Import complete.') . EOL); } + if(isset($_SESSION['tempimportpath'])) { + rrmdir($_SESSION['tempimportpath']); // Delete the temporary decompressed files + unset($_SESSION['tempimportpath']); + } break; case 'exportzipfile': @@ -432,6 +440,64 @@ class Webpages extends \Zotlabs\Web\Controller { } $zip_filepath = '/tmp/' . $zip_folder_name . '/' . $zip_filename; + $checkedblocks = $_POST['block']; + $blocks = []; + if (!empty($checkedblocks)) { + foreach ($checkedblocks as $mid) { + $b = q("select iconfig.v, iconfig.k, mimetype, title, body from iconfig + left join item on item.id = iconfig.iid + where mid = '%s' and item.uid = %d and iconfig.cat = 'system' and iconfig.k = 'BUILDBLOCK' order by iconfig.v asc limit 1", + dbesc($mid), + intval($channel['channel_id']) + ); + if($b) { + $b = $b[0]; + $blockinfo = array( + 'body' => $b['body'], + 'mimetype' => $b['mimetype'], + 'title' => $b['title'], + 'name' => $b['v'], + 'json' => array( + 'title' => $b['title'], + 'name' => $b['v'], + 'mimetype' => $b['mimetype'], + ) + ); + switch ($blockinfo['mimetype']) { + case 'text/html': + $block_ext = 'html'; + break; + case 'text/bbcode': + $block_ext = 'bbcode'; + break; + case 'text/markdown': + $block_ext = 'md'; + break; + case 'application/x-pdl': + $block_ext = 'pdl'; + break; + case 'application/x-php': + $block_ext = 'php'; + break; + default: + $block_ext = 'bbcode'; + break; + } + $block_filename = $blockinfo['name'] . '.' . $block_ext; + $tmp_blockfolder = $tmp_folderpath . '/blocks/' . $blockinfo['name']; + $block_filepath = $tmp_blockfolder . '/' . $block_filename; + $blockinfo['json']['contentfile'] = $block_filename; + $block_jsonpath = $tmp_blockfolder . '/block.json'; + if (!is_dir($tmp_blockfolder) && !mkdir($tmp_blockfolder, 0770, true)) { + logger('Error creating temp export folder: ' . $tmp_blockfolder, LOGGER_NORMAL); + json_return_and_die(array('message' => 'Error creating temp export folder')); + } + file_put_contents($block_filepath, $blockinfo['body']); + file_put_contents($block_jsonpath, json_encode($blockinfo['json'], JSON_UNESCAPED_SLASHES)); + } + } + } + $checkedlayouts = $_POST['layout']; $layouts = []; if (!empty($checkedlayouts)) { @@ -452,6 +518,7 @@ class Webpages extends \Zotlabs\Web\Controller { 'json' => array( 'description' => $l['title'], 'name' => $l['v'], + 'mimetype' => $l['mimetype'], ) ); switch ($layoutinfo['mimetype']) { diff --git a/include/import.php b/include/import.php index a62747d9b..10664aa53 100644 --- a/include/import.php +++ b/include/import.php @@ -1311,9 +1311,15 @@ function scan_webpage_elements($path, $type, $cloud = false) { return false; } $content = file_get_contents($folder . '/' . $contentfilename); + logger('contentfile: ' . $folder . '/' . $contentfilename, LOGGER_DEBUG); + logger('content: ' . $content, LOGGER_DEBUG); if (!$content) { - logger('Failed to get file content for ' . $metadata['contentfile']); - return false; + if(is_readable($folder . '/' . $contentfilename)) { + $content = ''; + } else { + logger('Failed to get file content for ' . $metadata['contentfile']); + return false; + } } $elements[] = $metadata; } @@ -1403,6 +1409,10 @@ function scan_webpage_elements($path, $type, $cloud = false) { } // Import the actual element content $arr['body'] = file_get_contents($element['path']); + if($arr['item_type'] === ITEM_TYPE_PDL) { + logger(' body: ' . $arr['body'], LOGGER_DEBUG); + logger(' path: ' . $element['path'], LOGGER_DEBUG); + } // The element owner is the channel importing the elements $arr['owner_xchan'] = get_observer_hash(); // The author is either the owner or whomever was specified @@ -1573,6 +1583,47 @@ function get_webpage_elements($channel, $type = 'all') { break; } + case 'blocks': + $elements['blocks'] = null; + $owner = $channel['channel_id']; + + $sql_extra = item_permissions_sql($owner); + + + $r = q("select iconfig.iid, iconfig.k, iconfig.v, mid, title, body, mimetype, created, edited from iconfig + left join item on iconfig.iid = item.id + where uid = %d and iconfig.cat = 'system' and iconfig.k = 'BUILDBLOCK' + and item_type = %d order by item.created desc", + intval($owner), + intval(ITEM_TYPE_BLOCK) + ); + + $blocks = null; + + if($r) { + $elements['blocks'] = array(); + $blocks = array(); + foreach($r as $rr) { + unobscure($rr); + + $elements['blocks'][] = array( + 'type' => 'block', + 'title' => $rr['title'], + 'body' => $rr['body'], + 'created' => $rr['created'], + 'edited' => $rr['edited'], + 'mimetype' => $rr['mimetype'], + 'name' => $rr['v'], + 'mid' => $rr['mid'] + ); + } + + } + + if($type !== 'all') { + break; + } + default: break; } diff --git a/view/tpl/webpage_export_list.tpl b/view/tpl/webpage_export_list.tpl index faffbf8c6..1df4586b0 100644 --- a/view/tpl/webpage_export_list.tpl +++ b/view/tpl/webpage_export_list.tpl @@ -82,6 +82,42 @@ {{/foreach}} + +
    +

    Blocks

    +
    + + + + + {{foreach $blocks as $block}} + + + + + + + {{/foreach}} +
    Export?Block TitleBlock NameType
    +
    + + +
    +
    +
    + {{$block.title}}
    +
    +
    +
    + {{$block.name}}
    +
    +
    +
    + {{$block.mimetype}}
    +
    +
    +
    + -- cgit v1.2.3 From d39cf23b2f15ed94048ea7596d7581be7ef8c001 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 21 Aug 2016 06:53:19 -0400 Subject: Visual improvements to the export element table --- view/tpl/webpage_export_list.tpl | 50 ++++++++++++++++++++-------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/view/tpl/webpage_export_list.tpl b/view/tpl/webpage_export_list.tpl index 1df4586b0..1d28f62df 100644 --- a/view/tpl/webpage_export_list.tpl +++ b/view/tpl/webpage_export_list.tpl @@ -12,33 +12,33 @@
    -
    -

    Pages

    +
    +
    - + {{foreach $pages as $page}} - - - -
    Export?Page TitlePage LinkType
    Page LinkPage TitleType
    +
    +
    - {{$page.title}}
    + {{$page.pagetitle}}
    +
    - {{$page.pagetitle}}
    + {{$page.title}}
    +
    {{$page.mimetype}}
    @@ -47,33 +47,33 @@ {{/foreach}}
    - +
    -

    Layouts

    +
    - + {{foreach $layouts as $layout}} - - - -
    Export?Layout NameLayout DescriptionType
    Layout NameLayout DescriptionType
    +
    +
    {{$layout.name}}
    +
    {{$layout.description}}
    +
    {{$layout.mimetype}}
    @@ -82,33 +82,33 @@ {{/foreach}}
    - +
    -

    Blocks

    +
    - + {{foreach $blocks as $block}} - - - - ' + + '' + + ''; + }, + + // generates the HTML for a single event row + fgSegHtml: function(seg) { + var view = this.view; + var classes = [ 'fc-list-item' ].concat(this.getSegCustomClasses(seg)); + var bgColor = this.getSegBackgroundColor(seg); + var event = seg.event; + var url = event.url; + var timeHtml; + + if (!seg.start.hasTime()) { + if (this.displayEventTime) { + timeHtml = view.getAllDayHtml(); + } + } + else { + timeHtml = htmlEscape(this.getEventTimeText(event)); // might return empty + } + + if (url) { + classes.push('fc-has-url'); + } + + return '' + + (timeHtml ? + '' : + '') + + '' + + '' + + ''; + } + +}); + +;; + +fcViews.list = { + 'class': ListView, + buttonTextKey: 'list', // what to lookup in locale files + defaults: { + buttonText: 'list', // text to display for English + listTime: true, // show the time column? + listDayFormat: 'LL', // like "January 1, 2016" + noEventsMessage: 'No events to display' + } +}; + +fcViews.listDay = { + type: 'list', + duration: { days: 1 }, + defaults: { + listDayFormat: 'dddd' // day-of-week is all we need. full date is probably in header + } +}; + +fcViews.listWeek = { + type: 'list', + duration: { weeks: 1 }, + defaults: { + listDayFormat: 'dddd', // day-of-week is more important + listDayAltFormat: 'LL' + } +}; + +fcViews.listMonth = { + type: 'list', + duration: { month: 1 }, + defaults: { + listDayAltFormat: 'dddd' // day-of-week is nice-to-have + } +}; + +fcViews.listYear = { + type: 'list', + duration: { year: 1 }, + defaults: { + listDayAltFormat: 'dddd' // day-of-week is nice-to-have + } +}; + +;; + +return FC; // export for Node/CommonJS }); \ No newline at end of file diff --git a/library/fullcalendar/fullcalendar.min.css b/library/fullcalendar/fullcalendar.min.css index 9f395b445..3d2bd5b2e 100644 --- a/library/fullcalendar/fullcalendar.min.css +++ b/library/fullcalendar/fullcalendar.min.css @@ -1,5 +1,5 @@ /*! - * FullCalendar v2.8.0 Stylesheet + * FullCalendar v3.0.0 Stylesheet * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw - */.fc-bgevent,.fc-highlight{opacity:.3;filter:alpha(opacity=30)}.fc-icon,body .fc{font-size:1em}.fc-button-group,.fc-icon{display:inline-block}.fc-bg,.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-icon,.fc-unselectable{-khtml-user-select:none;-webkit-touch-callout:none}.fc .fc-axis,.fc button,.fc-time-grid-event .fc-time,.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}.fc th,.fc-basic-view .fc-week-number,.fc-icon,.fc-toolbar{text-align:center}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff}.fc-unthemed .fc-divider,.fc-unthemed .fc-popover .fc-header{background:#eee}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666}.fc-unthemed .fc-today{background:#fcf8e3}.fc-highlight{background:#bce8f1}.fc-bgevent{background:#8fdf82}.fc-nonbusiness{background:#d7d7d7}.fc-icon{height:1em;line-height:1em;overflow:hidden;font-family:"Courier New",Courier,monospace;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative}.fc-icon-left-single-arrow:after{content:"\02039";font-weight:700;font-size:200%;top:-7%}.fc-icon-right-single-arrow:after{content:"\0203A";font-weight:700;font-size:200%;top:-7%}.fc-icon-left-double-arrow:after{content:"\000AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\000BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\000D7";font-size:200%;top:6%}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;font-size:1em;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);box-shadow:none}.fc-event.fc-draggable,.fc-event[href],.fc-popover .fc-header .fc-close{cursor:pointer}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-unthemed .fc-popover{border-width:1px;border-style:solid}.fc-unthemed .fc-popover .fc-header .fc-close{font-size:.9em;margin-top:2px}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-bg table,.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc table{width:100%;box-sizing:border-box;table-layout:fixed;border-collapse:collapse;border-spacing:0;font-size:1em}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent;border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{-webkit-overflow-scrolling:touch}.fc-row.fc-rigid,.fc-time-grid-event{overflow:hidden}.fc-scroller>.fc-day-grid,.fc-scroller>.fc-time-grid{position:relative;width:100%}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad;background-color:#3a87ad;font-weight:400}.fc-event,.fc-event:hover,.ui-widget .fc-event{color:#fff;text-decoration:none}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25;filter:alpha(opacity=25)}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:4;display:none}.fc-event.fc-allow-mouse-resize .fc-resizer,.fc-event.fc-selected .fc-resizer{display:block}.fc-event.fc-selected .fc-resizer:before{content:"";position:absolute;z-index:9999;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px}.fc-event.fc-selected{z-index:9999!important;box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event.fc-selected.fc-dragging{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-h-event.fc-selected:before{content:"";position:absolute;z-index:3;top:-10px;bottom:-10px;left:0;right:0}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-ltr .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-end-resizer{cursor:w-resize;left:-1px}.fc-ltr .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-start-resizer{cursor:e-resize;right:-1px}.fc-h-event.fc-allow-mouse-resize .fc-resizer{width:7px;top:-1px;bottom:-1px}.fc-h-event.fc-selected .fc-resizer{border-radius:4px;border-width:1px;width:6px;height:6px;border-style:solid;border-color:inherit;background:#fff;top:50%;margin-top:-4px}.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,.fc-rtl .fc-h-event.fc-selected .fc-end-resizer{margin-left:-4px}.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,.fc-rtl .fc-h-event.fc-selected .fc-start-resizer{margin-right:-4px}.fc-day-grid-event{margin:1px 2px 0;padding:0 1px}.fc-day-grid-event.fc-selected:after{content:"";position:absolute;z-index:1;top:-1px;right:-1px;bottom:-1px;left:-1px;background:#000;opacity:.25;filter:alpha(opacity=25)}.fc-day-grid-event .fc-content{white-space:nowrap;overflow:hidden}.fc-day-grid-event .fc-time{font-weight:700}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer{margin-left:-2px}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer{margin-right:-2px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer;text-decoration:none}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width:220px}.fc-more-popover .fc-event-container{padding:10px}.fc-now-indicator{position:absolute;border:0 solid red}.fc-unselectable{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.fc-toolbar{margin-bottom:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-top:1px;padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:0 2px}.fc-basic-view td.fc-day-number,.fc-basic-view td.fc-week-number span{padding-top:2px;padding-bottom:2px}.fc-basic-view .fc-week-number span{display:inline-block;min-width:1.25em}.fc-ltr .fc-basic-view .fc-day-number{text-align:right}.fc-rtl .fc-basic-view .fc-day-number{text-align:left}.fc-day-number.fc-other-month{opacity:.3;filter:alpha(opacity=30)}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-top:1px;padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.ui-widget td.fc-axis{font-weight:400}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3;position:relative}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event.fc-selected{overflow:visible}.fc-time-grid-event.fc-selected .fc-bg{display:none}.fc-time-grid-event .fc-content{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\000A0-\000A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after{content:"="}.fc-time-grid-event.fc-selected .fc-resizer{border-radius:5px;border-width:1px;width:8px;height:8px;border-style:solid;border-color:inherit;background:#fff;left:50%;margin-left:-5px;bottom:-5px}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent} \ No newline at end of file + */.fc-icon,body .fc{font-size:1em}.fc-button-group,.fc-icon{display:inline-block}.fc-bg,.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-icon,.fc-unselectable{-khtml-user-select:none;-webkit-touch-callout:none}.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}.fc th,.fc-basic-view td.fc-week-number,.fc-icon,.fc-toolbar{text-align:center}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-list-view,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff}.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-popover .fc-header{background:#eee}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666}.fc-unthemed .fc-today{background:#fcf8e3}.fc-highlight{background:#bce8f1;opacity:.3}.fc-bgevent{background:#8fdf82;opacity:.3}.fc-nonbusiness{background:#d7d7d7}.fc-icon{height:1em;line-height:1em;overflow:hidden;font-family:"Courier New",Courier,monospace;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative}.fc-icon-left-single-arrow:after{content:"\02039";font-weight:700;font-size:200%;top:-7%}.fc-icon-right-single-arrow:after{content:"\0203A";font-weight:700;font-size:200%;top:-7%}.fc-icon-left-double-arrow:after{content:"\000AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\000BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\000D7";font-size:200%;top:6%}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;font-size:1em;white-space:nowrap;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;box-shadow:none}.fc-event.fc-draggable,.fc-event[href],.fc-popover .fc-header .fc-close,a[data-goto]{cursor:pointer}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-unthemed .fc-popover{border-width:1px;border-style:solid}.fc-unthemed .fc-popover .fc-header .fc-close{font-size:.9em;margin-top:2px}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-bg table,.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc table{width:100%;box-sizing:border-box;table-layout:fixed;border-collapse:collapse;border-spacing:0;font-size:1em}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}a[data-goto]:hover{text-decoration:underline}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent;border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{-webkit-overflow-scrolling:touch}.fc-row.fc-rigid,.fc-time-grid-event{overflow:hidden}.fc-scroller>.fc-day-grid,.fc-scroller>.fc-time-grid{position:relative;width:100%}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad;font-weight:400}.fc-event,.fc-event-dot{background-color:#3a87ad}.fc-event,.fc-event:hover,.ui-widget .fc-event{color:#fff;text-decoration:none}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:4;display:none}.fc-event.fc-allow-mouse-resize .fc-resizer,.fc-event.fc-selected .fc-resizer{display:block}.fc-event.fc-selected .fc-resizer:before{content:"";position:absolute;z-index:9999;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px}.fc-event.fc-selected{z-index:9999!important;box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event.fc-selected.fc-dragging{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-h-event.fc-selected:before{content:"";position:absolute;z-index:3;top:-10px;bottom:-10px;left:0;right:0}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-ltr .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-end-resizer{cursor:w-resize;left:-1px}.fc-ltr .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-start-resizer{cursor:e-resize;right:-1px}.fc-h-event.fc-allow-mouse-resize .fc-resizer{width:7px;top:-1px;bottom:-1px}.fc-h-event.fc-selected .fc-resizer{border-radius:4px;border-width:1px;width:6px;height:6px;border-style:solid;border-color:inherit;background:#fff;top:50%;margin-top:-4px}.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,.fc-rtl .fc-h-event.fc-selected .fc-end-resizer{margin-left:-4px}.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,.fc-rtl .fc-h-event.fc-selected .fc-start-resizer{margin-right:-4px}.fc-day-grid-event{margin:1px 2px 0;padding:0 1px}tr:first-child>td>.fc-day-grid-event{margin-top:2px}.fc-day-grid-event.fc-selected:after{content:"";position:absolute;z-index:1;top:-1px;right:-1px;bottom:-1px;left:-1px;background:#000;opacity:.25}.fc-day-grid-event .fc-content{white-space:nowrap;overflow:hidden}.fc-day-grid-event .fc-time{font-weight:700}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer{margin-left:-2px}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer{margin-right:-2px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer;text-decoration:none}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width:220px}.fc-more-popover .fc-event-container{padding:10px}.fc-now-indicator{position:absolute;border:0 solid red}.fc-unselectable{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.fc-toolbar{margin-bottom:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-day-top.fc-other-month{opacity:.3}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:2px}.fc-basic-view th.fc-day-number,.fc-basic-view th.fc-week-number{padding:0 2px}.fc-ltr .fc-basic-view .fc-day-top .fc-day-number{float:right}.fc-rtl .fc-basic-view .fc-day-top .fc-day-number{float:left}.fc-ltr .fc-basic-view .fc-day-top .fc-week-number{float:left;border-radius:0 0 3px}.fc-rtl .fc-basic-view .fc-day-top .fc-week-number{float:right;border-radius:0 0 0 3px}.fc-basic-view .fc-day-top .fc-week-number{min-width:1.5em;text-align:center;background-color:#f2f2f2;color:grey}.fc-basic-view td.fc-week-number>*{display:inline-block;min-width:1.25em}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px;white-space:nowrap}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.ui-widget td.fc-axis{font-weight:400}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3;position:relative}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event.fc-selected{overflow:visible}.fc-time-grid-event.fc-selected .fc-bg{display:none}.fc-time-grid-event .fc-content{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em;white-space:nowrap}.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\000A0-\000A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after{content:"="}.fc-time-grid-event.fc-selected .fc-resizer{border-radius:5px;border-width:1px;width:8px;height:8px;border-style:solid;border-color:inherit;background:#fff;left:50%;margin-left:-5px;bottom:-5px}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent}.fc-event-dot{display:inline-block;width:10px;height:10px;border-radius:5px}.fc-rtl .fc-list-view{direction:rtl}.fc-list-view{border-width:1px;border-style:solid}.fc .fc-list-table{table-layout:auto}.fc-list-table td{border-width:1px 0 0;padding:8px 14px}.fc-list-table tr:first-child td{border-top-width:0}.fc-list-heading{border-bottom-width:1px}.fc-list-heading td{font-weight:700}.fc-ltr .fc-list-heading-main{float:left}.fc-ltr .fc-list-heading-alt,.fc-rtl .fc-list-heading-main{float:right}.fc-rtl .fc-list-heading-alt{float:left}.fc-list-item.fc-has-url{cursor:pointer}.fc-list-item:hover td{background-color:#f5f5f5}.fc-list-item-marker,.fc-list-item-time{white-space:nowrap;width:1px}.fc-ltr .fc-list-item-marker{padding-right:0}.fc-rtl .fc-list-item-marker{padding-left:0}.fc-list-item-title a{text-decoration:none;color:inherit}.fc-list-item-title a[href]:hover{text-decoration:underline}.fc-list-empty-wrap2{position:absolute;top:0;left:0;right:0;bottom:0}.fc-list-empty-wrap1{width:100%;height:100%;display:table}.fc-list-empty{display:table-cell;vertical-align:middle;text-align:center}.fc-unthemed .fc-list-empty{background-color:#eee} \ No newline at end of file diff --git a/library/fullcalendar/fullcalendar.min.js b/library/fullcalendar/fullcalendar.min.js index d05408974..6a67dd880 100644 --- a/library/fullcalendar/fullcalendar.min.js +++ b/library/fullcalendar/fullcalendar.min.js @@ -1,9 +1,9 @@ /*! - * FullCalendar v2.8.0 + * FullCalendar v3.0.0 * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw */ -!function(a){"function"==typeof define&&define.amd?define(["jquery","moment"],a):"object"==typeof exports?module.exports=a(require("jquery"),require("moment")):a(jQuery,moment)}(function(a,b){function c(a){return W(a,Ya)}function d(b){var c,d={views:b.views||{}};return a.each(b,function(b,e){"views"!=b&&(a.isPlainObject(e)&&!/(time|duration|interval)$/i.test(b)&&-1==a.inArray(b,Ya)?(c=null,a.each(e,function(a,e){/^(month|week|day|default|basic(Week|Day)?|agenda(Week|Day)?)$/.test(a)?(d.views[a]||(d.views[a]={}),d.views[a][b]=e):(c||(c={}),c[a]=e)}),c&&(d[b]=c)):d[b]=e)}),d}function e(a,b){b.left&&a.css({"border-left-width":1,"margin-left":b.left-1}),b.right&&a.css({"border-right-width":1,"margin-right":b.right-1})}function f(a){a.css({"margin-left":"","margin-right":"","border-left-width":"","border-right-width":""})}function g(){a("body").addClass("fc-not-allowed")}function h(){a("body").removeClass("fc-not-allowed")}function i(b,c,d){var e=Math.floor(c/b.length),f=Math.floor(c-e*(b.length-1)),g=[],h=[],i=[],k=0;j(b),b.each(function(c,d){var j=c===b.length-1?f:e,l=a(d).outerHeight(!0);j>l?(g.push(d),h.push(l),i.push(a(d).height())):k+=l}),d&&(c-=k,e=Math.floor(c/g.length),f=Math.floor(c-e*(g.length-1))),a(g).each(function(b,c){var d=b===g.length-1?f:e,j=h[b],k=i[b],l=d-(j-k);d>j&&a(c).height(l)})}function j(a){a.height("")}function k(b){var c=0;return b.find("> span").each(function(b,d){var e=a(d).outerWidth();e>c&&(c=e)}),c++,b.width(c),c}function l(a,b){var c,d=a.add(b);return d.css({position:"relative",left:-1}),c=a.outerHeight()-b.outerHeight(),d.css({position:"",left:""}),c}function m(b){var c=b.css("position"),d=b.parents().filter(function(){var b=a(this);return/(auto|scroll)/.test(b.css("overflow")+b.css("overflow-y")+b.css("overflow-x"))}).eq(0);return"fixed"!==c&&d.length?d:a(b[0].ownerDocument||document)}function n(a,b){var c=a.offset(),d=c.left-(b?b.left:0),e=c.top-(b?b.top:0);return{left:d,right:d+a.outerWidth(),top:e,bottom:e+a.outerHeight()}}function o(a,b){var c=a.offset(),d=q(a),e=c.left+t(a,"border-left-width")+d.left-(b?b.left:0),f=c.top+t(a,"border-top-width")+d.top-(b?b.top:0);return{left:e,right:e+a[0].clientWidth,top:f,bottom:f+a[0].clientHeight}}function p(a,b){var c=a.offset(),d=c.left+t(a,"border-left-width")+t(a,"padding-left")-(b?b.left:0),e=c.top+t(a,"border-top-width")+t(a,"padding-top")-(b?b.top:0);return{left:d,right:d+a.width(),top:e,bottom:e+a.height()}}function q(a){var b=a.innerWidth()-a[0].clientWidth,c={left:0,right:0,top:0,bottom:a.innerHeight()-a[0].clientHeight};return r()&&"rtl"==a.css("direction")?c.left=b:c.right=b,c}function r(){return null===Za&&(Za=s()),Za}function s(){var b=a("
    ").css({position:"absolute",top:-1e3,left:0,border:0,padding:0,overflow:"scroll",direction:"rtl"}).appendTo("body"),c=b.children(),d=c.offset().left>b.offset().left;return b.remove(),d}function t(a,b){return parseFloat(a.css(b))||0}function u(a){return 1==a.which&&!a.ctrlKey}function v(a){if(void 0!==a.pageX)return a.pageX;var b=a.originalEvent.touches;return b?b[0].pageX:void 0}function w(a){if(void 0!==a.pageY)return a.pageY;var b=a.originalEvent.touches;return b?b[0].pageY:void 0}function x(a){return/^touch/.test(a.type)}function y(a){a.addClass("fc-unselectable").on("selectstart",z)}function z(a){a.preventDefault()}function A(a){return window.addEventListener?(window.addEventListener("scroll",a,!0),!0):!1}function B(a){return window.removeEventListener?(window.removeEventListener("scroll",a,!0),!0):!1}function C(a,b){var c={left:Math.max(a.left,b.left),right:Math.min(a.right,b.right),top:Math.max(a.top,b.top),bottom:Math.min(a.bottom,b.bottom)};return c.lefti&&j>g?(g>=i?(c=g.clone(),e=!0):(c=i.clone(),e=!1),j>=h?(d=h.clone(),f=!0):(d=j.clone(),f=!1),{start:c,end:d,isStart:e,isEnd:f}):void 0}function L(a,c){return b.duration({days:a.clone().stripTime().diff(c.clone().stripTime(),"days"),ms:a.time()-c.time()})}function M(a,c){return b.duration({days:a.clone().stripTime().diff(c.clone().stripTime(),"days")})}function N(a,c,d){return b.duration(Math.round(a.diff(c,d,!0)),d)}function O(a,b){var c,d,e;for(c=0;c<_a.length&&(d=_a[c],e=P(d,a,b),!(e>=1&&ha(e)));c++);return d}function P(a,c,d){return null!=d?d.diff(c,a,!0):b.isDuration(c)?c.as(a):c.end.diff(c.start,a,!0)}function Q(a,b,c){var d;return T(c)?(b-a)/c:(d=c.asMonths(),Math.abs(d)>=1&&ha(d)?b.diff(a,"months",!0)/d:b.diff(a,"days",!0)/c.asDays())}function R(a,b){var c,d;return T(a)||T(b)?a/b:(c=a.asMonths(),d=b.asMonths(),Math.abs(c)>=1&&ha(c)&&Math.abs(d)>=1&&ha(d)?c/d:a.asDays()/b.asDays())}function S(a,c){var d;return T(a)?b.duration(a*c):(d=a.asMonths(),Math.abs(d)>=1&&ha(d)?b.duration({months:d*c}):b.duration({days:a.asDays()*c}))}function T(a){return Boolean(a.hours()||a.minutes()||a.seconds()||a.milliseconds())}function U(a){return"[object Date]"===Object.prototype.toString.call(a)||a instanceof Date}function V(a){return/^\d+\:\d+(?:\:\d+\.?(?:\d{3})?)?$/.test(a)}function W(a,b){var c,d,e,f,g,h,i={};if(b)for(c=0;c=0;f--)if(g=a[f][d],"object"==typeof g)e.unshift(g);else if(void 0!==g){i[d]=g;break}e.length&&(i[d]=W(e))}for(c=a.length-1;c>=0;c--){h=a[c];for(d in h)d in i||(i[d]=h[d])}return i}function X(a){var b=function(){};return b.prototype=a,new b}function Y(a,b){for(var c in a)$(a,c)&&(b[c]=a[c])}function Z(a,b){var c,d,e=["constructor","toString","valueOf"];for(c=0;c/g,">").replace(/'/g,"'").replace(/"/g,""").replace(/\n/g,"
    ")}function da(a){return a.replace(/&.*?;/g,"")}function ea(b){var c=[];return a.each(b,function(a,b){null!=b&&c.push(a+":"+b)}),c.join(";")}function fa(a){return a.charAt(0).toUpperCase()+a.slice(1)}function ga(a,b){return a-b}function ha(a){return a%1===0}function ia(a,b){var c=a[b];return function(){return c.apply(a,arguments)}}function ja(a,b,c){var d,e,f,g,h,i=function(){var j=+new Date-g;b>j?d=setTimeout(i,b-j):(d=null,c||(h=a.apply(f,e),f=e=null))};return function(){f=this,e=arguments,g=+new Date;var j=c&&!d;return d||(d=setTimeout(i,b)),j&&(h=a.apply(f,e),f=e=null),h}}function ka(b,c){return b&&b.then&&"resolved"!==b.state()?c?b.then(c):void 0:a.when(c())}function la(c,d,e){var f,g,h,i,j=c[0],k=1==c.length&&"string"==typeof j;return b.isMoment(j)?(i=b.apply(null,c),na(j,i)):U(j)||void 0===j?i=b.apply(null,c):(f=!1,g=!1,k?eb.test(j)?(j+="-01",c=[j],f=!0,g=!0):(h=fb.exec(j))&&(f=!h[5],g=!0):a.isArray(j)&&(g=!0),i=d||f?b.utc.apply(b,c):b.apply(null,c),f?(i._ambigTime=!0,i._ambigZone=!0):e&&(g?i._ambigZone=!0:k&&(i.utcOffset?i.utcOffset(j):i.zone(j)))),i._fullCalendar=!0,i}function ma(a,c){var d,e,f=!1,g=!1,h=a.length,i=[];for(d=0;h>d;d++)e=a[d],b.isMoment(e)||(e=Wa.moment.parseZone(e)),f=f||e._ambigTime,g=g||e._ambigZone,i.push(e);for(d=0;h>d;d++)e=i[d],c||!f||e._ambigTime?g&&!e._ambigZone&&(i[d]=e.clone().stripZone()):i[d]=e.clone().stripTime();return i}function na(a,b){a._ambigTime?b._ambigTime=!0:b._ambigTime&&(b._ambigTime=!1),a._ambigZone?b._ambigZone=!0:b._ambigZone&&(b._ambigZone=!1)}function oa(a,b){a.year(b[0]||0).month(b[1]||0).date(b[2]||0).hours(b[3]||0).minutes(b[4]||0).seconds(b[5]||0).milliseconds(b[6]||0)}function pa(a,b){return hb.format.call(a,b)}function qa(a,b){return ra(a,wa(b))}function ra(a,b){var c,d="";for(c=0;cg&&(f=va(a,b,j,k,c[h]),f!==!1);h--)m=f+m;for(i=g;h>=i;i++)n+=sa(a,c[i]),o+=sa(b,c[i]);return(n||o)&&(p=e?o+d+n:n+d+o),l+p+m}function va(a,b,c,d,e){var f,g;return"string"==typeof e?e:(f=e.token)&&(g=jb[f.charAt(0)],g&&c.isSame(d,g))?pa(a,f):!1}function wa(a){return a in kb?kb[a]:kb[a]=xa(a)}function xa(a){for(var b,c=[],d=/\[([^\]]*)\]|\(([^\)]*)\)|(LTS|LT|(\w)\4*o?)|([^\w\[\(]+)/g;b=d.exec(a);)b[1]?c.push(b[1]):b[2]?c.push({maybe:xa(b[2])}):b[3]?c.push({token:b[3]}):b[5]&&c.push(b[5]);return c}function ya(){}function za(a,b){var c;return $(b,"constructor")&&(c=b.constructor),"function"!=typeof c&&(c=b.constructor=function(){a.apply(this,arguments)}),c.prototype=X(a.prototype),Y(b,c.prototype),Z(b,c.prototype),Y(a,c),c}function Aa(a,b){Y(b,a.prototype)}function Ba(a,b){return a||b?a&&b?a.component===b.component&&Ca(a,b)&&Ca(b,a):!1:!0}function Ca(a,b){for(var c in a)if(!/^(component|left|right|top|bottom)$/.test(c)&&a[c]!==b[c])return!1;return!0}function Da(a){var b=Fa(a);return"background"===b||"inverse-background"===b}function Ea(a){return"inverse-background"===Fa(a)}function Fa(a){return ba((a.source||{}).rendering,a.rendering)}function Ga(a){var b,c,d={};for(b=0;b=a.leftCol)return!0;return!1}function Ka(a,b){return a.leftCol-b.leftCol}function La(a){var b,c,d,e=[];for(b=0;bb.top&&a.top").prependTo(c),R=N.header=new Ta(N,O),S=R.render(),S&&c.prepend(S),i(O.defaultView),O.handleWindowResize&&(Y=ja(m,O.windowResizeDelay),a(window).resize(Y))}function g(){V&&V.removeElement(),R.removeElement(),T.remove(),c.removeClass("fc fc-ltr fc-rtl fc-unthemed ui-widget"),Y&&a(window).unbind("resize",Y)}function h(){return c.is(":visible")}function i(b){da++,V&&b&&V.type!==b&&(R.deactivateButton(V.type),H(),V.removeElement(),V=N.view=null),!V&&b&&(V=N.view=ca[b]||(ca[b]=N.instantiateView(b)),V.setElement(a("
    ").appendTo(T)),R.activateButton(b)),V&&(Z=V.massageCurrentDate(Z),V.displaying&&Z.isWithin(V.intervalStart,V.intervalEnd)||h()&&(V.display(Z),I(),u(),v(),q())),I(),da--}function j(a){return h()?(a&&l(),da++,V.updateSize(!0),da--,!0):void 0}function k(){h()&&l()}function l(){W="number"==typeof O.contentHeight?O.contentHeight:"number"==typeof O.height?O.height-(S?S.outerHeight(!0):0):Math.round(T.width()/Math.max(O.aspectRatio,.5))}function m(a){!da&&a.target===window&&V.start&&j(!0)&&V.trigger("windowResize",ba)}function n(){r()}function o(a){aa(N.getEventSourcesByMatchArray(a))}function p(){h()&&(H(),V.displayEvents(ea),I())}function q(){!O.lazyFetching||$(V.start,V.end)?r():p()}function r(){_(V.start,V.end)}function s(a){ea=a,p()}function t(){p()}function u(){R.updateTitle(V.title)}function v(){var a=N.getNow();a.isWithin(V.intervalStart,V.intervalEnd)?R.disableButton("today"):R.enableButton("today")}function w(a,b){V.select(N.buildSelectSpan.apply(N,arguments))}function x(){V&&V.unselect()}function y(){Z=V.computePrevDate(Z),i()}function z(){Z=V.computeNextDate(Z),i()}function A(){Z.add(-1,"years"),i()}function B(){Z.add(1,"years"),i()}function C(){Z=N.getNow(),i()}function D(a){Z=N.moment(a).stripZone(),i()}function E(a){Z.add(b.duration(a)),i()}function F(a,b){var c;b=b||"day",c=N.getViewSpec(b)||N.getUnitViewSpec(b),Z=a.clone(),i(c?c.type:null)}function G(){return N.applyTimezone(Z)}function H(){T.css({width:"100%",height:T.height(),overflow:"hidden"})}function I(){T.css({width:"",height:"",overflow:""})}function J(){return N}function K(){return V}function L(a,b){return void 0===b?O[a]:void("height"!=a&&"contentHeight"!=a&&"aspectRatio"!=a||(O[a]=b,j(!0)))}function M(a,b){var c=Array.prototype.slice.call(arguments,2);return b=b||ba,this.triggerWith(a,b,c),O[a]?O[a].apply(b,c):void 0}var N=this;N.initOptions(d||{});var O=this.options;N.render=e,N.destroy=g,N.refetchEvents=n,N.refetchEventSources=o,N.reportEvents=s,N.reportEventChange=t,N.rerenderEvents=p,N.changeView=i,N.select=w,N.unselect=x,N.prev=y,N.next=z,N.prevYear=A,N.nextYear=B,N.today=C,N.gotoDate=D,N.incrementDate=E,N.zoomTo=F,N.getDate=G,N.getCalendar=J,N.getView=K,N.option=L,N.trigger=M;var P=X(Sa(O.lang));if(O.monthNames&&(P._months=O.monthNames),O.monthNamesShort&&(P._monthsShort=O.monthNamesShort),O.dayNames&&(P._weekdays=O.dayNames),O.dayNamesShort&&(P._weekdaysShort=O.dayNamesShort),null!=O.firstDay){var Q=X(P._week);Q.dow=O.firstDay,P._week=Q}P._fullCalendar_weekCalc=function(a){return"function"==typeof a?a:"local"===a?a:"iso"===a||"ISO"===a?"ISO":void 0}(O.weekNumberCalculation),N.defaultAllDayEventDuration=b.duration(O.defaultAllDayEventDuration),N.defaultTimedEventDuration=b.duration(O.defaultTimedEventDuration),N.moment=function(){var a;return"local"===O.timezone?(a=Wa.moment.apply(null,arguments),a.hasTime()&&a.local()):a="UTC"===O.timezone?Wa.moment.utc.apply(null,arguments):Wa.moment.parseZone.apply(null,arguments),"_locale"in a?a._locale=P:a._lang=P,a},N.getIsAmbigTimezone=function(){return"local"!==O.timezone&&"UTC"!==O.timezone},N.applyTimezone=function(a){if(!a.hasTime())return a.clone();var b,c=N.moment(a.toArray()),d=a.time()-c.time();return d&&(b=c.clone().add(d),a.time()-b.time()===0&&(c=b)),c},N.getNow=function(){var a=O.now;return"function"==typeof a&&(a=a()),N.moment(a).stripZone()},N.getEventEnd=function(a){return a.end?a.end.clone():N.getDefaultEventEnd(a.allDay,a.start)},N.getDefaultEventEnd=function(a,b){var c=b.clone();return a?c.stripTime().add(N.defaultAllDayEventDuration):c.add(N.defaultTimedEventDuration),N.getIsAmbigTimezone()&&c.stripZone(),c},N.humanizeDuration=function(a){return(a.locale||a.lang).call(a,O.lang).humanize()},Ua.call(N,O);var R,S,T,U,V,W,Y,Z,$=N.isFetchNeeded,_=N.fetchEvents,aa=N.fetchEventSources,ba=c[0],ca={},da=0,ea=[];Z=null!=O.defaultDate?N.moment(O.defaultDate).stripZone():N.getNow(),N.getSuggestedViewHeight=function(){return void 0===W&&k(),W},N.isHeightAuto=function(){return"auto"===O.contentHeight||"auto"===O.height},N.freezeContentHeight=H,N.unfreezeContentHeight=I,N.initialize()}function Ra(b){a.each(Db,function(a,c){null==b[a]&&(b[a]=c(b))})}function Sa(a){var c=b.localeData||b.langData;return c.call(b,a)||c.call(b,"en")}function Ta(b,c){function d(){var b=c.header;return n=c.theme?"ui":"fc",b?o=a("
    ").append(f("left")).append(f("right")).append(f("center")).append('
    '):void 0}function e(){o.remove(),o=a()}function f(d){var e=a('
    '),f=c.header[d];return f&&a.each(f.split(" "),function(d){var f,g=a(),h=!0;a.each(this.split(","),function(d,e){var f,i,j,k,l,m,o,q,r,s;"title"==e?(g=g.add(a("

     

    ")),h=!1):((f=(b.options.customButtons||{})[e])?(j=function(a){f.click&&f.click.call(s[0],a)},k="",l=f.text):(i=b.getViewSpec(e))?(j=function(){b.changeView(e)},p.push(e),k=i.buttonTextOverride,l=i.buttonTextDefault):b[e]&&(j=function(){b[e]()},k=(b.overrides.buttonText||{})[e],l=c.buttonText[e]),j&&(m=f?f.themeIcon:c.themeButtonIcons[e],o=f?f.icon:c.buttonIcons[e],q=k?ca(k):m&&c.theme?"":o&&!c.theme?"":ca(l),r=["fc-"+e+"-button",n+"-button",n+"-state-default"],s=a('").click(function(a){s.hasClass(n+"-state-disabled")||(j(a),(s.hasClass(n+"-state-active")||s.hasClass(n+"-state-disabled"))&&s.removeClass(n+"-state-hover"))}).mousedown(function(){s.not("."+n+"-state-active").not("."+n+"-state-disabled").addClass(n+"-state-down")}).mouseup(function(){s.removeClass(n+"-state-down")}).hover(function(){s.not("."+n+"-state-active").not("."+n+"-state-disabled").addClass(n+"-state-hover")},function(){s.removeClass(n+"-state-hover").removeClass(n+"-state-down")}),g=g.add(s)))}),h&&g.first().addClass(n+"-corner-left").end().last().addClass(n+"-corner-right").end(),g.length>1?(f=a("
    "),h&&f.addClass("fc-button-group"),f.append(g),e.append(f)):e.append(g)}),e}function g(a){o.find("h2").text(a)}function h(a){o.find(".fc-"+a+"-button").addClass(n+"-state-active")}function i(a){o.find(".fc-"+a+"-button").removeClass(n+"-state-active")}function j(a){o.find(".fc-"+a+"-button").prop("disabled",!0).addClass(n+"-state-disabled")}function k(a){o.find(".fc-"+a+"-button").prop("disabled",!1).removeClass(n+"-state-disabled")}function l(){return p}var m=this;m.render=d,m.removeElement=e,m.updateTitle=g,m.activateButton=h,m.deactivateButton=i,m.disableButton=j,m.enableButton=k,m.getViewsWithButtons=l;var n,o=a(),p=[]}function Ua(c){function d(a,b){return!W||W>a||b>X}function e(a,b){W=a,X=b,f($,"reset")}function f(a,b){var c,d;for("reset"===b?da=[]:"add"!==b&&(da=v(da,a)),c=0;c=c&&b.end<=d}function T(a,b){var c=a.start.clone().stripZone(),d=U.getEventEnd(a).stripZone();return b.startc}var U=this;U.isFetchNeeded=d,U.fetchEvents=e,U.fetchEventSources=f,U.getEventSources=p,U.getEventSourceById=q,U.getEventSourcesByMatchArray=r,U.getEventSourcesByMatch=s,U.addEventSource=k,U.removeEventSource=m,U.removeEventSources=n,U.updateEvent=w,U.renderEvent=z,U.removeEvents=A,U.clientEvents=B,U.mutateEvent=H,U.normalizeEventDates=E,U.normalizeEventTimes=F;var W,X,Y=U.reportEvents,Z={events:[]},$=[Z],ca=0,da=[];a.each((c.events?[c.events]:[]).concat(c.eventSources||[]),function(a,b){var c=l(b);c&&$.push(c)}),U.getBusinessHoursEvents=J,U.isEventSpanAllowed=K,U.isExternalSpanAllowed=O,U.isSelectionSpanAllowed=P,U.getEventCache=function(){return da}}function Va(a){a._allDay=a.allDay,a._start=a.start.clone(),a._end=a.end?a.end.clone():null}var Wa=a.fullCalendar={version:"2.8.0",internalApiVersion:4},Xa=Wa.views={};a.fn.fullCalendar=function(b){var c=Array.prototype.slice.call(arguments,1),d=this;return this.each(function(e,f){var g,h=a(f),i=h.data("fullCalendar");"string"==typeof b?i&&a.isFunction(i[b])&&(g=i[b].apply(i,c),e||(d=g),"destroy"===b&&h.removeData("fullCalendar")):i||(i=new zb(h,b),h.data("fullCalendar",i),i.render())}),d};var Ya=["header","buttonText","buttonIcons","themeButtonIcons"];Wa.intersectRanges=K,Wa.applyAll=aa,Wa.debounce=ja,Wa.isInt=ha,Wa.htmlEscape=ca,Wa.cssToStr=ea,Wa.proxy=ia,Wa.capitaliseFirstLetter=fa,Wa.getOuterRect=n,Wa.getClientRect=o,Wa.getContentRect=p,Wa.getScrollbarWidths=q;var Za=null;Wa.preventDefault=z,Wa.intersectRects=C,Wa.parseFieldSpecs=G,Wa.compareByFieldSpecs=H,Wa.compareByFieldSpec=I,Wa.flexibleCompare=J,Wa.computeIntervalUnit=O,Wa.divideRangeByDuration=Q,Wa.divideDurationByDuration=R,Wa.multiplyDuration=S,Wa.durationHasTime=T;var $a=["sun","mon","tue","wed","thu","fri","sat"],_a=["year","month","week","day","hour","minute","second","millisecond"];Wa.log=function(){var a=window.console;return a&&a.log?a.log.apply(a,arguments):void 0},Wa.warn=function(){var a=window.console;return a&&a.warn?a.warn.apply(a,arguments):Wa.log.apply(Wa,arguments)};var ab,bb,cb,db={}.hasOwnProperty,eb=/^\s*\d{4}-\d\d$/,fb=/^\s*\d{4}-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?)?$/,gb=b.fn,hb=a.extend({},gb);Wa.moment=function(){return la(arguments)},Wa.moment.utc=function(){var a=la(arguments,!0);return a.hasTime()&&a.utc(),a},Wa.moment.parseZone=function(){return la(arguments,!0,!0)},gb.clone=function(){var a=hb.clone.apply(this,arguments);return na(this,a),this._fullCalendar&&(a._fullCalendar=!0),a},gb.week=gb.weeks=function(a){var b=(this._locale||this._lang)._fullCalendar_weekCalc;return null==a&&"function"==typeof b?b(this):"ISO"===b?hb.isoWeek.apply(this,arguments):hb.week.apply(this,arguments)},gb.time=function(a){if(!this._fullCalendar)return hb.time.apply(this,arguments);if(null==a)return b.duration({hours:this.hours(),minutes:this.minutes(),seconds:this.seconds(),milliseconds:this.milliseconds()});this._ambigTime=!1,b.isDuration(a)||b.isMoment(a)||(a=b.duration(a));var c=0;return b.isDuration(a)&&(c=24*Math.floor(a.asDays())),this.hours(c+a.hours()).minutes(a.minutes()).seconds(a.seconds()).milliseconds(a.milliseconds())},gb.stripTime=function(){var a;return this._ambigTime||(a=this.toArray(),this.utc(),bb(this,a.slice(0,3)),this._ambigTime=!0,this._ambigZone=!0),this},gb.hasTime=function(){return!this._ambigTime},gb.stripZone=function(){var a,b;return this._ambigZone||(a=this.toArray(),b=this._ambigTime,this.utc(),bb(this,a),this._ambigTime=b||!1,this._ambigZone=!0),this},gb.hasZone=function(){return!this._ambigZone},gb.local=function(){var a=this.toArray(),b=this._ambigZone;return hb.local.apply(this,arguments),this._ambigTime=!1,this._ambigZone=!1,b&&cb(this,a),this},gb.utc=function(){return hb.utc.apply(this,arguments),this._ambigTime=!1,this._ambigZone=!1,this},a.each(["zone","utcOffset"],function(a,b){hb[b]&&(gb[b]=function(a){return null!=a&&(this._ambigTime=!1,this._ambigZone=!1),hb[b].apply(this,arguments)})}),gb.format=function(){return this._fullCalendar&&arguments[0]?qa(this,arguments[0]):this._ambigTime?pa(this,"YYYY-MM-DD"):this._ambigZone?pa(this,"YYYY-MM-DD[T]HH:mm:ss"):hb.format.apply(this,arguments)},gb.toISOString=function(){return this._ambigTime?pa(this,"YYYY-MM-DD"):this._ambigZone?pa(this,"YYYY-MM-DD[T]HH:mm:ss"):hb.toISOString.apply(this,arguments)},gb.isWithin=function(a,b){var c=ma([this,a,b]);return c[0]>=c[1]&&c[0]a;a++)b=arguments[a],c-1>a&&Aa(this,b);return za(this,b||{}); -},ya.mixin=function(a){Aa(this,a)};var lb=Wa.EmitterMixin={on:function(b,c){var d=function(a,b){return c.apply(b.context||this,b.args||[])};return c.guid||(c.guid=a.guid++),d.guid=c.guid,a(this).on(b,d),this},off:function(b,c){return a(this).off(b,c),this},trigger:function(b){var c=Array.prototype.slice.call(arguments,1);return a(this).triggerHandler(b,{args:c}),this},triggerWith:function(b,c,d){return a(this).triggerHandler(b,{context:c,args:d}),this}},mb=Wa.ListenerMixin=function(){var b=0,c={listenerId:null,listenTo:function(b,c,d){if("object"==typeof c)for(var e in c)c.hasOwnProperty(e)&&this.listenTo(b,e,c[e]);else"string"==typeof c&&b.on(c+"."+this.getListenerNamespace(),a.proxy(d,this))},stopListeningTo:function(a,b){a.off((b||"")+"."+this.getListenerNamespace())},getListenerNamespace:function(){return null==this.listenerId&&(this.listenerId=b++),"_listener"+this.listenerId}};return c}(),nb={isIgnoringMouse:!1,delayUnignoreMouse:null,initMouseIgnoring:function(a){this.delayUnignoreMouse=ja(ia(this,"unignoreMouse"),a||1e3)},tempIgnoreMouse:function(){this.isIgnoringMouse=!0,this.delayUnignoreMouse()},unignoreMouse:function(){this.isIgnoringMouse=!1}},ob=ya.extend(mb,{isHidden:!0,options:null,el:null,margin:10,constructor:function(a){this.options=a||{}},show:function(){this.isHidden&&(this.el||this.render(),this.el.show(),this.position(),this.isHidden=!1,this.trigger("show"))},hide:function(){this.isHidden||(this.el.hide(),this.isHidden=!0,this.trigger("hide"))},render:function(){var b=this,c=this.options;this.el=a('
    ').addClass(c.className||"").css({top:0,left:0}).append(c.content).appendTo(c.parentEl),this.el.on("click",".fc-close",function(){b.hide()}),c.autoHide&&this.listenTo(a(document),"mousedown",this.documentMousedown)},documentMousedown:function(b){this.el&&!a(b.target).closest(this.el).length&&this.hide()},removeElement:function(){this.hide(),this.el&&(this.el.remove(),this.el=null),this.stopListeningTo(a(document),"mousedown")},position:function(){var b,c,d,e,f,g=this.options,h=this.el.offsetParent().offset(),i=this.el.outerWidth(),j=this.el.outerHeight(),k=a(window),l=m(this.el);e=g.top||0,f=void 0!==g.left?g.left:void 0!==g.right?g.right-i:0,l.is(window)||l.is(document)?(l=k,b=0,c=0):(d=l.offset(),b=d.top,c=d.left),b+=k.scrollTop(),c+=k.scrollLeft(),g.viewportConstrain!==!1&&(e=Math.min(e,b+l.outerHeight()-j-this.margin),e=Math.max(e,b+this.margin),f=Math.min(f,c+l.outerWidth()-i-this.margin),f=Math.max(f,c+this.margin)),this.el.css({top:e-h.top,left:f-h.left})},trigger:function(a){this.options[a]&&this.options[a].apply(this,Array.prototype.slice.call(arguments,1))}}),pb=Wa.CoordCache=ya.extend({els:null,forcedOffsetParentEl:null,origin:null,boundingRect:null,isHorizontal:!1,isVertical:!1,lefts:null,rights:null,tops:null,bottoms:null,constructor:function(b){this.els=a(b.els),this.isHorizontal=b.isHorizontal,this.isVertical=b.isVertical,this.forcedOffsetParentEl=b.offsetParent?a(b.offsetParent):null},build:function(){var a=this.forcedOffsetParentEl||this.els.eq(0).offsetParent();this.origin=a.offset(),this.boundingRect=this.queryBoundingRect(),this.isHorizontal&&this.buildElHorizontals(),this.isVertical&&this.buildElVerticals()},clear:function(){this.origin=null,this.boundingRect=null,this.lefts=null,this.rights=null,this.tops=null,this.bottoms=null},ensureBuilt:function(){this.origin||this.build()},queryBoundingRect:function(){var a=m(this.els.eq(0));return a.is(document)?void 0:o(a)},buildElHorizontals:function(){var b=[],c=[];this.els.each(function(d,e){var f=a(e),g=f.offset().left,h=f.outerWidth();b.push(g),c.push(g+h)}),this.lefts=b,this.rights=c},buildElVerticals:function(){var b=[],c=[];this.els.each(function(d,e){var f=a(e),g=f.offset().top,h=f.outerHeight();b.push(g),c.push(g+h)}),this.tops=b,this.bottoms=c},getHorizontalIndex:function(a){this.ensureBuilt();var b,c=this.boundingRect,d=this.lefts,e=this.rights,f=d.length;if(!c||a>=c.left&&ab;b++)if(a>=d[b]&&a=c.top&&ab;b++)if(a>=d[b]&&a=e*e&&this.handleDistanceSurpassed(a)),this.isDragging&&this.handleDrag(c,d,a)},handleDrag:function(a,b,c){this.trigger("drag",a,b,c),this.updateAutoScroll(c)},endDrag:function(a){this.isDragging&&(this.isDragging=!1,this.handleDragEnd(a))},handleDragEnd:function(a){this.trigger("dragEnd",a),this.destroyHrefHack()},startDelay:function(a){var b=this;this.delay?this.delayTimeoutId=setTimeout(function(){b.handleDelayEnd(a)},this.delay):this.handleDelayEnd(a)},handleDelayEnd:function(a){this.isDelayEnded=!0,this.isDistanceSurpassed&&this.startDrag(a)},handleDistanceSurpassed:function(a){this.isDistanceSurpassed=!0,this.isDelayEnded&&this.startDrag(a)},handleTouchMove:function(a){this.isDragging&&a.preventDefault(),this.handleMove(a)},handleMouseMove:function(a){this.handleMove(a)},handleTouchScroll:function(a){this.isDragging||this.endInteraction(a,!0)},initHrefHack:function(){var a=this.subjectEl;(this.subjectHref=a?a.attr("href"):null)&&a.removeAttr("href")},destroyHrefHack:function(){var a=this.subjectEl,b=this.subjectHref;setTimeout(function(){b&&a.attr("href",b)},0)},trigger:function(a){this.options[a]&&this.options[a].apply(this,Array.prototype.slice.call(arguments,1)),this["_"+a]&&this["_"+a].apply(this,Array.prototype.slice.call(arguments,1))}});qb.mixin({isAutoScroll:!1,scrollBounds:null,scrollTopVel:null,scrollLeftVel:null,scrollIntervalId:null,scrollSensitivity:30,scrollSpeed:200,scrollIntervalMs:50,initAutoScroll:function(){var a=this.scrollEl;this.isAutoScroll=this.options.scroll&&a&&!a.is(window)&&!a.is(document),this.isAutoScroll&&this.listenTo(a,"scroll",ja(this.handleDebouncedScroll,100))},destroyAutoScroll:function(){this.endAutoScroll(),this.isAutoScroll&&this.stopListeningTo(this.scrollEl,"scroll")},computeScrollBounds:function(){this.isAutoScroll&&(this.scrollBounds=n(this.scrollEl))},updateAutoScroll:function(a){var b,c,d,e,f=this.scrollSensitivity,g=this.scrollBounds,h=0,i=0;g&&(b=(f-(w(a)-g.top))/f,c=(f-(g.bottom-w(a)))/f,d=(f-(v(a)-g.left))/f,e=(f-(g.right-v(a)))/f,b>=0&&1>=b?h=b*this.scrollSpeed*-1:c>=0&&1>=c&&(h=c*this.scrollSpeed),d>=0&&1>=d?i=d*this.scrollSpeed*-1:e>=0&&1>=e&&(i=e*this.scrollSpeed)),this.setScrollVel(h,i)},setScrollVel:function(a,b){this.scrollTopVel=a,this.scrollLeftVel=b,this.constrainScrollVel(),!this.scrollTopVel&&!this.scrollLeftVel||this.scrollIntervalId||(this.scrollIntervalId=setInterval(ia(this,"scrollIntervalFunc"),this.scrollIntervalMs))},constrainScrollVel:function(){var a=this.scrollEl;this.scrollTopVel<0?a.scrollTop()<=0&&(this.scrollTopVel=0):this.scrollTopVel>0&&a.scrollTop()+a[0].clientHeight>=a[0].scrollHeight&&(this.scrollTopVel=0),this.scrollLeftVel<0?a.scrollLeft()<=0&&(this.scrollLeftVel=0):this.scrollLeftVel>0&&a.scrollLeft()+a[0].clientWidth>=a[0].scrollWidth&&(this.scrollLeftVel=0)},scrollIntervalFunc:function(){var a=this.scrollEl,b=this.scrollIntervalMs/1e3;this.scrollTopVel&&a.scrollTop(a.scrollTop()+this.scrollTopVel*b),this.scrollLeftVel&&a.scrollLeft(a.scrollLeft()+this.scrollLeftVel*b),this.constrainScrollVel(),this.scrollTopVel||this.scrollLeftVel||this.endAutoScroll()},endAutoScroll:function(){this.scrollIntervalId&&(clearInterval(this.scrollIntervalId),this.scrollIntervalId=null,this.handleScrollEnd())},handleDebouncedScroll:function(){this.scrollIntervalId||this.handleScrollEnd()},handleScrollEnd:function(){}});var rb=qb.extend({component:null,origHit:null,hit:null,coordAdjust:null,constructor:function(a,b){qb.call(this,b),this.component=a},handleInteractionStart:function(a){var b,c,d,e=this.subjectEl;this.computeCoords(),a?(c={left:v(a),top:w(a)},d=c,e&&(b=n(e),d=D(d,b)),this.origHit=this.queryHit(d.left,d.top),e&&this.options.subjectCenter&&(this.origHit&&(b=C(this.origHit,b)||b),d=E(b)),this.coordAdjust=F(d,c)):(this.origHit=null,this.coordAdjust=null),qb.prototype.handleInteractionStart.apply(this,arguments)},computeCoords:function(){this.component.prepareHits(),this.computeScrollBounds()},handleDragStart:function(a){var b;qb.prototype.handleDragStart.apply(this,arguments),b=this.queryHit(v(a),w(a)),b&&this.handleHitOver(b)},handleDrag:function(a,b,c){var d;qb.prototype.handleDrag.apply(this,arguments),d=this.queryHit(v(c),w(c)),Ba(d,this.hit)||(this.hit&&this.handleHitOut(),d&&this.handleHitOver(d))},handleDragEnd:function(){this.handleHitDone(),qb.prototype.handleDragEnd.apply(this,arguments)},handleHitOver:function(a){var b=Ba(a,this.origHit);this.hit=a,this.trigger("hitOver",this.hit,b,this.origHit)},handleHitOut:function(){this.hit&&(this.trigger("hitOut",this.hit),this.handleHitDone(),this.hit=null)},handleHitDone:function(){this.hit&&this.trigger("hitDone",this.hit)},handleInteractionEnd:function(){qb.prototype.handleInteractionEnd.apply(this,arguments),this.origHit=null,this.hit=null,this.component.releaseHits()},handleScrollEnd:function(){qb.prototype.handleScrollEnd.apply(this,arguments),this.computeCoords()},queryHit:function(a,b){return this.coordAdjust&&(a+=this.coordAdjust.left,b+=this.coordAdjust.top),this.component.queryHit(a,b)}}),sb=ya.extend(mb,{options:null,sourceEl:null,el:null,parentEl:null,top0:null,left0:null,y0:null,x0:null,topDelta:null,leftDelta:null,isFollowing:!1,isHidden:!1,isAnimating:!1,constructor:function(b,c){this.options=c=c||{},this.sourceEl=b,this.parentEl=c.parentEl?a(c.parentEl):b.parent()},start:function(b){this.isFollowing||(this.isFollowing=!0,this.y0=w(b),this.x0=v(b),this.topDelta=0,this.leftDelta=0,this.isHidden||this.updatePosition(),x(b)?this.listenTo(a(document),"touchmove",this.handleMove):this.listenTo(a(document),"mousemove",this.handleMove))},stop:function(b,c){function d(){this.isAnimating=!1,e.removeElement(),this.top0=this.left0=null,c&&c()}var e=this,f=this.options.revertDuration;this.isFollowing&&!this.isAnimating&&(this.isFollowing=!1,this.stopListeningTo(a(document)),b&&f&&!this.isHidden?(this.isAnimating=!0,this.el.animate({top:this.top0,left:this.left0},{duration:f,complete:d})):d())},getEl:function(){var a=this.el;return a||(this.sourceEl.width(),a=this.el=this.sourceEl.clone().addClass(this.options.additionalClass||"").css({position:"absolute",visibility:"",display:this.isHidden?"none":"",margin:0,right:"auto",bottom:"auto",width:this.sourceEl.width(),height:this.sourceEl.height(),opacity:this.options.opacity||"",zIndex:this.options.zIndex}),a.addClass("fc-unselectable"),a.appendTo(this.parentEl)),a},removeElement:function(){this.el&&(this.el.remove(),this.el=null)},updatePosition:function(){var a,b;this.getEl(),null===this.top0&&(this.sourceEl.width(),a=this.sourceEl.offset(),b=this.el.offsetParent().offset(),this.top0=a.top-b.top,this.left0=a.left-b.left),this.el.css({top:this.top0+this.topDelta,left:this.left0+this.leftDelta})},handleMove:function(a){this.topDelta=w(a)-this.y0,this.leftDelta=v(a)-this.x0,this.isHidden||this.updatePosition()},hide:function(){this.isHidden||(this.isHidden=!0,this.el&&this.el.hide())},show:function(){this.isHidden&&(this.isHidden=!1,this.updatePosition(),this.getEl().show())}}),tb=Wa.Grid=ya.extend(mb,nb,{view:null,isRTL:null,start:null,end:null,el:null,elsByFill:null,eventTimeFormat:null,displayEventTime:null,displayEventEnd:null,minResizeDuration:null,largeUnit:null,dayDragListener:null,segDragListener:null,segResizeListener:null,externalDragListener:null,constructor:function(a){this.view=a,this.isRTL=a.opt("isRTL"),this.elsByFill={},this.dayDragListener=this.buildDayDragListener(),this.initMouseIgnoring()},computeEventTimeFormat:function(){return this.view.opt("smallTimeFormat")},computeDisplayEventTime:function(){return!0},computeDisplayEventEnd:function(){return!0},setRange:function(a){this.start=a.start.clone(),this.end=a.end.clone(),this.rangeUpdated(),this.processRangeOptions()},rangeUpdated:function(){},processRangeOptions:function(){var a,b,c=this.view;this.eventTimeFormat=c.opt("eventTimeFormat")||c.opt("timeFormat")||this.computeEventTimeFormat(),a=c.opt("displayEventTime"),null==a&&(a=this.computeDisplayEventTime()),b=c.opt("displayEventEnd"),null==b&&(b=this.computeDisplayEventEnd()),this.displayEventTime=a,this.displayEventEnd=b},spanToSegs:function(a){},diffDates:function(a,b){return this.largeUnit?N(a,b,this.largeUnit):L(a,b)},prepareHits:function(){},releaseHits:function(){},queryHit:function(a,b){},getHitSpan:function(a){},getHitEl:function(a){},setElement:function(a){this.el=a,y(a),this.bindDayHandler("touchstart",this.dayTouchStart),this.bindDayHandler("mousedown",this.dayMousedown),this.bindSegHandlers(),this.bindGlobalHandlers()},bindDayHandler:function(b,c){var d=this;this.el.on(b,function(b){return a(b.target).is(".fc-event-container *, .fc-more")||a(b.target).closest(".fc-popover").length?void 0:c.call(d,b)})},removeElement:function(){this.unbindGlobalHandlers(),this.clearDragListeners(),this.el.remove()},renderSkeleton:function(){},renderDates:function(){},unrenderDates:function(){},bindGlobalHandlers:function(){this.listenTo(a(document),{dragstart:this.externalDragStart,sortstart:this.externalDragStart})},unbindGlobalHandlers:function(){this.stopListeningTo(a(document))},dayMousedown:function(a){this.isIgnoringMouse||this.dayDragListener.startInteraction(a,{})},dayTouchStart:function(a){var b=this.view;(b.isSelected||b.selectedEvent)&&this.tempIgnoreMouse(),this.dayDragListener.startInteraction(a,{delay:this.view.opt("longPressDelay")})},buildDayDragListener:function(){var a,b,c=this,d=this.view,e=d.opt("selectable"),f=new rb(this,{scroll:d.opt("dragScroll"),interactionStart:function(){a=f.origHit},dragStart:function(){d.unselect()},hitOver:function(d,f,h){h&&(f||(a=null),e&&(b=c.computeSelection(c.getHitSpan(h),c.getHitSpan(d)),b?c.renderSelection(b):b===!1&&g()))},hitOut:function(){a=null,b=null,c.unrenderSelection(),h()},interactionEnd:function(e,f){f||(a&&!c.isIgnoringMouse&&d.triggerDayClick(c.getHitSpan(a),c.getHitEl(a),e),b&&d.reportSelection(b,e),h())}});return f},clearDragListeners:function(){this.dayDragListener.endInteraction(),this.segDragListener&&this.segDragListener.endInteraction(),this.segResizeListener&&this.segResizeListener.endInteraction(),this.externalDragListener&&this.externalDragListener.endInteraction()},renderEventLocationHelper:function(a,b){var c=this.fabricateHelperEvent(a,b);return this.renderHelper(c,b)},fabricateHelperEvent:function(a,b){var c=b?X(b.event):{};return c.start=a.start.clone(),c.end=a.end?a.end.clone():null,c.allDay=null,this.view.calendar.normalizeEventDates(c),c.className=(c.className||[]).concat("fc-helper"),b||(c.editable=!1),c},renderHelper:function(a,b){},unrenderHelper:function(){},renderSelection:function(a){this.renderHighlight(a)},unrenderSelection:function(){this.unrenderHighlight()},computeSelection:function(a,b){var c=this.computeSelectionSpan(a,b);return c&&!this.view.calendar.isSelectionSpanAllowed(c)?!1:c},computeSelectionSpan:function(a,b){var c=[a.start,a.end,b.start,b.end];return c.sort(ga),{start:c[0].clone(),end:c[3].clone()}},renderHighlight:function(a){this.renderFill("highlight",this.spanToSegs(a))},unrenderHighlight:function(){this.unrenderFill("highlight")},highlightSegClasses:function(){return["fc-highlight"]},renderBusinessHours:function(){},unrenderBusinessHours:function(){},getNowIndicatorUnit:function(){},renderNowIndicator:function(a){},unrenderNowIndicator:function(){},renderFill:function(a,b){},unrenderFill:function(a){var b=this.elsByFill[a];b&&(b.remove(),delete this.elsByFill[a])},renderFillSegEls:function(b,c){var d,e=this,f=this[b+"SegEl"],g="",h=[];if(c.length){for(d=0;d"},getDayClasses:function(a){var b=this.view,c=b.calendar.getNow(),d=["fc-"+$a[a.day()]];return 1==b.intervalDuration.as("months")&&a.month()!=b.intervalStart.month()&&d.push("fc-other-month"),a.isSame(c,"day")?d.push("fc-today",b.highlightStateClass):c>a?d.push("fc-past"):d.push("fc-future"),d}});tb.mixin({mousedOverSeg:null,isDraggingSeg:!1,isResizingSeg:!1,isDraggingExternal:!1,segs:null,renderEvents:function(a){var b,c=[],d=[];for(b=0;b *",function(b){var e=a(this).data("fc-seg");return!e||d.isDraggingSeg||d.isResizingSeg?void 0:c.call(d,e,b)})},handleSegClick:function(a,b){return this.view.trigger("eventClick",a.el[0],a.event,b)},handleSegMouseover:function(a,b){this.isIgnoringMouse||this.mousedOverSeg||(this.mousedOverSeg=a,a.el.addClass("fc-allow-mouse-resize"),this.view.trigger("eventMouseover",a.el[0],a.event,b))},handleSegMouseout:function(a,b){b=b||{},this.mousedOverSeg&&(a=a||this.mousedOverSeg,this.mousedOverSeg=null,a.el.removeClass("fc-allow-mouse-resize"),this.view.trigger("eventMouseout",a.el[0],a.event,b))},handleSegMousedown:function(a,b){var c=this.startSegResize(a,b,{distance:5});!c&&this.view.isEventDraggable(a.event)&&this.buildSegDragListener(a).startInteraction(b,{distance:5})},handleSegTouchStart:function(a,b){var c,d=this.view,e=a.event,f=d.isEventSelected(e),g=d.isEventDraggable(e),h=d.isEventResizable(e),i=!1;f&&h&&(i=this.startSegResize(a,b)),i||!g&&!h||(c=g?this.buildSegDragListener(a):this.buildSegSelectListener(a),c.startInteraction(b,{delay:f?0:this.view.opt("longPressDelay")})),this.tempIgnoreMouse()},handleSegTouchEnd:function(a,b){this.tempIgnoreMouse()},startSegResize:function(b,c,d){return a(c.target).is(".fc-resizer")?(this.buildSegResizeListener(b,a(c.target).is(".fc-start-resizer")).startInteraction(c,d),!0):!1},buildSegDragListener:function(a){var b,c,d,e=this,f=this.view,i=f.calendar,j=a.el,k=a.event;if(this.segDragListener)return this.segDragListener;var l=this.segDragListener=new rb(f,{scroll:f.opt("dragScroll"),subjectEl:j,subjectCenter:!0,interactionStart:function(d){b=!1,c=new sb(a.el,{additionalClass:"fc-dragging",parentEl:f.el,opacity:l.isTouch?null:f.opt("dragOpacity"),revertDuration:f.opt("dragRevertDuration"),zIndex:2}),c.hide(),c.start(d)},dragStart:function(c){l.isTouch&&!f.isEventSelected(k)&&f.selectEvent(k),b=!0,e.handleSegMouseout(a,c),e.segDragStart(a,c),f.hideEvent(k)},hitOver:function(b,h,j){var m;a.hit&&(j=a.hit),d=e.computeEventDrop(j.component.getHitSpan(j),b.component.getHitSpan(b),k),d&&!i.isEventSpanAllowed(e.eventToSpan(d),k)&&(g(),d=null),d&&(m=f.renderDrag(d,a))?(m.addClass("fc-dragging"),l.isTouch||e.applyDragOpacity(m),c.hide()):c.show(),h&&(d=null)},hitOut:function(){f.unrenderDrag(),c.show(),d=null},hitDone:function(){h()},interactionEnd:function(g){c.stop(!d,function(){b&&(f.unrenderDrag(),f.showEvent(k),e.segDragStop(a,g)),d&&f.reportEventDrop(k,d,this.largeUnit,j,g)}),e.segDragListener=null}});return l},buildSegSelectListener:function(a){var b=this,c=this.view,d=a.event;if(this.segDragListener)return this.segDragListener;var e=this.segDragListener=new qb({dragStart:function(a){e.isTouch&&!c.isEventSelected(d)&&c.selectEvent(d)},interactionEnd:function(a){b.segDragListener=null}});return e},segDragStart:function(a,b){this.isDraggingSeg=!0,this.view.trigger("eventDragStart",a.el[0],a.event,b,{})},segDragStop:function(a,b){this.isDraggingSeg=!1,this.view.trigger("eventDragStop",a.el[0],a.event,b,{})},computeEventDrop:function(a,b,c){var d,e,f=this.view.calendar,g=a.start,h=b.start;return g.hasTime()===h.hasTime()?(d=this.diffDates(h,g),c.allDay&&T(d)?(e={start:c.start.clone(),end:f.getEventEnd(c),allDay:!1},f.normalizeEventTimes(e)):e={start:c.start.clone(),end:c.end?c.end.clone():null,allDay:c.allDay},e.start.add(d),e.end&&e.end.add(d)):e={start:h.clone(),end:null,allDay:!h.hasTime()},e},applyDragOpacity:function(a){var b=this.view.opt("dragOpacity");null!=b&&a.each(function(a,c){c.style.opacity=b})},externalDragStart:function(b,c){var d,e,f=this.view;f.opt("droppable")&&(d=a((c?c.item:null)||b.target),e=f.opt("dropAccept"),(a.isFunction(e)?e.call(d[0],d):d.is(e))&&(this.isDraggingExternal||this.listenToExternalDrag(d,b,c)))},listenToExternalDrag:function(a,b,c){var d,e=this,f=this.view.calendar,i=Ia(a),j=e.externalDragListener=new rb(this,{interactionStart:function(){e.isDraggingExternal=!0},hitOver:function(a){d=e.computeExternalDrop(a.component.getHitSpan(a),i),d&&!f.isExternalSpanAllowed(e.eventToSpan(d),d,i.eventProps)&&(g(),d=null),d&&e.renderDrag(d)},hitOut:function(){d=null},hitDone:function(){h(),e.unrenderDrag()},interactionEnd:function(b){d&&e.view.reportExternalDrop(i,d,a,b,c),e.isDraggingExternal=!1,e.externalDragListener=null}});j.startDrag(b)},computeExternalDrop:function(a,b){var c=this.view.calendar,d={start:c.applyTimezone(a.start),end:null};return b.startTime&&!d.start.hasTime()&&d.start.time(b.startTime),b.duration&&(d.end=d.start.clone().add(b.duration)),d},renderDrag:function(a,b){},unrenderDrag:function(){},buildSegResizeListener:function(a,b){var c,d,e=this,f=this.view,i=f.calendar,j=a.el,k=a.event,l=i.getEventEnd(k),m=this.segResizeListener=new rb(this,{scroll:f.opt("dragScroll"),subjectEl:j,interactionStart:function(){c=!1},dragStart:function(b){c=!0,e.handleSegMouseout(a,b),e.segResizeStart(a,b)},hitOver:function(c,h,j){var m=e.getHitSpan(j),n=e.getHitSpan(c);d=b?e.computeEventStartResize(m,n,k):e.computeEventEndResize(m,n,k),d&&(i.isEventSpanAllowed(e.eventToSpan(d),k)?d.start.isSame(k.start)&&d.end.isSame(l)&&(d=null):(g(),d=null)),d&&(f.hideEvent(k),e.renderEventResize(d,a))},hitOut:function(){d=null},hitDone:function(){e.unrenderEventResize(),f.showEvent(k),h()},interactionEnd:function(b){c&&e.segResizeStop(a,b),d&&f.reportEventResize(k,d,this.largeUnit,j,b),e.segResizeListener=null}});return m},segResizeStart:function(a,b){this.isResizingSeg=!0,this.view.trigger("eventResizeStart",a.el[0],a.event,b,{})},segResizeStop:function(a,b){this.isResizingSeg=!1,this.view.trigger("eventResizeStop",a.el[0],a.event,b,{})},computeEventStartResize:function(a,b,c){return this.computeEventResize("start",a,b,c)},computeEventEndResize:function(a,b,c){return this.computeEventResize("end",a,b,c)},computeEventResize:function(a,b,c,d){var e,f,g=this.view.calendar,h=this.diffDates(c[a],b[a]);return e={start:d.start.clone(),end:g.getEventEnd(d),allDay:d.allDay},e.allDay&&T(h)&&(e.allDay=!1,g.normalizeEventTimes(e)),e[a].add(h),e.start.isBefore(e.end)||(f=this.minResizeDuration||(d.allDay?g.defaultAllDayEventDuration:g.defaultTimedEventDuration),"start"==a?e.start=e.end.clone().subtract(f):e.end=e.start.clone().add(f)),e},renderEventResize:function(a,b){},unrenderEventResize:function(){},getEventTimeText:function(a,b,c){return null==b&&(b=this.eventTimeFormat),null==c&&(c=this.displayEventEnd),this.displayEventTime&&a.start.hasTime()?c&&a.end?this.view.formatRange(a,b):a.start.format(b):""},getSegClasses:function(a,b,c){var d=this.view,e=a.event,f=["fc-event",a.isStart?"fc-start":"fc-not-start",a.isEnd?"fc-end":"fc-not-end"].concat(e.className,e.source?e.source.className:[]);return b&&f.push("fc-draggable"),c&&f.push("fc-resizable"),d.isEventSelected(e)&&f.push("fc-selected"),f},getSegSkinCss:function(a){var b=a.event,c=this.view,d=b.source||{},e=b.color,f=d.color,g=c.opt("eventColor");return{"background-color":b.backgroundColor||e||d.backgroundColor||f||c.opt("eventBackgroundColor")||g,"border-color":b.borderColor||e||d.borderColor||f||c.opt("eventBorderColor")||g,color:b.textColor||d.textColor||c.opt("eventTextColor")}},eventToSegs:function(a){return this.eventsToSegs([a])},eventToSpan:function(a){return this.eventToSpans(a)[0]},eventToSpans:function(a){var b=this.eventToRange(a);return this.eventRangeToSpans(b,a)},eventsToSegs:function(b,c){var d=this,e=Ga(b),f=[];return a.each(e,function(a,b){var e,g=[];for(e=0;eh&&g.push({start:h,end:c.start}),h=c.end;return f>h&&g.push({start:h,end:f}),g},sortEventSegs:function(a){a.sort(ia(this,"compareEventSegs"))},compareEventSegs:function(a,b){return a.eventStartMS-b.eventStartMS||b.eventDurationMS-a.eventDurationMS||b.event.allDay-a.event.allDay||H(a.event,b.event,this.view.eventOrderSpecs)}}),Wa.isBgEvent=Da,Wa.dataAttrPrefix="";var ub=Wa.DayTableMixin={breakOnWeeks:!1,dayDates:null,dayIndices:null,daysPerRow:null,rowCnt:null,colCnt:null,colHeadFormat:null,updateDayTable:function(){for(var a,b,c,d=this.view,e=this.start.clone(),f=-1,g=[],h=[];e.isBefore(this.end);)d.isHiddenDay(e)?g.push(f+.5):(f++,g.push(f),h.push(e.clone())),e.add(1,"days");if(this.breakOnWeeks){for(b=h[0].day(),a=1;ac?b[0]-1:c>=b.length?b[b.length-1]+1:b[c]},computeColHeadFormat:function(){return this.rowCnt>1||this.colCnt>10?"ddd":this.colCnt>1?this.view.opt("dayOfMonthFormat"):"dddd"},sliceRangeByRow:function(a){var b,c,d,e,f,g=this.daysPerRow,h=this.view.computeDayRange(a),i=this.getDateDayIndex(h.start),j=this.getDateDayIndex(h.end.clone().subtract(1,"days")),k=[];for(b=0;b=e&&k.push({row:b,firstRowDayIndex:e-c,lastRowDayIndex:f-c,isStart:e===i,isEnd:f===j});return k},sliceRangeByDay:function(a){var b,c,d,e,f,g,h=this.daysPerRow,i=this.view.computeDayRange(a),j=this.getDateDayIndex(i.start),k=this.getDateDayIndex(i.end.clone().subtract(1,"days")),l=[];for(b=0;b=e;e++)f=Math.max(j,e),g=Math.min(k,e),f=Math.ceil(f),g=Math.floor(g),g>=f&&l.push({row:b,firstRowDayIndex:f-c,lastRowDayIndex:g-c,isStart:f===j,isEnd:g===k});return l},renderHeadHtml:function(){var a=this.view;return'
    Export?Block TitleBlock NameType
    Block NameBlock TitleType
    +
    +
    - {{$block.title}}
    + {{$block.name}}
    +
    - {{$block.name}}
    + {{$block.title}}
    +
    {{$block.mimetype}}
    -- cgit v1.2.3 From 4f62d7a78f63e4bae136f52d70d0af906d997b78 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 21 Aug 2016 15:43:03 +0200 Subject: move jotnets to jot and some cleanup (mostly whitespace) --- Zotlabs/Module/Channel.php | 3 +- Zotlabs/Module/Display.php | 3 +- Zotlabs/Module/Network.php | 5 +- Zotlabs/Module/Rpost.php | 3 +- include/acl_selectors.php | 7 -- include/conversation.php | 10 ++- view/css/conversation.css | 14 ++-- view/js/acl.js | 12 ++-- view/tpl/acl_selector.tpl | 13 +--- view/tpl/jot.tpl | 157 +++++++++++++++++++++++++++------------------ 10 files changed, 124 insertions(+), 103 deletions(-) diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php index 59cb9f06c..be65354a9 100644 --- a/Zotlabs/Module/Channel.php +++ b/Zotlabs/Module/Channel.php @@ -140,7 +140,8 @@ class Channel extends \Zotlabs\Web\Controller { 'profile_uid' => \App::$profile['profile_uid'], 'editor_autocomplete' => true, 'bbco_autocomplete' => 'bbcode', - 'bbcode' => true + 'bbcode' => true, + 'jotnets' => true ); $o .= status_editor($a,$x); diff --git a/Zotlabs/Module/Display.php b/Zotlabs/Module/Display.php index 35ed0c894..e9441bbdf 100644 --- a/Zotlabs/Module/Display.php +++ b/Zotlabs/Module/Display.php @@ -73,7 +73,8 @@ class Display extends \Zotlabs\Web\Controller { 'expanded' => true, 'editor_autocomplete' => true, 'bbco_autocomplete' => 'bbcode', - 'bbcode' => true + 'bbcode' => true, + 'jotnets' => true ); $o = '
    '; diff --git a/Zotlabs/Module/Network.php b/Zotlabs/Module/Network.php index 0128adc2c..50bb05075 100644 --- a/Zotlabs/Module/Network.php +++ b/Zotlabs/Module/Network.php @@ -159,7 +159,7 @@ class Network extends \Zotlabs\Web\Controller { 'allow_gid' => $channel['channel_allow_gid'], 'deny_cid' => $channel['channel_deny_cid'], 'deny_gid' => $channel['channel_deny_gid'] - ); + ); $private_editing = ((($group || $cid) && (! intval($_GET['pf']))) ? true : false); @@ -176,7 +176,8 @@ class Network extends \Zotlabs\Web\Controller { 'profile_uid' => local_channel(), 'editor_autocomplete' => true, 'bbco_autocomplete' => 'bbcode', - 'bbcode' => true + 'bbcode' => true, + 'jotnets' => true ); if($deftag) $x['pretext'] = $deftag; diff --git a/Zotlabs/Module/Rpost.php b/Zotlabs/Module/Rpost.php index 525f053de..e7662e49a 100644 --- a/Zotlabs/Module/Rpost.php +++ b/Zotlabs/Module/Rpost.php @@ -126,7 +126,8 @@ class Rpost extends \Zotlabs\Web\Controller { 'source' => ((x($_REQUEST,'source')) ? strip_tags($_REQUEST['source']) : ''), 'return_path' => 'rpost/return', 'bbco_autocomplete' => 'bbcode', - 'bbcode' => true + 'bbcode' => true, + 'jotnets' => true ); $editor = status_editor($a,$x); diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 9bee942e2..362776b44 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -148,11 +148,6 @@ function populate_acl($defaults = null,$show_jotnets = true, $emptyACL_descripti array_walk($deny_cid,'fixacl'); array_walk($deny_gid,'fixacl'); } - - $jotnets = ''; - if($show_jotnets) { - call_hooks('jot_networks', $jotnets); - } $r = q("SELECT id, hash, gname FROM groups WHERE deleted = 0 AND uid = %d ORDER BY gname ASC", intval(local_channel()) @@ -181,8 +176,6 @@ function populate_acl($defaults = null,$show_jotnets = true, $emptyACL_descripti '$allowgid' => json_encode($allow_gid), '$denycid' => json_encode($deny_cid), '$denygid' => json_encode($deny_gid), - '$jnetModalTitle' => t('Other networks and post services'), - '$jotnets' => $jotnets, '$aclModalTitle' => t('Permissions'), '$aclModalDesc' => $dialog_description, '$aclModalDismiss' => t('Close'), diff --git a/include/conversation.php b/include/conversation.php index 7d1473fe2..637234bff 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1200,8 +1200,6 @@ function status_editor($a, $x, $popup = false) { $tpl = get_markup_template('jot.tpl'); - $jotplugins = ''; - $preview = t('Preview'); if(x($x, 'hide_preview')) $preview = ''; @@ -1218,8 +1216,14 @@ function status_editor($a, $x, $popup = false) { if(! $cipher) $cipher = 'aes256'; + $jotplugins = ''; call_hooks('jot_tool', $jotplugins); + $jotnets = ''; + if(x($x,'jotnets')) { + call_hooks('jot_networks', $jotnets); + } + $o .= replace_macros($tpl, array( '$return_path' => ((x($x, 'return_path')) ? $x['return_path'] : App::$query_string), '$action' => z_root() . '/item', @@ -1276,6 +1280,8 @@ function status_editor($a, $x, $popup = false) { '$preview' => $preview, '$source' => ((x($x, 'source')) ? $x['source'] : ''), '$jotplugins' => $jotplugins, + '$jotnets' => $jotnets, + '$jotnets_label' => t('Other networks and post services'), '$defexpire' => $defexpire, '$feature_expire' => $feature_expire, '$expires' => t('Set expiration date'), diff --git a/view/css/conversation.css b/view/css/conversation.css index 5af0c55e7..6c5171545 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -1,6 +1,6 @@ /* jot */ -.jothidden input { +.jothidden input[type="text"] { border: 0px; margin: 0px; height: 39px; @@ -70,6 +70,10 @@ margin-bottom: 30px; } +#profile-jot-plugin-wrapper { + margin-top: 10px; +} + #profile-rotator-wrapper { float: left; } @@ -78,14 +82,6 @@ padding: 15px 0px 0px 15px; } -.profile-jot-net { - float: left; - margin-right: 10px; - margin-top: 5px; - margin-bottom: 5px; - padding: 5px; -} - /* conversation */ .thread-wrapper.toplevel_item { diff --git a/view/js/acl.js b/view/js/acl.js index eb7b7f523..c1685e137 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -100,13 +100,6 @@ ACL.prototype.on_submit = function() { $(that.deny_cid).each(function(i,v) { that.form_id.append(""); }); - - var formfields = $('.profile-jot-net input').serializeArray(); - - $.each(formfields, function(i, field) { - that.form_id.append(""); - }); - }; ACL.prototype.search = function() { @@ -283,6 +276,7 @@ ACL.prototype.update_view = function(value) { /* jot acl */ $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('#dbtn-jotnets').show(); $('.profile-jot-net input').attr('disabled', false); } @@ -295,6 +289,7 @@ ACL.prototype.update_view = function(value) { /* jot acl */ $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } @@ -306,6 +301,7 @@ ACL.prototype.update_view = function(value) { /* jot acl */ $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } @@ -317,10 +313,12 @@ ACL.prototype.update_view = function(value) { /* jot acl */ if(that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value === 'custom') { $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('#dbtn-jotnets').show(); $('.profile-jot-net input').attr('disabled', false); } else { $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } } diff --git a/view/tpl/acl_selector.tpl b/view/tpl/acl_selector.tpl index 70ef4469a..dbdbd6a56 100755 --- a/view/tpl/acl_selector.tpl +++ b/view/tpl/acl_selector.tpl @@ -27,16 +27,6 @@
    {{/if}} - {{if $jotnets}} - -
    - {{$jotnets}} -
    -
    - {{/if}} -
    @@ -47,13 +37,14 @@
    -
    + + -
    +
    + {{if $jotplugins}}
    {{$jotplugins}}
    + {{/if}} + {{if $jotnets}} + + {{/if}}
    @@ -197,70 +222,78 @@ {{if $feature_expire}} {{/if}} {{if $feature_future}} - {{/if}} {{if $embedPhotos}} {{/if}} -- cgit v1.2.3 From 4d34d9c03269ea9b8ca038a87f5351cfe4dbeff1 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 21 Aug 2016 16:26:30 -0700 Subject: issue #496 --- Zotlabs/Module/Acl.php | 3 ++- Zotlabs/Module/Rpost.php | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Module/Acl.php b/Zotlabs/Module/Acl.php index 03dc6c5d3..8c62f4de9 100644 --- a/Zotlabs/Module/Acl.php +++ b/Zotlabs/Module/Acl.php @@ -72,6 +72,7 @@ class Acl extends \Zotlabs\Web\Controller { ); $permitted = ids_to_array($x,'xchan'); + } @@ -249,7 +250,7 @@ class Acl extends \Zotlabs\Web\Controller { ); if($z) { foreach($z as $zz) { - if(in_array($zz['id'],$permitted)) { + if(in_array($zz['hash'],$permitted)) { $r[] = $zz; } } diff --git a/Zotlabs/Module/Rpost.php b/Zotlabs/Module/Rpost.php index 525f053de..28a1f1bb0 100644 --- a/Zotlabs/Module/Rpost.php +++ b/Zotlabs/Module/Rpost.php @@ -126,6 +126,7 @@ class Rpost extends \Zotlabs\Web\Controller { 'source' => ((x($_REQUEST,'source')) ? strip_tags($_REQUEST['source']) : ''), 'return_path' => 'rpost/return', 'bbco_autocomplete' => 'bbcode', + 'editor_autocomplete'=> true, 'bbcode' => true ); -- cgit v1.2.3 From 7045b920efb6f5f9cd4a7eb2b7abaabe14b99634 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 21 Aug 2016 17:38:36 -0700 Subject: make zid() do the right things when confronted with url fragments --- include/channel.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/channel.php b/include/channel.php index 1179697a4..47db7e806 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1381,6 +1381,11 @@ function zid($s,$address = '') { if (! strlen($s) || strpos($s,'zid=')) return $s; + $m = parse_url($s); + $fragment = ((array_key_exists('fragment',$m) && $m['fragment']) ? $m['fragment'] : false); + if($fragment !== false) + $s = str_replace('#' . $fragment,'',$s); + $has_params = ((strpos($s,'?')) ? true : false); $num_slashes = substr_count($s, '/'); if (! $has_params) @@ -1401,6 +1406,11 @@ function zid($s,$address = '') { else $zurl = $s; + // put fragment at the end + + if($fragment) + $zurl .= '#' . $fragment; + $arr = array('url' => $s, 'zid' => urlencode($myaddr), 'result' => $zurl); call_hooks('zid', $arr); -- cgit v1.2.3 From a3e0e67953da3450fcc82c22b87b7b677454ccb8 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 21 Aug 2016 19:40:11 -0700 Subject: remove references to tinymce which were causing console errors --- view/tpl/msg-header.tpl | 53 +++--------------------------------------------- view/tpl/profed_head.tpl | 36 +------------------------------- 2 files changed, 4 insertions(+), 85 deletions(-) diff --git a/view/tpl/msg-header.tpl b/view/tpl/msg-header.tpl index 3407e152c..013e1cfdc 100755 --- a/view/tpl/msg-header.tpl +++ b/view/tpl/msg-header.tpl @@ -1,52 +1,9 @@ - + - - - + -- cgit v1.2.3 From d177cf94dacb518efae1e78bc0ceff99b880484d Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 22 Aug 2016 16:21:07 -0700 Subject: server role management, part 1 --- Zotlabs/Lib/System.php | 2 +- Zotlabs/Module/Setup.php | 2 +- boot.php | 45 +++++++++++++++++++++++++++++++++++---------- 3 files changed, 37 insertions(+), 12 deletions(-) diff --git a/Zotlabs/Lib/System.php b/Zotlabs/Lib/System.php index 4479bf597..6ccfd664c 100644 --- a/Zotlabs/Lib/System.php +++ b/Zotlabs/Lib/System.php @@ -45,7 +45,7 @@ class System { static public function get_server_role() { if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['server_role']) return \App::$config['system']['server_role']; - return 'pro'; + return 'standard'; } static public function get_std_version() { diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index 4553b6866..cb43b5c20 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -101,7 +101,7 @@ class Setup extends \Zotlabs\Web\Controller { $timezone = notags(trim($_POST['timezone'])); $adminmail = notags(trim($_POST['adminmail'])); $siteurl = notags(trim($_POST['siteurl'])); - $advanced = ((intval($_POST['advanced'])) ? 'pro' : 'basic'); + $advanced = ((intval($_POST['advanced'])) ? 'standard' : 'basic'); if($siteurl != z_root()) { $test = z_fetch_url($siteurl."/setup/testrewrite"); diff --git a/boot.php b/boot.php index d50ffbc17..86448af85 100755 --- a/boot.php +++ b/boot.php @@ -149,15 +149,6 @@ define ( 'MAX_IMAGE_LENGTH', -1 ); define ( 'DEFAULT_DB_ENGINE', 'MyISAM' ); -/** - * SSL redirection policies - */ - -define ( 'SSL_POLICY_NONE', 0 ); -define ( 'SSL_POLICY_FULL', 1 ); -define ( 'SSL_POLICY_SELFSIGN', 2 ); // NOT supported in Red - - /** * log levels */ @@ -168,6 +159,15 @@ define ( 'LOGGER_DEBUG', 2 ); define ( 'LOGGER_DATA', 3 ); define ( 'LOGGER_ALL', 4 ); + +/** + * Server roles + */ + +define ( 'SERVER_ROLE_BASIC', 0x0001 ); +define ( 'SERVER_ROLE_STANDARD', 0x0002 ); +define ( 'SERVER_ROLE_PRO', 0x0004 ); + /** * registration policies */ @@ -760,7 +760,7 @@ class miniApp { class App { public static $install = false; // true if we are installing the software - + public static $role = 0; // server role (constant, not the string) public static $account = null; // account record of the logged-in account public static $channel = null; // channel record of the current channel of the logged-in account public static $observer = null; // xchan record of the page observer @@ -1044,6 +1044,31 @@ class App { } } + public static function get_role() { + if(! self::$role) + return self::set_role(); + return self::$role; + } + + public static function set_role() { + $role_str = \Zotlabs\Lib\System::get_server_role(); + switch($role_str) { + case 'basic': + $role = SERVER_ROLE_BASIC; + break; + case 'pro': + $role = SERVER_ROLE_PRO; + break; + case 'standard': + default: + $role = SERVER_ROLE_STANDARD; + break; + } + self::$role = $role; + return $role; + } + + public static function get_scheme() { return self::$scheme; } -- cgit v1.2.3 From d6d21cb5f65484a9d4884e0b223c0e881ecb4b17 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 22 Aug 2016 16:46:44 -0700 Subject: doco updates --- doc/contributor/covenant.html | 106 ++++++++++++++++++++++++++++++++++++++++++ doc/develop.bb | 2 +- doc/developers.bb | 2 +- doc/feature/access_tokens.bb | 47 +++++++++++++++++++ 4 files changed, 155 insertions(+), 2 deletions(-) create mode 100644 doc/contributor/covenant.html create mode 100644 doc/feature/access_tokens.bb diff --git a/doc/contributor/covenant.html b/doc/contributor/covenant.html new file mode 100644 index 000000000..4facac24e --- /dev/null +++ b/doc/contributor/covenant.html @@ -0,0 +1,106 @@ + + + + + + Contributor Covenant 1.4.0 + + + + + + + + + + + + + + + + + +

    Contributor Covenant Code of Conduct

    + +

    Our Pledge

    + +

    In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation.

    + +

    Our Standards

    + +

    Examples of behavior that contributes to creating a positive environment +include:

    + +
      +
    • Using welcoming and inclusive language
    • +
    • Being respectful of differing viewpoints and experiences
    • +
    • Gracefully accepting constructive criticism
    • +
    • Focusing on what is best for the community
    • +
    • Showing empathy towards other community members
    • +
    + +

    Examples of unacceptable behavior by participants include:

    + +
      +
    • The use of sexualized language or imagery and unwelcome sexual attention or advances
    • +
    • Trolling, insulting/derogatory comments, and personal or political attacks
    • +
    • Public or private harassment
    • +
    • Publishing others' private information, such as a physical or electronic address, without explicit permission
    • +
    • Other conduct which could reasonably be considered inappropriate in a professional setting
    • +
    + +

    Our Responsibilities

    + +

    Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior.

    + +

    Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful.

    + +

    Scope

    + +

    This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers.

    + +

    Enforcement

    + +

    Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at project@hubzilla.org. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately.

    + +

    Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership.

    + +

    Attribution

    + +

    This Code of Conduct is adapted from the Contributor Covenant, version 1.4, +available at http://contributor-covenant.org/version/1/4.

    + + + diff --git a/doc/develop.bb b/doc/develop.bb index ef3ea5bd0..7a7350049 100644 --- a/doc/develop.bb +++ b/doc/develop.bb @@ -27,5 +27,5 @@ [zrl=[baseurl]/help/dev_beginner]Step-for-step manual for beginning developers[/zrl] [h3]External Resources[/h3] -[url=https://zothub.com/channel/one]Development Channel[/url] +[url=https://grid.reticu.li/channel/hubzilla]Development Channel[/url] [url=https://federated.social/channel/postgres]Postgres-specific $Projectname Admin Support Channel[/url] diff --git a/doc/developers.bb b/doc/developers.bb index 6f7752577..c7cf66093 100644 --- a/doc/developers.bb +++ b/doc/developers.bb @@ -1,6 +1,6 @@ [b]$Projectname Developer Guide[/b] -We're pretty relaxed when it comes to developers. We don't have a lot of rules. Some of us are over-worked and if you want to help we're happy to let you help. That said, attention to a few guidelines will make the process smoother and make it easier to work together. We have developers from across the globe with different abilities and different cultural backgrounds and different levels of patience. Our primary rule is to respect others. Sometimes this is hard and sometimes we have very different opinions of how things should work, but if everybody makes an effort, we'll get along just fine. +We're pretty relaxed when it comes to developers. We don't have a lot of rules. Some of us are over-worked and if you want to help we're happy to let you help. That said, attention to a few guidelines will make the process smoother and make it easier to work together. All developers are expected to abide by our [zrl=[baseurl]/help/contributor/covenant]code of conduct[/zrl]. We have developers from across the globe with different abilities and different cultural backgrounds and different levels of patience. Our primary rule is to respect others. Sometimes this is hard and sometimes we have very different opinions of how things should work, but if everybody makes an effort, we'll get along just fine. [b]Here is how you can join us.[/b] diff --git a/doc/feature/access_tokens.bb b/doc/feature/access_tokens.bb new file mode 100644 index 000000000..eb5c03717 --- /dev/null +++ b/doc/feature/access_tokens.bb @@ -0,0 +1,47 @@ +Feature: Zot Access Tokens +Status: Draft +Date: 15 July 2016 + + +Purpose: + +In order to facilitate sharing of private resources with non-members or members of federation nodes with limited identification discovery, Hubzilla should provide members with a mechanism to create and manage temporary ("throwaway") logins, aka "Zot Access Tokens". These tokens/credentials may be used to authenticate to a hubzilla site for the sole purpose of accessing privileged or access controlled resources (files, photos, posts, webpages, chatrooms, etc.). + + +Scope: + +Zot Access Tokens do not convey membership in the site or network. In particular, they do not provide an account or channel; which may be necessary to interact with the hub owner or with others in the network or federation of networks. In most cases they can only be used to consume restricted resources and do not have an ability to create those resources, however this ability may be provided by custom configurations or in future releases or addons. + +For instance the ability for a temporary login to access a chatroom may provide suitable permission to create chat messages inside that chatroom. + + +Implementation: + +Zot Access Tokens are managed through a "tab" of the settings page. Access to this tab may be controlled by site configuration. On this page, channels may create, edit, list, and remove any access tokens under their control. + +The form to create/edit accepts three parameters, a human readable name, a password or access token, and an optional expiration. Once expired, the access token is no longer valid, may no longer be used, and will be automatically purged from the list of temporary accounts. The password field in the create/edit forms displays the text of the access token and not an obscured password. By default we will create a token using the autoname() function, which generally produces a random character sequence which is "pronounceable", hence easy to convey or remember. This can be changed to any other character sequence which is acceptable to the site password complexity policy. (In most Hubzilla installations this imposes a minimum of three characters, but may be extended by plugin or site policy). + + +Usage: + +We do not specify mechanisms for sharing these tokens with others. Any communication method may be used. Any tokens you have created are added to the Access Control List selector and may be used anywhere that Access Control Lists are provided. + + Example: A visitor arrives at your site. She has an access token you have provided, and attempts to visit one of your photo albums (which is restricted to be viewed only by yourself and one temporary identity). Permission is denied. + +The visitor now selects "Login" from the menu navigation bar. This presents a login page. She enters the name and password you have provided her, and she can now view the restricted photo album. + + +Alternatively, you may share a link to a protected file by adding a parameter "&zat=abc123" to the URL, where the string "abc123" is the access token or password for the temporary login. No further negotiation is required, and the file is presented. + +Zot Acess Tokens are represented internally as an authenticated "observer". Querying the observer in code should return a pseudo or system generated xchan with an unknown protocol and a default profile photo. It will match (successfully) any access control rule which allows authenticated observers. + +Security Considerations: + +The URL form of authentication is inherently less secure than using a login, but may be preferable for some uses of this feature. It probably should not be transmitted over non-SSL links. + + +Future development: + +It might be desirable for future implementations to provide an options for single-use, where the access token is removed promptly following first use. + + \ No newline at end of file -- cgit v1.2.3 From e967bc9c455c27f08a2add12d566e81036819e4e Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 22 Aug 2016 17:04:13 -0700 Subject: public forum fallback checking (when custom/expert permissions are applied) was looking at owner rather than observer perms --- include/zot.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/include/zot.php b/include/zot.php index 01b29f74b..c3c924113 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3708,6 +3708,8 @@ function zotinfo($arr) { } } + $ztarget_hash = (($ztarget && $zsig) ? make_xchan_hash($ztarget,$zsig) : '' ); + $r = null; if(strlen($zhash)) { @@ -3783,11 +3785,11 @@ function zotinfo($arr) { if($role === 'forum' || $role === 'repository') { $public_forum = true; } - else { + elseif($ztarget_hash) { // check if it has characteristics of a public forum based on custom permissions. $t = q("select * from abconfig where abconfig.cat = 'my_perms' and abconfig.chan = %d and abconfig.xchan = '%s' and abconfig.k in ('tag_deliver', 'send_stream') ", intval($e['channel_id']), - dbesc($e['channel_hash']) + dbesc($ztarget_hash) ); $ch = 0; @@ -3889,9 +3891,6 @@ function zotinfo($arr) { $ret['follow_url'] = z_root() . '/follow?f=&url=%s'; - $ztarget_hash = (($ztarget && $zsig) - ? make_xchan_hash($ztarget,$zsig) - : '' ); $permissions = get_all_perms($e['channel_id'],$ztarget_hash,false); -- cgit v1.2.3 From 38ca3bac405b339367b513037428f796c433819a Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 22 Aug 2016 17:41:41 -0700 Subject: optional server role compatibility checks for plugins --- Zotlabs/Module/Admin.php | 1 + boot.php | 4 ++-- include/plugin.php | 12 ++++++++++++ view/tpl/admin_plugins_details.tpl | 3 +++ 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php index 085d13fd7..eede5a045 100644 --- a/Zotlabs/Module/Admin.php +++ b/Zotlabs/Module/Admin.php @@ -1341,6 +1341,7 @@ class Admin extends \Zotlabs\Web\Controller { '$str_minversion' => t('Minimum project version: '), '$str_maxversion' => t('Maximum project version: '), '$str_minphpversion' => t('Minimum PHP version: '), + '$str_serverroles' => t('Compatible Server Roles: '), '$str_requires' => t('Requires: '), '$disabled' => t('Disabled - version incompatibility'), diff --git a/boot.php b/boot.php index 86448af85..dc1d08aff 100755 --- a/boot.php +++ b/boot.php @@ -612,11 +612,11 @@ function sys_boot() { if(UNO) App::$config['system']['server_role'] = 'basic'; else - App::$config['system']['server_role'] = 'pro'; + App::$config['system']['server_role'] = 'standard'; } if(! (array_key_exists('server_role',App::$config['system']) && App::$config['system']['server_role'])) - App::$config['system']['server_role'] = 'pro'; + App::$config['system']['server_role'] = 'standard'; App::$timezone = ((App::$config['system']['timezone']) ? App::$config['system']['timezone'] : 'UTC'); date_default_timezone_set(App::$timezone); diff --git a/include/plugin.php b/include/plugin.php index cb206d944..663d17959 100755 --- a/include/plugin.php +++ b/include/plugin.php @@ -404,6 +404,18 @@ function check_plugin_versions($info) { return false; } } + if(array_key_exists('serverroles',$info)) { + $role = \Zotlabs\Lib\System::get_server_role(); + if(! ( + stristr($info['serverroles'],'*') + || stristr($info['serverroles'],'any') + || stristr($info['serverroles'],$role))) { + logger('serverrole limit: ' . $info['name'],LOGGER_NORMAL,LOG_WARNING); + return false; + + } + } + if(array_key_exists('requires',$info)) { $arr = explode(',',$info['requires']); diff --git a/view/tpl/admin_plugins_details.tpl b/view/tpl/admin_plugins_details.tpl index b8cc72a04..309fc9569 100755 --- a/view/tpl/admin_plugins_details.tpl +++ b/view/tpl/admin_plugins_details.tpl @@ -24,6 +24,9 @@ {{if $info.minphpversion}}

    {{$str_minphpversion}}{{$info.minphpversion}}

    {{/if}} + {{if $info.serverroles}} +

    {{$str_serverroles}}{{$info.serverroles}}

    + {{/if}} {{if $info.requires}}

    {{$str_requires}}{{$info.requires}}

    {{/if}} -- cgit v1.2.3 From 1e6a491400eaa01aeb2991d4b38e0255499d8b67 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 22 Aug 2016 19:45:21 -0700 Subject: change default server role --- install/htconfig.sample.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/htconfig.sample.php b/install/htconfig.sample.php index e5c743ac1..f37b3dc79 100755 --- a/install/htconfig.sample.php +++ b/install/htconfig.sample.php @@ -47,9 +47,9 @@ App::$config['system']['location_hash'] = 'if the auto install failed, put a uni // Choices are 'basic', 'standard', and 'pro'. // basic sets up the sevrer for basic social networking and removes "complicated" features // standard provides most desired features except e-commerce -// pro gives you access to everything +// pro gives you access to everything, but removes cross-platform federation/emulation -App::$config['system']['server_role'] = 'pro'; +App::$config['system']['server_role'] = 'standard'; // These lines set additional security headers to be sent with all responses -- cgit v1.2.3 From 305e0538d293ff4ad72f30b11998ae3b06efa4ea Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Tue, 23 Aug 2016 06:55:26 -0400 Subject: Website export to cloud files works. Created new recursive copy function in attach.php. --- Zotlabs/Module/Webpages.php | 55 ++++++++++++++++++++++++++++++------ include/attach.php | 47 ++++++++++++++++++++++++++++++ include/text.php | 4 +++ view/tpl/website_portation_tools.tpl | 16 ++++++++++- 4 files changed, 113 insertions(+), 9 deletions(-) diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php index 0fec06c38..028cc5114 100644 --- a/Zotlabs/Module/Webpages.php +++ b/Zotlabs/Module/Webpages.php @@ -424,7 +424,18 @@ class Webpages extends \Zotlabs\Web\Controller { } break; + + case 'exportcloud': + logger('exportcloud', LOGGER_DEBUG); + if(isset($_POST['exportcloudpath']) && $_POST['exportcloudpath'] !== '') { + $_SESSION['action'] = 'export_select_list'; + $_SESSION['export'] = 'cloud'; + $_SESSION['exportcloudpath'] = filter_var($_POST['exportcloudpath'], FILTER_SANITIZE_ENCODED); + } + break; + + case 'cloud': case 'zipfile': $channel = \App::get_channel(); @@ -644,18 +655,46 @@ class Webpages extends \Zotlabs\Web\Controller { } } } - // Generate the zip file - \Zotlabs\Lib\ExtendedZip::zipTree($tmp_folderpath, $zip_filepath, \ZipArchive::CREATE); - // Output the file for download - header('Content-disposition: attachment; filename="' . $zip_filename . '"'); - header("Content-Type: application/zip"); - readfile($zip_filepath); - rrmdir($zip_folderpath); // delete temporary files - rrmdir($tmp_folderpath); // delete temporary files + if($action === 'zipfile') { + // Generate the zip file + \Zotlabs\Lib\ExtendedZip::zipTree($tmp_folderpath, $zip_filepath, \ZipArchive::CREATE); + // Output the file for download + header('Content-disposition: attachment; filename="' . $zip_filename . '"'); + header("Content-Type: application/zip"); + $success = readfile($zip_filepath); + } elseif ($action === 'cloud') { // Only zipfile or cloud should be possible values for $action here + if(isset($_SESSION['exportcloudpath'])) { + require_once('include/attach.php'); + $cloudpath = urldecode($_SESSION['exportcloudpath']); + $channel = \App::get_channel(); + $dirpath = get_dirpath_by_cloudpath($channel, $cloudpath); + if(!$dirpath) { + $x = attach_mkdirp($channel, $channel['channel_hash'], array('pathname' => $cloudpath)); + $folder_hash = (($x['success']) ? $x['data']['hash'] : ''); + + if (!$x['success']) { + logger('Failed to create cloud file folder', LOGGER_NORMAL); + } + $dirpath = get_dirpath_by_cloudpath($channel, $cloudpath); + if (!is_dir($dirpath)) { + logger('Failed to create cloud file folder', LOGGER_NORMAL); + } + } + + $success = copy_folder_to_cloudfiles($channel, $channel['channel_hash'], $tmp_folderpath, $cloudpath); + } + } + if(!$success) { + logger('Error exporting webpage elements', LOGGER_NORMAL); + } + + rrmdir($zip_folderpath); rrmdir($tmp_folderpath); // delete temporary files + break; default : break; } + } } diff --git a/include/attach.php b/include/attach.php index 172840b96..6b17cdca1 100644 --- a/include/attach.php +++ b/include/attach.php @@ -1994,3 +1994,50 @@ function get_filename_by_cloudname($cloudname, $channel, $storepath) { } return null; } + + +// recursively copy a directory into cloud files +function copy_folder_to_cloudfiles($channel, $observer_hash, $srcpath, $cloudpath) +{ + if (!is_dir($srcpath) || !is_readable($srcpath)) { + logger('Error reading source path: ' . $srcpath, LOGGER_NORMAL); + return false; + } + $nodes = array_diff(scandir($srcpath), array('.', '..')); + foreach ($nodes as $node) { + $clouddir = $cloudpath . '/' . $node; // Sub-folder in cloud files destination + $nodepath = $srcpath . '/' . $node; // Sub-folder in source path + if(is_dir($nodepath)) { + $x = attach_mkdirp($channel, $observer_hash, array('pathname' => $clouddir)); + if(!$x['success']) { + logger('Error creating cloud path: ' . $clouddir, LOGGER_NORMAL); + return false; + } + // Recursively call this function where the source and destination are the subfolders + $success = copy_folder_to_cloudfiles($channel, $observer_hash, $nodepath, $clouddir); + if(!$success) { + logger('Error copying contents of folder: ' . $nodepath, LOGGER_NORMAL); + return false; + } + } elseif (is_file($nodepath) && is_readable($nodepath)) { + $x = attach_store($channel, $observer_hash, 'import', + array( + 'directory' => $cloudpath, + 'src' => $nodepath, + 'filename' => $node, + 'filesize' => @filesize($nodepath), + 'preserve_original' => true) + ); + if(!$x['success']) { + logger('Error copying file: ' . $nodepath , LOGGER_NORMAL); + logger('Return value: ' . json_encode($x), LOGGER_NORMAL); + return false; + } + } else { + logger('Error scanning source path', LOGGER_NORMAL); + return false; + } + } + + return true; +} \ No newline at end of file diff --git a/include/text.php b/include/text.php index 1729048e9..99ac59ca7 100644 --- a/include/text.php +++ b/include/text.php @@ -2295,6 +2295,10 @@ function website_portation_tools() { '$file_download_text' => t('Export to a zip file'), '$filename_desc' => t('website.zip'), '$filename_hint' => t('Enter a name for the zip file.'), + '$cloud_export_text' => t('Export to cloud files'), + '$cloud_export_desc' => t('/path/to/export/folder'), + '$cloud_export_hint' => t('Enter a path to a cloud files destination.'), + '$cloud_export_select' => t('Specify folder'), )); } diff --git a/view/tpl/website_portation_tools.tpl b/view/tpl/website_portation_tools.tpl index 2f68a7393..10468b64e 100644 --- a/view/tpl/website_portation_tools.tpl +++ b/view/tpl/website_portation_tools.tpl @@ -35,7 +35,7 @@ -- cgit v1.2.3 From d3369384d15e13dba937fa89dabc273e3ca672e8 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 23 Aug 2016 18:18:05 -0700 Subject: include port in pdo url when host is 'localhost' --- include/dba/dba_driver.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php index f6091f6e1..7225a9be2 100755 --- a/include/dba/dba_driver.php +++ b/include/dba/dba_driver.php @@ -62,6 +62,8 @@ class DBA { if(is_object(self::$dba) && self::$dba->connected) { + if($server === 'localhost') + $port = $set_port; $dns = ((self::$dbtype == DBTYPE_POSTGRES) ? 'postgres' : 'mysql') . ':host=' . $server . (is_null($port) ? '' : ';port=' . $port) . ';dbname=' . $db; -- cgit v1.2.3 From a5035dee74da87a529b2de938ce10bb8bb8d8346 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 23 Aug 2016 19:13:46 -0700 Subject: several cover photo widget enhancements: - allow a click anywhere on the page to cause the photo to autoscroll - provide a logic flag to autoscroll only once - allow manual scroll back to see the cover photo afterward (tricky to handle the nav menu here) - on scroll back, the nav remains fixed at the top and the top pixels of the cover photo are covered (this was an acceptable tradeoff to gain the ability to see the photo again without causing unpredictable behaviour of the nav) - some positioning details in small screen width mode caused jot to be off screen due to insufficient top padding; a manual padding was also added as something still wasn't right even after adding the nav height - very minor nit: if screen size is reduced below 755 and then upsized again, the cover photo will not be redisplayed --- view/tpl/cover_photo_widget.tpl | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 4e210a300..4dfaf415b 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -1,9 +1,12 @@ -
    +
    {{$photo_html}}
    -- cgit v1.2.3 From 206054678ba70fae851c40bf79871ad9a042ca2f Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 23 Aug 2016 20:10:56 -0700 Subject: cover photo: adjustments to display the entire photo on manual scrollback (padding added for nav height) --- view/tpl/cover_photo_widget.tpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 4dfaf415b..91f304ccb 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -29,6 +29,7 @@ $('main').css('opacity', 1); $('aside').css('padding-top', aside_padding_top + 'px'); $('section').css('padding-top', section_padding_top + 'px'); + $('#cover-photo').css('padding-top', $('nav').outerHeight()); $(window).scrollTop($(window).scrollTop() - $('#cover-photo').height()) $('.navbar-fixed-top').css({ 'position' : 'fixed', 'top' : 0}); $('main').css('margin-top', ''); @@ -54,7 +55,7 @@ if(coverSlid) return; $('html, body').animate({scrollTop: Math.ceil($('#cover-photo').height()) + 'px' }); - $('#cover-photo').css({ 'position' : 'relative' , 'top' : 0 }); + $('#cover-photo').css({ 'position' : 'relative' , 'top' : $('nav').outerHeight() }); $('.navbar-fixed-top').css({ 'position' : 'fixed', 'top' : 0}); $('aside').css('padding-top', aside_padding_top + 'px'); $('section').css('padding-top', section_padding_top + 'px'); -- cgit v1.2.3 From 238621ee926e43625a8b15fb9faf996fb45149b3 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 23 Aug 2016 23:00:24 -0700 Subject: allow changing the server role - as well as configuring any of the three options during installation --- Zotlabs/Module/Admin.php | 13 +++++++++++++ Zotlabs/Module/Setup.php | 19 +++++++++++++++---- view/tpl/admin_site.tpl | 1 + view/tpl/install_settings.tpl | 2 +- 4 files changed, 30 insertions(+), 5 deletions(-) diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php index eede5a045..15edbd407 100644 --- a/Zotlabs/Module/Admin.php +++ b/Zotlabs/Module/Admin.php @@ -268,6 +268,8 @@ class Admin extends \Zotlabs\Web\Controller { check_form_security_token_redirectOnErr('/admin/site', 'admin_site'); $sitename = ((x($_POST,'sitename')) ? notags(trim($_POST['sitename'])) : ''); + $server_role = ((x($_POST,'server_role')) ? notags(trim($_POST['server_role'])) : 'standard'); + $banner = ((x($_POST,'banner')) ? trim($_POST['banner']) : false); $admininfo = ((x($_POST,'admininfo')) ? trim($_POST['admininfo']) : false); $language = ((x($_POST,'language')) ? notags(trim($_POST['language'])) : ''); @@ -308,6 +310,8 @@ class Admin extends \Zotlabs\Web\Controller { $feed_contacts = ((x($_POST,'feed_contacts')) ? intval($_POST['feed_contacts']) : 0); $verify_email = ((x($_POST,'verify_email')) ? 1 : 0); + + set_config('system', 'server_role', $server_role); set_config('system', 'feed_contacts', $feed_contacts); set_config('system', 'delivery_interval', $delivery_interval); set_config('system', 'delivery_batch_count', $delivery_batch_count); @@ -481,6 +485,12 @@ class Admin extends \Zotlabs\Web\Controller { // now invert the logic for the setting. $discover_tab = (1 - $discover_tab); + $server_roles = [ + 'basic' => t('Basic/Minimal Social Networking'), + 'standard' => t('Standard Configuration (default)'), + 'pro' => t('Professional') + ]; + $homelogin = get_config('system','login_on_homepage'); $enable_context_help = get_config('system','enable_context_help'); @@ -498,6 +508,9 @@ class Admin extends \Zotlabs\Web\Controller { '$baseurl' => z_root(), // name, label, value, help string, extra data... '$sitename' => array('sitename', t("Site name"), htmlspecialchars(get_config('system','sitename'), ENT_QUOTES, 'UTF-8'),''), + + '$server_role' => array('server_role', t("Server Configuration/Role"), get_config('system','server_role'),'',$server_roles), + '$banner' => array('banner', t("Banner/Logo"), $banner, ""), '$admininfo' => array('admininfo', t("Administrator Information"), $admininfo, t("Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here")), '$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices), diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index cb43b5c20..f8e210410 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -73,7 +73,9 @@ class Setup extends \Zotlabs\Web\Controller { $phpath = trim($_POST['phpath']); $adminmail = trim($_POST['adminmail']); $siteurl = trim($_POST['siteurl']); - $advanced = ((intval($_POST['advanced'])) ? 1 : 0); + $server_role = trim($_POST['server_role']); + if(! $server_role) + $server_role = 'standard'; // $siteurl should not have a trailing slash @@ -101,7 +103,9 @@ class Setup extends \Zotlabs\Web\Controller { $timezone = notags(trim($_POST['timezone'])); $adminmail = notags(trim($_POST['adminmail'])); $siteurl = notags(trim($_POST['siteurl'])); - $advanced = ((intval($_POST['advanced'])) ? 'standard' : 'basic'); + $server_role = notags(trim($_POST['server_role'])); + if(! $server_role) + $server_role = 'standard'; if($siteurl != z_root()) { $test = z_fetch_url($siteurl."/setup/testrewrite"); @@ -130,7 +134,7 @@ class Setup extends \Zotlabs\Web\Controller { '$dbpass' => $dbpass, '$dbdata' => $dbdata, '$dbtype' => $dbtype, - '$server_role' => $advanced, + '$server_role' => $server_role, '$timezone' => $timezone, '$siteurl' => $siteurl, '$site_id' => random_string(), @@ -327,6 +331,12 @@ class Setup extends \Zotlabs\Web\Controller { $siteurl = notags(trim($_POST['siteurl'])); $timezone = ((x($_POST,'timezone')) ? ($_POST['timezone']) : 'America/Los_Angeles'); + $server_roles = [ + 'basic' => t('Basic/Minimal Social Networking'), + 'standard' => t('Standard Configuration (default)'), + 'pro' => t('Professional') + ]; + $tpl = get_markup_template('install_settings.tpl'); $o .= replace_macros($tpl, array( '$title' => $install_title, @@ -344,7 +354,8 @@ class Setup extends \Zotlabs\Web\Controller { '$adminmail' => array('adminmail', t('Site administrator email address'), $adminmail, t('Your account email address must match this in order to use the web admin panel.')), '$siteurl' => array('siteurl', t('Website URL'), z_root(), t('Please use SSL (https) URL if available.')), - '$advanced' => array('advanced', t('Enable $Projectname advanced features?'), 1, t('Some advanced features, while useful - may be best suited for technically proficient audiences')), + + '$server_role' => array('server_role', t("Server Configuration/Role"), 'standard','',$server_roles), '$timezone' => array('timezone', t('Please select a default timezone for your website'), $timezone, '', get_timezones()), diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index 6b8729ee6..d810e69f7 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -41,6 +41,7 @@ {{include file="field_input.tpl" field=$sitename}} + {{include file="field_select.tpl" field=$server_role}} {{include file="field_textarea.tpl" field=$banner}} {{include file="field_textarea.tpl" field=$admininfo}} {{include file="field_select.tpl" field=$language}} diff --git a/view/tpl/install_settings.tpl b/view/tpl/install_settings.tpl index 5ecd3243b..f7a0108a8 100755 --- a/view/tpl/install_settings.tpl +++ b/view/tpl/install_settings.tpl @@ -19,7 +19,7 @@ {{include file="field_input.tpl" field=$adminmail}} {{include file="field_input.tpl" field=$siteurl}} -{{include file="field_checkbox.tpl" field=$advanced}} +{{include file="field_select.tpl" field=$server_role}} {{include file="field_select_grouped.tpl" field=$timezone}} -- cgit v1.2.3 From 4c840d70a494dae62a856ed91f9039eb16bc51ee Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 24 Aug 2016 12:56:45 -0700 Subject: revert cover photo changes --- view/tpl/cover_photo_widget.tpl | 28 ++++++++-------------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 91f304ccb..4e210a300 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -1,12 +1,9 @@ -
    +
    {{$photo_html}}
    -- cgit v1.2.3 From dd654b976691d5091070631c5e64979cd2772a6f Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 24 Aug 2016 13:11:01 -0700 Subject: provide a mechanism for global template values (macro replacements that are available to all templates). There's a strong likelihood this list will increase but we may wish to actively prevent it from mushrooming out of control. --- Zotlabs/Render/SmartyTemplate.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Zotlabs/Render/SmartyTemplate.php b/Zotlabs/Render/SmartyTemplate.php index 532d6e42f..b7e68c1bc 100755 --- a/Zotlabs/Render/SmartyTemplate.php +++ b/Zotlabs/Render/SmartyTemplate.php @@ -27,6 +27,12 @@ class SmartyTemplate implements TemplateEngine { public function replace_macros($s, $r) { $template = ''; + + // these are available for use in all templates + + $r['$z_baseurl'] = z_root(); + $r['$z_server_role'] = \Zotlabs\Lib\System::get_server_role(); + if(gettype($s) === 'string') { $template = $s; $s = new SmartyInterface(); -- cgit v1.2.3 From aa0384bcece9ebf0a014c5387a91bb3f0d564301 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 24 Aug 2016 22:39:30 +0200 Subject: Revert "revert cover photo changes" This reverts commit 4c840d70a494dae62a856ed91f9039eb16bc51ee. --- view/tpl/cover_photo_widget.tpl | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 4e210a300..91f304ccb 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -1,9 +1,12 @@ -
    +
    {{$photo_html}}
    -- cgit v1.2.3 From 798b80e486547e4bd1e99d8513f00f4288b14635 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 24 Aug 2016 22:40:15 +0200 Subject: do not remove cover photo after scrolling it up. mimik an scroll edge if scrolling up again before scrolling into the cover photo again. --- view/tpl/cover_photo_widget.tpl | 63 +++++++++++++++++++++++++---------------- 1 file changed, 39 insertions(+), 24 deletions(-) diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 91f304ccb..884dd0615 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -5,36 +5,54 @@ $(document).ready(function() { - $('body').on('click',slideUpCover); - aside_padding_top = parseInt($('aside').css('padding-top')); section_padding_top = parseInt($('section').css('padding-top')); + $(document).on('click', slideUpCover); + if($('#cover-photo').length && $(window).width() > 755) { - $('.navbar-fixed-top').css('position', 'relative'); - $('main').css('margin-top', - $('nav').outerHeight(true) + 'px'); - $('aside').css('padding-top', aside_padding_top - $('nav').outerHeight() + 'px'); - $('section').css('padding-top', section_padding_top - $('nav').outerHeight() + 'px'); - $('main').css('opacity', 0.5); - $('header').hide(); + if($(window).scrollTop() <= $('#cover-photo').height()) { + $('main').css('margin-top', - $('nav').outerHeight(true) + 'px'); + $('aside').css('padding-top', aside_padding_top - $('nav').outerHeight() + 'px'); + $('section').css('padding-top', section_padding_top - $('nav').outerHeight() + 'px'); + $('.navbar-fixed-top').css('position', 'relative'); + $('main').css('opacity', 0); + $('header').hide(); + } } else { $('#cover-photo').remove(); + coverSlid = true; } }); $(window).scroll(function () { - if((! coverSlid) && $('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() >= $('#cover-photo').height()) { + if($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() >= $('#cover-photo').height()) { $('header').fadeIn(); $('main').css('opacity', 1); $('aside').css('padding-top', aside_padding_top + 'px'); $('section').css('padding-top', section_padding_top + 'px'); - $('#cover-photo').css('padding-top', $('nav').outerHeight()); - $(window).scrollTop($(window).scrollTop() - $('#cover-photo').height()) - $('.navbar-fixed-top').css({ 'position' : 'fixed', 'top' : 0}); + $('.navbar-fixed-top').css('position', ''); $('main').css('margin-top', ''); coverSlid = true; } + else if ($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() <= $('#cover-photo').height()){ + if(coverSlid) { + $(window).scrollTop(Math.ceil($('#cover-photo').height())); + setTimeout(function(){ coverSlid = false; }, 1000); + } + else { + if($(window).scrollTop() <= $('#cover-photo').height()) { + $('main').css('margin-top', - $('nav').outerHeight(true) + 'px'); + $('aside').css('padding-top', aside_padding_top - $('nav').outerHeight() + 'px'); + $('section').css('padding-top', section_padding_top - $('nav').outerHeight() + 'px'); + + $('.navbar-fixed-top').css('position', 'relative'); + $('main').css('opacity', 0); + $('header').hide(); + } + } + } if($('#cover-photo').length) { $('main').css('opacity', ($(window).scrollTop()/$('#cover-photo').height()).toFixed(1)); } @@ -42,29 +60,26 @@ $(window).resize(function () { if($('#cover-photo').length && $(window).width() < 755) { - $('main').css('opacity', 1); - $('aside').css('padding-top', aside_padding_top + $('nav').outerHeight() + 20 + 'px'); - $('section').css('padding-top', section_padding_top + $('nav').outerHeight() + 20 + 'px'); - $('.navbar-fixed-top').css({ 'position' : 'fixed', 'top' : 0 }); $('#cover-photo').remove(); + $('main').css('opacity', 1); + $('aside').css('padding-top', aside_padding_top + 'px'); + $('section').css('padding-top', section_padding_top + 'px'); + $('.navbar-fixed-top').css('position', ''); + coverSlid = true; } }); function slideUpCover() { - if(coverSlid) + if(coverSlid) { return; + } $('html, body').animate({scrollTop: Math.ceil($('#cover-photo').height()) + 'px' }); - $('#cover-photo').css({ 'position' : 'relative' , 'top' : $('nav').outerHeight() }); - $('.navbar-fixed-top').css({ 'position' : 'fixed', 'top' : 0}); - $('aside').css('padding-top', aside_padding_top + 'px'); - $('section').css('padding-top', section_padding_top + 'px'); - $('main').css('margin-top', ''); - coverSlid = true; + return false; } -
    +
    {{$photo_html}}
    -- cgit v1.2.3 From a78025255235b5aa34bc90e990e9accf91db320d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 24 Aug 2016 22:47:33 +0200 Subject: remove the onclick action --- view/tpl/cover_photo_widget.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 884dd0615..59626cf32 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -79,7 +79,7 @@ } -
    +
    {{$photo_html}}
    -- cgit v1.2.3 From 5c32f42fe986d2312cfbee9f8c52375af6a602b8 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 24 Aug 2016 22:58:02 +0200 Subject: do not return false since it could prevent clicking also when not appropriate. --- view/tpl/cover_photo_widget.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 59626cf32..93e3f057e 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -75,7 +75,7 @@ return; } $('html, body').animate({scrollTop: Math.ceil($('#cover-photo').height()) + 'px' }); - return false; + return; } -- cgit v1.2.3 From f1fbcd7c02bb06e262b60fd40594c04e1c871b66 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 24 Aug 2016 17:42:59 -0700 Subject: some more complex test scenarios for comanche conditionals: equals x, not equals x, in_array, and array_key_exists --- Zotlabs/Render/Comanche.php | 44 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 40 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Render/Comanche.php b/Zotlabs/Render/Comanche.php index 820897ee9..ff5aa7140 100644 --- a/Zotlabs/Render/Comanche.php +++ b/Zotlabs/Render/Comanche.php @@ -103,14 +103,50 @@ class Comanche { function test_condition($s) { - // This is extensible. The first version of variable testing supports tests of the form + // This is extensible. The first version of variable testing supports tests of the forms: + // [if $config.system.foo == baz] which will check if get_config('system','foo') is the string 'baz'; + // [if $config.system.foo != baz] which will check if get_config('system','foo') is not the string 'baz'; + // You may check numeric entries, but these checks are evaluated as strings. + // [if $config.system.foo {} baz] which will check if 'baz' is an array element in get_config('system','foo') + // [if $config.system.foo {*} baz] which will check if 'baz' is an array key in get_config('system','foo') // [if $config.system.foo] which will check for a return of a true condition for get_config('system','foo'); // The values 0, '', an empty array, and an unset value will all evaluate to false. - if(preg_match("/[\$]config[\.](.*?)/",$s,$matches)) { - $x = explode('.',$s); - if(get_config($x[1],$x[2])) + if(preg_match('/[\$]config[\.](.*?)\s\=\=\s(.*?)$/',$s,$matches)) { + $x = explode('.',$matches[1]); + if(get_config(trim($x[0]),trim($x[1])) == trim($matches[2])) return true; + return false; + } + if(preg_match('/[\$]config[\.](.*?)\s\!\=\s(.*?)$/',$s,$matches)) { + $x = explode('.',$matches[1]); + if(get_config(trim($x[0]),trim($x[1])) != trim($matches[2])) + return true; + return false; + } + + if(preg_match('/[\$]config[\.](.*?)\s\{\}\s(.*?)$/',$s,$matches)) { + $x = explode('.',$matches[1]); + $y = get_config(trim($x[0]),trim($x[1])); + if(is_array($y) && in_array(trim($matches[2]),$y)) + return true; + return false; + } + + if(preg_match('/[\$]config[\.](.*?)\s\{\*\}\s(.*?)$/',$s,$matches)) { + $x = explode('.',$matches[1]); + $y = get_config(trim($x[0]),trim($x[1])); + if(is_array($y) && array_key_exists(trim($matches[2]),$y)) + return true; + return false; + } + + + if(preg_match('/[\$]config[\.](.*?)/',$s,$matches)) { + $x = explode('.',$matches[1]); + if(get_config(trim($x[0]),trim($x[1]))) + return true; + return false; } return false; -- cgit v1.2.3 From a81da0ec345fbc6c7334b6b0d5ae11a19a30918b Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 24 Aug 2016 20:06:44 -0700 Subject: off by one pixel --- view/tpl/cover_photo_widget.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 93e3f057e..2b47270c9 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -11,7 +11,7 @@ $(document).on('click', slideUpCover); if($('#cover-photo').length && $(window).width() > 755) { - if($(window).scrollTop() <= $('#cover-photo').height()) { + if($(window).scrollTop() < $('#cover-photo').height()) { $('main').css('margin-top', - $('nav').outerHeight(true) + 'px'); $('aside').css('padding-top', aside_padding_top - $('nav').outerHeight() + 'px'); $('section').css('padding-top', section_padding_top - $('nav').outerHeight() + 'px'); @@ -36,13 +36,13 @@ $('main').css('margin-top', ''); coverSlid = true; } - else if ($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() <= $('#cover-photo').height()){ + else if ($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() < $('#cover-photo').height()){ if(coverSlid) { $(window).scrollTop(Math.ceil($('#cover-photo').height())); setTimeout(function(){ coverSlid = false; }, 1000); } else { - if($(window).scrollTop() <= $('#cover-photo').height()) { + if($(window).scrollTop() < $('#cover-photo').height()) { $('main').css('margin-top', - $('nav').outerHeight(true) + 'px'); $('aside').css('padding-top', aside_padding_top - $('nav').outerHeight() + 'px'); $('section').css('padding-top', section_padding_top - $('nav').outerHeight() + 'px'); -- cgit v1.2.3 From 35d12b9e59d6b969b4c08bd5cc18e40c621e74ec Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 24 Aug 2016 21:16:58 -0700 Subject: provide context help for the connedit page --- doc/context/en/connedit/help.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 doc/context/en/connedit/help.html diff --git a/doc/context/en/connedit/help.html b/doc/context/en/connedit/help.html new file mode 100644 index 000000000..9eb62ecc7 --- /dev/null +++ b/doc/context/en/connedit/help.html @@ -0,0 +1,12 @@ +
    +
    General
    +
    This page allows you to change or edit any individual settings for a particular connection or delete a connection completely. You may have arrived at this page after creating or approving a new connection. If so, you are not required to do anything. Your connection has already been established. You may wish to add them to a group or adjust special permissions, and this page is presented so that you may do this while the opportunity is fresh.
    +
    Connection Tools
    +
    The Connection Tools menu access several settings. View Profile, View Recent Activity, Refresh Permissions, set or reset flags (Block, Ignore, Archive, Hide) and Delete the connection.
    +
    Privacy Groups
    +
    Each connection may be assigned to one or more Privacy Groups for grouping collections of friends with access to specific posts, media and other content. You may add them to an existing privacy group here, or create a new privacy group. When you add them to an existing group the action is immediate and you are not required to submit a form.
    +
    Individual Permissions
    +
    Granting of permissions is usually automatic and require no action on your part. However you may wish to adjust specific permsisions for this connection which are different than for others.
    +
    Feature Specific Settings
    +
    A number of individual settings are controlled through additional features which may or may not be activated on your hub or for your channel. Several optional features have settings for each connection, and those may be set on this page through additional form tabs which may be present.
    +
    -- cgit v1.2.3 From 8d94402d25bc1f4c07d2182ea48badabc6642617 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 24 Aug 2016 22:41:54 -0700 Subject: attach_move() function created to relocate files or photos to different directories in the cloud area and photo albums without deleting and recreating (which would create a new resource_id and invalidate any existing links). --- include/attach.php | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ include/photos.php | 2 ++ 2 files changed, 72 insertions(+) diff --git a/include/attach.php b/include/attach.php index 172840b96..8dac57bb6 100644 --- a/include/attach.php +++ b/include/attach.php @@ -1994,3 +1994,73 @@ function get_filename_by_cloudname($cloudname, $channel, $storepath) { } return null; } + +/** + * attach_move() + * This function performs an in place directory-to-directory move of a stored attachment or photo. + * The data is physically moved in the store/nickname storage location and the paths adjusted + * in the attach structure (and if applicable the photo table). The new 'album name' is recorded + * for photos and will show up immediately there. + * This takes a channel_id, attach.hash of the file to move (this is the same as a photo resource_id), and + * the attach.hash of the new parent folder, which must already exist. If $new_folder_hash is blank or empty, + * the file is relocated to the root of the channel's storage area. + * + * @fixme: this operation is currently not synced to clones !! + */ + +function attach_move($channel_id,$resource_id,$new_folder_hash) { + + $c = channelx_by_n($channel_id); + if(! $c) + return false; + + $r = q("select * from attach where hash = '%s' and uid = %d limit 1", + dbesc($resource_id), + intval($channel_id) + ); + if(! $r) + return false; + + $oldstorepath = $r[0]['content']; + + if($new_folder_hash) { + $n = q("select * from attach where hash = '%s' and uid = %d limit 1", + dbesc($new_folder_hash), + intval($channel_id) + ); + if(! $n) + return; + $newdirname = $n[0]['filename']; + $newstorepath = $n[0]['content'] . '/' . $resource_id; + } + else { + $newstorepath = 'store/' . $c['channel_address'] . '/' . $resource_id; + } + + rename($oldstorepath,$newstorepath); + + $t = q("update attach set content = '%s', folder = '%s' where id = %d", + dbesc($newstorepath), + dbesc($new_folder_hash), + intval($r[0]['id']) + ); + + if($r[0]['is_photo']) { + $t = q("update photo set album = '%s' where resource_id = '%s' and uid = %d", + dbesc($newdirname), + dbesc($resource_id), + intval($channel_id) + ); + + $t = q("update photo set content = '%s' where resource_id = '%s' and uid = %d and imgscale = 0", + dbesc($newstorepath), + dbesc($resource_id), + intval($channel_id) + ); + } + + return true; + +} + + diff --git a/include/photos.php b/include/photos.php index d14c12d84..9d15d3692 100644 --- a/include/photos.php +++ b/include/photos.php @@ -588,6 +588,8 @@ function photos_album_rename($channel_id, $oldname, $newname) { ); } + + /** * @brief * -- cgit v1.2.3 From a969f181379a350609b24ba8258fcdd204f07d11 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 25 Aug 2016 17:09:19 -0700 Subject: move premium channel to 'pro' since that's the only configuration where it works reliably. --- include/features.php | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/include/features.php b/include/features.php index 356de35a2..a5baddf52 100644 --- a/include/features.php +++ b/include/features.php @@ -62,14 +62,11 @@ function get_features($filtered = true) { array('ajaxchat', t('Access Controlled Chatrooms'), t('Provide chatrooms and chat services with access control.'),true,get_config('feature_lock','ajaxchat')), array('smart_birthdays', t('Smart Birthdays'), t('Make birthday events timezone aware in case your friends are scattered across the planet.'),true,get_config('feature_lock','smart_birthdays')), array('expert', t('Expert Mode'), t('Enable Expert Mode to provide advanced configuration options'),false,get_config('feature_lock','expert')), - array('premium_channel', t('Premium Channel'), t('Allows you to set restrictions and terms on those that connect with your channel'),false,get_config('feature_lock','premium_channel')), ), // Post composition 'composition' => array( t('Post Composition Features'), -// array('richtext', t('Richtext Editor'), t('Enable richtext editor'),falseget_config('feature_lock','richtext')), -// array('markdown', t('Use Markdown'), t('Allow use of "Markdown" to format posts'),false,get_config('feature_lock','markdown')), array('large_photos', t('Large Photos'), t('Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails'),false,get_config('feature_lock','large_photos')), array('channel_sources', t('Channel Sources'), t('Automatically import channel content from other channels or feeds'),false,get_config('feature_lock','channel_sources')), array('content_encrypt', t('Even More Encryption'), t('Allow optional encryption of content end-to-end with a shared secret key'),false,get_config('feature_lock','content_encrypt')), @@ -106,6 +103,18 @@ function get_features($filtered = true) { ), ); + + + if(\Zotlabs\Lib\System::get_server_role() === 'pro') { + $arr['general'][] = [ + 'premium_channel', + t('Premium Channel'), + t('Allows you to set restrictions and terms on those that connect with your channel'), + false, + get_config('feature_lock','premium_channel') + ]; + } + // removed any locked features and remove the entire category if this makes it empty if($filtered) { -- cgit v1.2.3 From 38ea8bee935181220e89fd22120865ab63af9da6 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 25 Aug 2016 17:43:07 -0700 Subject: ratings are gone. They can be enabled, but there is no UI for doing so at this time; and will likely only be available in a 'pro' configuration once the new implementation details have been hashed out. This appears to require a mechanism for rebuttal before it can again be opened to the public. There are also some synchronisation issues to contend with; as ratings are currently only distributed to active directory servers. There is no reliable mechanism for a new directory server to fetch existing ratings. --- Zotlabs/Module/Connedit.php | 8 ++------ Zotlabs/Module/Directory.php | 2 +- Zotlabs/Module/Pubsites.php | 14 +++++++++++--- Zotlabs/Module/Rate.php | 10 +++------- Zotlabs/Module/Ratings.php | 14 ++++---------- include/channel.php | 4 ++-- include/conversation.php | 7 ++----- include/features.php | 2 +- include/widgets.php | 4 ++-- 9 files changed, 28 insertions(+), 37 deletions(-) diff --git a/Zotlabs/Module/Connedit.php b/Zotlabs/Module/Connedit.php index 217249469..43feac189 100644 --- a/Zotlabs/Module/Connedit.php +++ b/Zotlabs/Module/Connedit.php @@ -663,13 +663,9 @@ class Connedit extends \Zotlabs\Web\Controller { $rating_text = $xl[0]['xlink_rating_text']; } - $poco_rating = get_config('system','poco_rating_enable'); + $rating_enabled = get_config('system','rating_enabled'); - // if unset default to enabled - if($poco_rating === false) - $poco_rating = true; - - if($poco_rating) { + if($rating_enabled) { $rating = replace_macros(get_markup_template('rating_slider.tpl'),array( '$min' => -10, '$val' => $rating_val diff --git a/Zotlabs/Module/Directory.php b/Zotlabs/Module/Directory.php index 560038ffc..84d40a166 100644 --- a/Zotlabs/Module/Directory.php +++ b/Zotlabs/Module/Directory.php @@ -239,7 +239,7 @@ class Directory extends \Zotlabs\Web\Controller { $page_type = ''; - if($rr['total_ratings']) + if($rr['total_ratings'] && get_config('system','rating_enabled')) $total_ratings = sprintf( tt("%d rating", "%d ratings", $rr['total_ratings']), $rr['total_ratings']); else $total_ratings = ''; diff --git a/Zotlabs/Module/Pubsites.php b/Zotlabs/Module/Pubsites.php index 0dda08e6d..35a305130 100644 --- a/Zotlabs/Module/Pubsites.php +++ b/Zotlabs/Module/Pubsites.php @@ -16,7 +16,9 @@ class Pubsites extends \Zotlabs\Web\Controller { $url = $directory['url'] . '/dirsearch'; } $url .= '/sites'; - + + $rating_enabled = get_config('system','rating_enabled'); + $o .= '
    '; $o .= '

    ' . t('Public Hubs') . '

    '; @@ -28,7 +30,10 @@ class Pubsites extends \Zotlabs\Web\Controller { if($ret['success']) { $j = json_decode($ret['body'],true); if($j) { - $o .= ''; + $o .= '
    ' . t('Hub URL') . '' . t('Access Type') . '' . t('Registration Policy') . '' . t('Stats') . '' . t('Software') . '' . t('Ratings') . '
    '; + if($rating_enabled) + $o .= ''; + $o .= ''; if($j['sites']) { foreach($j['sites'] as $jj) { $m = parse_url($jj['url']); @@ -44,7 +49,10 @@ class Pubsites extends \Zotlabs\Web\Controller { $location = '
     '; } $urltext = str_replace(array('https://'), '', $jj['url']); - $o .= '' . $rate_links . ''; + $o .= ''; + if($rating_enabled) + $o .= '' . $rate_links ; + $o .= ''; } } diff --git a/Zotlabs/Module/Rate.php b/Zotlabs/Module/Rate.php index 2f769b36b..c03aaa54f 100644 --- a/Zotlabs/Module/Rate.php +++ b/Zotlabs/Module/Rate.php @@ -119,8 +119,8 @@ class Rate extends \Zotlabs\Web\Controller { // return; // } - $poco_rating = get_config('system','poco_rating_enable'); - if((! $poco_rating) && ($poco_rating !== false)) { + $rating_enabled = get_config('system','rating_enabled'); + if(! $rating_enabled) { notice('Ratings are disabled on this site.'); return; } @@ -141,11 +141,7 @@ class Rate extends \Zotlabs\Web\Controller { $rating_text = ''; } - // if unset default to enabled - if($poco_rating === false) - $poco_rating = true; - - if($poco_rating) { + if($rating_enabled) { $rating = replace_macros(get_markup_template('rating_slider.tpl'),array( '$min' => -10, '$val' => $rating_val diff --git a/Zotlabs/Module/Ratings.php b/Zotlabs/Module/Ratings.php index 969fb5015..055b16ca3 100644 --- a/Zotlabs/Module/Ratings.php +++ b/Zotlabs/Module/Ratings.php @@ -21,12 +21,9 @@ class Ratings extends \Zotlabs\Web\Controller { if($x) $url = $x['url']; - $poco_rating = get_config('system','poco_rating_enable'); - // if unset default to enabled - if($poco_rating === false) - $poco_rating = true; + $rating_enabled = get_config('system','rating_enabled'); - if(! $poco_rating) + if(! $rating_enabled) return; if(argc() > 1) @@ -87,12 +84,9 @@ class Ratings extends \Zotlabs\Web\Controller { return; } - $poco_rating = get_config('system','poco_rating_enable'); - // if unset default to enabled - if($poco_rating === false) - $poco_rating = true; + $rating_enabled = get_config('system','rating_enabled'); - if(! $poco_rating) + if(! $rating_enabled) return; $site_target = ((array_key_exists('target',\App::$data) && array_key_exists('site_url',\App::$data['target'])) ? diff --git a/include/channel.php b/include/channel.php index 47db7e806..2c892dbb9 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1103,8 +1103,8 @@ function profile_sidebar($profile, $block = 0, $show_connect = true, $zcard = fa require_once('include/widgets.php'); - if(! feature_enabled($profile['uid'],'hide_rating')) - $z = widget_rating(array('target' => $profile['channel_hash'])); +// if(! feature_enabled($profile['uid'],'hide_rating')) + $z = widget_rating(array('target' => $profile['channel_hash'])); $o .= replace_macros($tpl, array( '$zcard' => $zcard, diff --git a/include/conversation.php b/include/conversation.php index 637234bff..2e056b620 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -941,12 +941,9 @@ function item_photo_menu($item){ $clean_url = normalise_link($item['author-link']); } - $poco_rating = get_config('system','poco_rating_enable'); - // if unset default to enabled - if($poco_rating === false) - $poco_rating = true; + $rating_enabled = get_config('system','rating_enabled'); - $ratings_url = (($poco_rating) ? z_root() . '/ratings/' . urlencode($item['author_xchan']) : ''); + $ratings_url = (($rating_enabled) ? z_root() . '/ratings/' . urlencode($item['author_xchan']) : ''); $post_menu = Array( t("View Source") => $vsrc_link, diff --git a/include/features.php b/include/features.php index a5baddf52..4e86b7881 100644 --- a/include/features.php +++ b/include/features.php @@ -55,7 +55,7 @@ function get_features($filtered = true) { array('profile_export', t('Profile Import/Export'), t('Save and load profile details across sites/channels'),false,get_config('feature_lock','profile_export')), array('webpages', t('Web Pages'), t('Provide managed web pages on your channel'),false,get_config('feature_lock','webpages')), array('wiki', t('Wiki'), t('Provide a wiki for your channel'),(($server_role === 'basic') ? false : true),get_config('feature_lock','wiki')), - array('hide_rating', t('Hide Rating'), t('Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else.'),false,get_config('feature_lock','hide_rating')), +// array('hide_rating', t('Hide Rating'), t('Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else.'),false,get_config('feature_lock','hide_rating')), array('private_notes', t('Private Notes'), t('Enables a tool to store notes and reminders (note: not encrypted)'),false,get_config('feature_lock','private_notes')), array('nav_channel_select', t('Navigation Channel Select'), t('Change channels directly from within the navigation dropdown menu'),false,get_config('feature_lock','nav_channel_select')), array('photo_location', t('Photo Location'), t('If location data is available on uploaded photos, link this to a map.'),false,get_config('feature_lock','photo_location')), diff --git a/include/widgets.php b/include/widgets.php index 68db74703..765cb4d42 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -1286,8 +1286,8 @@ function widget_random_block($arr) { function widget_rating($arr) { - $poco_rating = get_config('system','poco_rating_enable'); - if((! $poco_rating) && ($poco_rating !== false)) { + $rating_enabled = get_config('system','rating_enabled'); + if(! $rating_enabled) { return; } -- cgit v1.2.3 From c6b9eb7855aff2582bf0731546a739667faa81a0 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 25 Aug 2016 18:49:45 -0700 Subject: update doco --- doc/hidden_configs.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/hidden_configs.bb b/doc/hidden_configs.bb index 6e093dbfc..35408c037 100644 --- a/doc/hidden_configs.bb +++ b/doc/hidden_configs.bb @@ -67,7 +67,7 @@ Options are: [*= system.paranoia ] As the pconfig, but on a site-wide basis. Can be overwritten by member settings. [*= system.photo_cache_time ] How long to cache photos, in seconds. Default is 86400 (1 day). Longer time increases performance, but it also means it takes longer for changed permissions to apply. [*= system.platform_name ] What to report as the platform name in webpages and statistics. (*) Must be set in .htconfig.php - [*= system.poco_rating_enable ] Distributed reputation reporting and data collection may be disabled. If your site does not participate in distributed reputation you will also not be able to make use of the data from your connections on other sites. By default and in the absence of any setting it is enabled. Individual members can opt out by restricting who can see their connections or by not providing any reputation information for their connections. + [*= system.rating_enabled ] Distributed reputation reporting and data collection. This feature is currently being re-worked. [*= system.poke_basic ] Reduce the number of poke verbs to exactly 1 ("poke"). Disable other verbs. [*= system.proc_run_use_exec ] If 1, use the exec system call in proc_run to run background tasks. By default we use proc_open and proc_close. On some (currently rare) systems this does not work well. [*= system.projecthome ] Display the project page on your home page for logged out viewers. -- cgit v1.2.3 From 8a2b96c2f950f828635441f357acfad94cea1266 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 26 Aug 2016 01:37:46 -0700 Subject: - implemented but untested: duplicate detection for photo 'move to another folder' - weekly string update --- include/attach.php | 59 +- util/hmessages.po | 9089 ++++++++++++++++++++++++++-------------------------- 2 files changed, 4600 insertions(+), 4548 deletions(-) diff --git a/include/attach.php b/include/attach.php index 8dac57bb6..ae7d71dc7 100644 --- a/include/attach.php +++ b/include/attach.php @@ -2039,15 +2039,70 @@ function attach_move($channel_id,$resource_id,$new_folder_hash) { rename($oldstorepath,$newstorepath); - $t = q("update attach set content = '%s', folder = '%s' where id = %d", + // duplicate detection. If 'overwrite' is specified, return false because we can't yet do that. + + $filename = $r[0]['filename']; + + $s = q("select filename, id, hash, filesize from attach where filename = '%s' and folder = '%s' ", + dbesc($filename), + dbesc($new_folder_hash) + ); + + if($s) { + $overwrite = get_pconfig($channel_id,'system','overwrite_dup_files'); + if($overwrite) { + // @fixme + return; + } + else { + if(strpos($filename,'.') !== false) { + $basename = substr($filename,0,strrpos($filename,'.')); + $ext = substr($filename,strrpos($filename,'.')); + } + else { + $basename = $filename; + $ext = ''; + } + + $v = q("select filename from attach where ( filename = '%s' OR filename like '%s' ) and folder = '%s' ", + dbesc($basename . $ext), + dbesc($basename . '(%)' . $ext), + dbesc($new_folder_hash) + ); + + if($v) { + $x = 1; + + do { + $found = false; + foreach($v as $vv) { + if($vv['filename'] === $basename . '(' . $x . ')' . $ext) { + $found = true; + break; + } + } + if($found) + $x++; + } + while($found); + $filename = $basename . '(' . $x . ')' . $ext; + } + else + $filename = $basename . $ext; + } + } + + $t = q("update attach set content = '%s', folder = '%s', filename = '%s' where id = %d", dbesc($newstorepath), dbesc($new_folder_hash), + dbesc($filename), intval($r[0]['id']) ); if($r[0]['is_photo']) { - $t = q("update photo set album = '%s' where resource_id = '%s' and uid = %d", + $t = q("update photo set album = '%s', filename = '%s' where resource_id = '%s' and uid = %d", dbesc($newdirname), + dbesc($filename), dbesc($resource_id), intval($channel_id) ); diff --git a/util/hmessages.po b/util/hmessages.po index ada834815..f985f6903 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-19 00:02-0700\n" +"POT-Creation-Date: 2016-08-26 00:02-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -87,9 +87,10 @@ msgstr "" msgid "Special - Group Repository" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../Zotlabs/Access/PermissionRoles.php:204 +#: ../../include/permissions.php:943 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:943 +#: ../../include/selectors.php:140 msgid "Other" msgstr "" @@ -193,13 +194,13 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1036 -#: ../../include/widgets.php:1613 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1613 +#: ../../include/conversation.php:1033 msgid "Unknown" msgstr "" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1669 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1672 #: ../../include/nav.php:95 msgid "Files" msgstr "" @@ -213,24 +214,23 @@ msgid "Shared" msgstr "" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:216 +#: ../../Zotlabs/Module/New_channel.php:142 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 -#: ../../Zotlabs/Module/Webpages.php:216 msgid "Create" msgstr "" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Profile_photo.php:390 #: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 +#: ../../Zotlabs/Module/Profile_photo.php:390 #: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1626 msgid "Upload" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:250 -#: ../../Zotlabs/Module/Admin.php:1223 -#: ../../Zotlabs/Module/Sharedwithme.php:99 -#: ../../Zotlabs/Module/Settings.php:684 ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:684 +#: ../../Zotlabs/Module/Settings.php:710 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 msgid "Name" msgstr "" @@ -248,33 +248,34 @@ msgstr "" msgid "Last Modified" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Storage/Browser.php:240 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:217 -#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Lib/Apps.php:341 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/page_widgets.php:9 ../../include/page_widgets.php:39 -#: ../../include/menu.php:113 ../../include/channel.php:959 -#: ../../include/channel.php:963 +#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Admin.php:2127 +#: ../../Zotlabs/Module/Webpages.php:217 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/menu.php:113 msgid "Edit" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Connedit.php:607 +#: ../../Zotlabs/Storage/Browser.php:241 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Admin.php:1039 ../../Zotlabs/Module/Admin.php:1213 -#: ../../Zotlabs/Module/Admin.php:2114 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Webpages.php:219 -#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Editwebpage.php:170 +#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1226 ../../Zotlabs/Module/Admin.php:2128 +#: ../../Zotlabs/Module/Webpages.php:219 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../include/conversation.php:660 msgid "Delete" msgstr "" @@ -304,74 +305,64 @@ msgstr "" msgid "Drop files here to immediately upload" msgstr "" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Like.php:283 -#: ../../Zotlabs/Module/Group.php:72 ../../Zotlabs/Module/Import_items.php:114 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:66 -#: ../../include/items.php:384 -msgid "Permission denied" -msgstr "" - -#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Item.php:214 ../../Zotlabs/Module/Item.php:222 -#: ../../Zotlabs/Module/Item.php:1073 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Connedit.php:395 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Setup.php:219 #: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Pdledit.php:26 ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:226 -#: ../../Zotlabs/Module/Channel.php:267 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 #: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Webpages.php:95 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 #: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Api.php:12 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 +#: ../../Zotlabs/Module/Channel.php:268 ../../Zotlabs/Module/Blocks.php:73 #: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 #: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Network.php:15 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Webpages.php:95 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 #: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Settings.php:664 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/photos.php:27 -#: ../../include/items.php:3450 ../../include/attach.php:142 -#: ../../include/attach.php:190 ../../include/attach.php:253 -#: ../../include/attach.php:267 ../../include/attach.php:274 -#: ../../include/attach.php:339 ../../include/attach.php:353 -#: ../../include/attach.php:360 ../../include/attach.php:440 -#: ../../include/attach.php:902 ../../include/attach.php:973 -#: ../../include/attach.php:1125 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/items.php:3477 ../../include/photos.php:27 +#: ../../include/attach.php:142 ../../include/attach.php:190 +#: ../../include/attach.php:253 ../../include/attach.php:267 +#: ../../include/attach.php:274 ../../include/attach.php:339 +#: ../../include/attach.php:353 ../../include/attach.php:360 +#: ../../include/attach.php:440 ../../include/attach.php:902 +#: ../../include/attach.php:973 ../../include/attach.php:1125 msgid "Permission denied." msgstr "" @@ -379,12 +370,20 @@ msgstr "" msgid "Not Found" msgstr "" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 -#: ../../Zotlabs/Module/Help.php:97 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:119 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "" +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../include/items.php:384 +msgid "Permission denied" +msgstr "" + #: ../../Zotlabs/Zot/Auth.php:138 msgid "" "Remote authentication blocked. You are logged into this site locally. Please " @@ -400,10 +399,11 @@ msgstr "" #: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 +#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Webpages.php:33 ../../include/channel.php:859 +#: ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "" @@ -419,1324 +419,1286 @@ msgstr "" msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Thing.php:89 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Admin.php:164 -#: ../../Zotlabs/Module/Admin.php:1255 ../../Zotlabs/Module/Admin.php:1561 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3371 -msgid "Item not found." +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" msgstr "" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" msgstr "" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" msgstr "" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" msgstr "" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" msgstr "" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" msgstr "" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" msgstr "" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" msgstr "" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Only sends to viewers of the applicable profile" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" msgstr "" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" msgstr "" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" msgstr "" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 -msgid "URL for photo of thing (optional)" +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" msgstr "" -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 -#: ../../Zotlabs/Module/Chat.php:234 ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 -#: ../../include/acl_selectors.php:186 -msgid "Permissions" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" msgstr "" -#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Connedit.php:783 -#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Mail.php:370 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Appman.php:126 ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Mitem.php:243 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Setup.php:312 ../../Zotlabs/Module/Setup.php:353 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Photos.php:679 -#: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098 -#: ../../Zotlabs/Module/Photos.php:1216 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Settings.php:682 -#: ../../Zotlabs/Module/Settings.php:795 ../../Zotlabs/Module/Settings.php:886 -#: ../../Zotlabs/Module/Settings.php:912 ../../Zotlabs/Module/Settings.php:935 -#: ../../Zotlabs/Module/Settings.php:1040 -#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/widgets.php:763 -#: ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Submit" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" msgstr "" -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" msgstr "" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" msgstr "" -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "" + +#: ../../Zotlabs/Module/Api.php:83 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "Yes" msgstr "" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:463 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "No" msgstr "" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" msgstr "" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1945 -msgid "photo" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1951 -msgid "status" +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1948 ../../include/event.php:958 -msgid "event" +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Setup.php:316 +#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Settings.php:682 ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:886 ../../Zotlabs/Module/Settings.php:912 +#: ../../Zotlabs/Module/Settings.php:935 +#: ../../Zotlabs/Module/Settings.php:1040 +#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:701 ../../Zotlabs/Module/Admin.php:784 +#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Admin.php:1662 +#: ../../Zotlabs/Module/Admin.php:1747 ../../Zotlabs/Module/Admin.php:2130 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:711 +#: ../../include/widgets.php:763 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" msgstr "" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1351 +msgid "Public Hubs" msgstr "" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." msgstr "" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" msgstr "" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" msgstr "" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" msgstr "" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:960 +msgid "Ratings" msgstr "" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." +#: ../../Zotlabs/Module/Pubsites.php:43 +msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." +#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:20 ../../Zotlabs/Module/Chat.php:25 -#: ../../Zotlabs/Module/Channel.php:28 -msgid "You must be logged in to see this page." +#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Webpages.php:223 +#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 +msgid "View" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/conversation.php:1725 ../../include/conversation.php:1728 -#: ../../include/features.php:57 ../../include/nav.php:110 -msgid "Wiki" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:98 -msgid "Sandbox" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:100 +#: ../../Zotlabs/Module/Register.php:131 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be " -"saved*.\"" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:169 -msgid "Revision Comparison" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:170 -msgid "Revert" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Settings.php:683 -#: ../../Zotlabs/Module/Settings.php:709 ../../include/conversation.php:1242 -#: ../../include/conversation.php:1289 -msgid "Cancel" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:201 -msgid "Enter the name of your new wiki:" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:202 -msgid "Enter the name of the new page:" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Enter the new name:" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1155 -msgid "Embed image from photo albums" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1241 -msgid "Embed an image from your albums" +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1243 -#: ../../include/conversation.php:1288 -msgid "OK" +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1191 -msgid "Choose images to embed" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1192 -msgid "Choose an album" +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1193 -msgid "Choose a different album..." +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1194 -msgid "Error getting album list" +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1195 -msgid "Error getting photo link" +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Name or caption" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1196 -msgid "Error getting album" +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" msgstr "" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Ratings.php:86 ../../Zotlabs/Module/Photos.php:520 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +msgid "Choose a short nickname" msgstr "" -#: ../../Zotlabs/Module/Directory.php:243 +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 #, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Channel role and privacy" msgstr "" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Select a channel role with your privacy requirements." msgstr "" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Read more about roles" msgstr "" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" msgstr "" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/bb2diaspora.php:507 -#: ../../include/channel.php:1049 ../../include/event.php:52 -#: ../../include/event.php:84 -msgid "Location:" +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" msgstr "" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" +#: ../../Zotlabs/Module/Register.php:248 ../../Zotlabs/Module/Admin.php:503 +msgid "Registration" msgstr "" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" +#: ../../Zotlabs/Module/Register.php:253 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" +#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 +#: ../../boot.php:1720 +msgid "Register" msgstr "" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/conversation.php:960 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 -#: ../../include/channel.php:1034 ../../include/connections.php:78 -msgid "Connect" +#: ../../Zotlabs/Module/Register.php:266 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." msgstr "" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" msgstr "" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 +#: ../../Zotlabs/Module/Admin.php:1575 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3398 +msgid "Item not found." msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/conversation.php:1665 ../../include/nav.php:94 +msgid "Photos" msgstr "" -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Settings.php:683 ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Admin.php:1420 ../../Zotlabs/Module/Wiki.php:171 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 +#: ../../include/conversation.php:1292 +msgid "Cancel" msgstr "" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." msgstr "" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" msgstr "" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2047 +#: ../../Zotlabs/Module/Admin.php:2067 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" msgstr "" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" msgstr "" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Rate.php:159 ../../Zotlabs/Module/Connedit.php:766 -#: ../../include/js_strings.php:20 -msgid "Rating" +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." msgstr "" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" msgstr "" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1568 +msgid "New" msgstr "" -#: ../../Zotlabs/Module/Item.php:180 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:497 +msgid "All" msgstr "" -#: ../../Zotlabs/Module/Item.php:433 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" msgstr "" -#: ../../Zotlabs/Module/Item.php:473 -msgid "Executable content type not permitted to this channel." +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" msgstr "" -#: ../../Zotlabs/Module/Item.php:858 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" msgstr "" -#: ../../Zotlabs/Module/Item.php:991 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" msgstr "" -#: ../../Zotlabs/Module/Item.php:1112 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" msgstr "" -#: ../../Zotlabs/Module/Item.php:1119 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" msgstr "" -#: ../../Zotlabs/Module/Item.php:1126 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/conversation.php:1662 ../../include/nav.php:94 -msgid "Photos" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" msgstr "" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" msgstr "" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/widgets.php:201 -#: ../../include/text.php:926 ../../include/text.php:938 -msgid "Save" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:723 +msgid "Status" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Approve" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:690 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Api.php:85 -#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:673 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1717 -msgid "No" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Api.php:84 -#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:673 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1717 -msgid "Yes" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:440 -msgid "Could not access address book record." +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:855 ../../include/nav.php:190 +msgid "Connections" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:460 -msgid "Refresh failed - channel is currently unavailable." +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:925 +#: ../../include/text.php:937 ../../include/acl_selectors.php:174 +#: ../../include/nav.php:169 +msgid "Search" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 -#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 -#: ../../Zotlabs/Module/Connedit.php:515 -msgid "Unable to set address book parameters." +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:538 -msgid "Connection has been removed." +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/conversation.php:958 ../../include/nav.php:88 -msgid "View Profile" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:557 -#, php-format -msgid "View %s's profile" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:561 -msgid "Refresh Permissions" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Fetch updated permissions" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Recent Activity" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "View recent posts and comments" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:575 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:575 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4312 +msgid "female" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Block (or Unblock) all communications with this connection" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4313 +#, php-format +msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "This connection is blocked!" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4314 +msgid "male" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Unignore" +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4315 +#, php-format +msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:583 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4317 +#, php-format +msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Ignore (or Unignore) all inbound communications from this connection" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 +msgid "cover photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "This connection is ignored!" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Unarchive" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Archive" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "This connection is archived!" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "or" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Unhide" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Hide" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide or Unhide this connection from your other connections" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:603 -msgid "This connection is hidden!" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Delete this connection" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 -msgid "Me" +#: ../../Zotlabs/Module/Setup.php:183 +msgid "$Projectname Server - Setup" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 -msgid "Family" +#: ../../Zotlabs/Module/Setup.php:187 +msgid "Could not connect to database." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:627 ../../Zotlabs/Module/Settings.php:429 -#: ../../Zotlabs/Module/Settings.php:433 ../../Zotlabs/Module/Settings.php:434 -#: ../../Zotlabs/Module/Settings.php:437 ../../Zotlabs/Module/Settings.php:448 -#: ../../include/selectors.php:123 ../../include/widgets.php:495 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 -msgid "Friends" +#: ../../Zotlabs/Module/Setup.php:191 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 -msgid "Acquaintances" +#: ../../Zotlabs/Module/Setup.php:198 +msgid "Could not create table." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:629 -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 -msgid "All" +#: ../../Zotlabs/Module/Setup.php:203 +msgid "Your site database has been installed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:690 -msgid "Approve this connection" +#: ../../Zotlabs/Module/Setup.php:207 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:690 -msgid "Accept connection to allow communication" +#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:270 +#: ../../Zotlabs/Module/Setup.php:733 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:695 -msgid "Set Affinity" +#: ../../Zotlabs/Module/Setup.php:267 +msgid "System check" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "Set Profile" +#: ../../Zotlabs/Module/Setup.php:271 ../../Zotlabs/Module/Photos.php:960 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +msgid "Next" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:701 -msgid "Set Affinity & Profile" +#: ../../Zotlabs/Module/Setup.php:272 +msgid "Check again" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:750 -msgid "none" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:754 ../../include/widgets.php:623 -msgid "Connection Default Permissions" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:754 ../../include/items.php:3937 -#, php-format -msgid "Connection: %s" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:755 -msgid "Apply these permissions automatically" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:755 -msgid "Connection requests will be approved without your interaction" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Server Name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:757 -msgid "This connection's primary address is" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Default is 127.0.0.1" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "Available locations:" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Port" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:762 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:763 -msgid "Connection Tools" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Login Name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:765 -msgid "Slide to adjust your degree of friendship" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Password" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Slide to adjust your rating" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:768 ../../Zotlabs/Module/Connedit.php:773 -msgid "Optionally explain your rating" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Type" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "Custom Filter" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "Site administrator email address" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:771 -msgid "Only import posts with this text" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:771 ../../Zotlabs/Module/Connedit.php:772 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Website URL" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:772 -msgid "Do not import posts with this text" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:774 -msgid "This information is public!" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:360 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Connection Pending Approval" +#: ../../Zotlabs/Module/Setup.php:335 ../../Zotlabs/Module/Admin.php:489 +msgid "Basic/Minimal Social Networking" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:782 ../../Zotlabs/Module/Settings.php:882 -msgid "inherited" +#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:490 +msgid "Standard Configuration (default)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:784 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:491 +msgid "Professional" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:786 ../../Zotlabs/Module/Settings.php:879 -msgid "Their Settings" +#: ../../Zotlabs/Module/Setup.php:343 +msgid "Site settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:787 ../../Zotlabs/Module/Settings.php:880 -msgid "My Settings" +#: ../../Zotlabs/Module/Setup.php:358 ../../Zotlabs/Module/Admin.php:512 +msgid "Server Configuration/Role" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Settings.php:884 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Setup.php:399 +msgid "PHP version 5.5 or greater is required." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:790 ../../Zotlabs/Module/Settings.php:885 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:791 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." +#: ../../Zotlabs/Module/Setup.php:415 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:792 -msgid "Last update:" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." msgstr "" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "PHP executable path" msgstr "" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" +#: ../../Zotlabs/Module/Setup.php:425 +msgid "Command line PHP" msgstr "" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" +#: ../../Zotlabs/Module/Setup.php:434 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1565 -msgid "New" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "This is required for message delivery to work." msgstr "" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" +#: ../../Zotlabs/Module/Setup.php:438 +msgid "PHP register_argc_argv" msgstr "" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" +#: ../../Zotlabs/Module/Setup.php:456 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." msgstr "" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" +#: ../../Zotlabs/Module/Setup.php:461 +msgid "You can adjust these settings in the servers php.ini." msgstr "" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" +#: ../../Zotlabs/Module/Setup.php:463 +msgid "PHP upload limits" msgstr "" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" +#: ../../Zotlabs/Module/Setup.php:486 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" +#: ../../Zotlabs/Module/Setup.php:490 +msgid "Generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" +#: ../../Zotlabs/Module/Setup.php:502 +msgid "libCurl PHP module" msgstr "" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "GD graphics PHP module" msgstr "" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "OpenSSL PHP module" msgstr "" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "mysqli or postgres PHP module" msgstr "" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mb_string PHP module" msgstr "" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "xml PHP module" msgstr "" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" +#: ../../Zotlabs/Module/Setup.php:511 ../../Zotlabs/Module/Setup.php:513 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" +#: ../../Zotlabs/Module/Setup.php:511 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" +#: ../../Zotlabs/Module/Setup.php:517 ../../Zotlabs/Module/Setup.php:520 +msgid "proc_open" msgstr "" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" +#: ../../Zotlabs/Module/Setup.php:517 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" +#: ../../Zotlabs/Module/Setup.php:525 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" +#: ../../Zotlabs/Module/Setup.php:529 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" +#: ../../Zotlabs/Module/Setup.php:533 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:190 ../../include/text.php:855 -msgid "Connections" +#: ../../Zotlabs/Module/Setup.php:537 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:169 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:179 -msgid "Search" +#: ../../Zotlabs/Module/Setup.php:541 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" +#: ../../Zotlabs/Module/Setup.php:545 +msgid "Error: xml PHP module required for DAV but not installed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" +#: ../../Zotlabs/Module/Setup.php:563 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" +#: ../../Zotlabs/Module/Setup.php:569 +msgid ".htconfig.php is writable" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." +#: ../../Zotlabs/Module/Setup.php:583 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." +#: ../../Zotlabs/Module/Setup.php:584 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4285 -msgid "female" +#: ../../Zotlabs/Module/Setup.php:585 ../../Zotlabs/Module/Setup.php:606 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4286 +#: ../../Zotlabs/Module/Setup.php:586 #, php-format -msgid "%1$s updated her %2$s" +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4287 -msgid "male" +#: ../../Zotlabs/Module/Setup.php:589 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4288 -#, php-format -msgid "%1$s updated his %2$s" +#: ../../Zotlabs/Module/Setup.php:605 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4290 -#, php-format -msgid "%1$s updated their %2$s" +#: ../../Zotlabs/Module/Setup.php:609 +msgid "store is writable" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1710 -msgid "cover photo" +#: ../../Zotlabs/Module/Setup.php:642 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1180 -msgid "or" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" +#: ../../Zotlabs/Module/Setup.php:652 +msgid "SSL certificate validation" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" +#: ../../Zotlabs/Module/Setup.php:658 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../Zotlabs/Module/Setup.php:661 +msgid "Url rewrite is working" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:548 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Setup.php:670 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." +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." msgstr "" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" +#: ../../Zotlabs/Module/Setup.php:694 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available memory" +#: ../../Zotlabs/Module/Setup.php:731 +msgid "

    What next

    " msgstr "" -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Setup.php:732 msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "" +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " msgstr "" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " msgstr "" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../include/bb2diaspora.php:507 +msgid "Location:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1186 -msgid "Please enter a link URL:" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/channel.php:1034 ../../include/conversation.php:957 +msgid "Connect" msgstr "" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " msgstr "" -#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 -msgid "Your message:" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" msgstr "" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1238 -msgid "Attach file" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1151 -msgid "Insert web link" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" msgstr "" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" msgstr "" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1281 -msgid "Set expiration date" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 -#: ../../include/conversation.php:1286 -msgid "Encrypt text" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" msgstr "" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" msgstr "" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" msgstr "" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" msgstr "" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" msgstr "" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" msgstr "" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." msgstr "" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 @@ -1759,7 +1721,14 @@ msgstr "" msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1254 +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "" + +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 msgid "Title (optional)" msgstr "" @@ -1789,66 +1758,117 @@ msgstr "" msgid "Edit Webpage" msgstr "" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." msgstr "" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." msgstr "" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" msgstr "" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" msgstr "" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" msgstr "" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" msgstr "" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 +msgid "Menus" msgstr "" -#: ../../Zotlabs/Module/Chat.php:249 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" msgstr "" -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:228 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" msgstr "" -#: ../../Zotlabs/Module/Chat.php:255 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:229 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" msgstr "" -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" msgstr "" -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." msgstr "" #: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 @@ -1996,6 +2016,13 @@ msgstr "" msgid "Edit file permissions" msgstr "" +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "" + #: ../../Zotlabs/Module/Filestorage.php:159 msgid "Set/edit permissions" msgstr "" @@ -2028,1510 +2055,1538 @@ msgstr "" msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." +#: ../../Zotlabs/Module/Settings.php:64 +msgid "Name is required" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." +#: ../../Zotlabs/Module/Settings.php:68 +msgid "Key and Secret are required" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" +#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Admin.php:1449 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." +#: ../../Zotlabs/Module/Settings.php:184 +msgid "Token saved." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." +#: ../../Zotlabs/Module/Settings.php:312 +msgid "Not valid email." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" +#: ../../Zotlabs/Module/Settings.php:315 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" +#: ../../Zotlabs/Module/Settings.php:324 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" +#: ../../Zotlabs/Module/Settings.php:341 +msgid "Password verification failed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" +#: ../../Zotlabs/Module/Settings.php:348 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" +#: ../../Zotlabs/Module/Settings.php:352 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" +#: ../../Zotlabs/Module/Settings.php:366 +msgid "Password changed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" +#: ../../Zotlabs/Module/Settings.php:368 +msgid "Password update failed. Please try again." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" +#: ../../Zotlabs/Module/Settings.php:429 ../../Zotlabs/Module/Settings.php:433 +#: ../../Zotlabs/Module/Settings.php:434 ../../Zotlabs/Module/Settings.php:437 +#: ../../Zotlabs/Module/Settings.php:448 ../../Zotlabs/Module/Connedit.php:627 +#: ../../include/widgets.php:495 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/selectors.php:123 +msgid "Friends" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" +#: ../../Zotlabs/Module/Settings.php:617 +msgid "Settings updated." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" +#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 +#: ../../Zotlabs/Module/Settings.php:743 +msgid "Add application" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" +#: ../../Zotlabs/Module/Settings.php:684 +msgid "Name of application" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 +msgid "Consumer Key" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Events.php:467 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." +#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 +msgid "Consumer Secret" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" +#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 +msgid "Redirect" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" +#: ../../Zotlabs/Module/Settings.php:687 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 +msgid "Icon url" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Application not found." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" +#: ../../Zotlabs/Module/Settings.php:742 +msgid "Connected Apps" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" +#: ../../Zotlabs/Module/Settings.php:746 +msgid "Client key starts with" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" +#: ../../Zotlabs/Module/Settings.php:747 +msgid "No name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" +#: ../../Zotlabs/Module/Settings.php:748 +msgid "Remove authorization" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" +#: ../../Zotlabs/Module/Settings.php:761 +msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" +#: ../../Zotlabs/Module/Settings.php:768 +msgid "Feature/Addon Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1556 -#: ../../include/widgets.php:105 -msgid "Personal" +#: ../../Zotlabs/Module/Settings.php:791 +msgid "Account Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" +#: ../../Zotlabs/Module/Settings.php:792 +msgid "Current Password" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" +#: ../../Zotlabs/Module/Settings.php:793 +msgid "Enter New Password" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Confirm New Password" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" +#: ../../Zotlabs/Module/Settings.php:796 +#: ../../Zotlabs/Module/Settings.php:1236 +msgid "Email Address:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" +#: ../../Zotlabs/Module/Settings.php:797 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" +#: ../../Zotlabs/Module/Settings.php:798 +msgid "Remove this account including all its channels" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" +#: ../../Zotlabs/Module/Settings.php:832 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." +#: ../../Zotlabs/Module/Settings.php:834 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" +#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 +msgid "Guest Access Tokens" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "" +#: ../../Zotlabs/Module/Settings.php:876 +msgid "Login Name" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" +#: ../../Zotlabs/Module/Settings.php:877 +msgid "Login Password" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" +#: ../../Zotlabs/Module/Settings.php:878 +msgid "Expires (yyyy-mm-dd)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" +#: ../../Zotlabs/Module/Settings.php:879 ../../Zotlabs/Module/Connedit.php:782 +msgid "Their Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" +#: ../../Zotlabs/Module/Settings.php:880 ../../Zotlabs/Module/Connedit.php:783 +msgid "My Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" +#: ../../Zotlabs/Module/Settings.php:882 ../../Zotlabs/Module/Connedit.php:778 +msgid "inherited" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" +#: ../../Zotlabs/Module/Settings.php:884 ../../Zotlabs/Module/Connedit.php:785 +msgid "Individual Permissions" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Settings.php:885 ../../Zotlabs/Module/Connedit.php:786 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can not change those settings here." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "Off" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "On" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" +#: ../../Zotlabs/Module/Settings.php:910 +msgid "Additional Features" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" +#: ../../Zotlabs/Module/Settings.php:934 +msgid "Connector Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" +#: ../../Zotlabs/Module/Settings.php:981 +msgid "No special theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" +#: ../../Zotlabs/Module/Settings.php:984 +#, php-format +msgid "%s - (Experimental)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" +#: ../../Zotlabs/Module/Settings.php:987 ../../Zotlabs/Module/Admin.php:414 +msgid "mobile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" +#: ../../Zotlabs/Module/Settings.php:1035 +msgid "Display Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" +#: ../../Zotlabs/Module/Settings.php:1036 +msgid "Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" +#: ../../Zotlabs/Module/Settings.php:1037 +msgid "Custom Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" +#: ../../Zotlabs/Module/Settings.php:1038 +msgid "Content Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Display Theme:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" +#: ../../Zotlabs/Module/Settings.php:1045 +msgid "Select scheme" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" +#: ../../Zotlabs/Module/Settings.php:1047 +msgid "Mobile Theme:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Preload images before rendering the page" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" +#: ../../Zotlabs/Module/Settings.php:1049 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Update browser every xx seconds" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:90 -#: ../../include/channel.php:959 -msgid "Edit Profiles" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum of 100 items" msgstr "" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Settings.php:1052 +msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Link post titles to source" msgstr "" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." +#: ../../Zotlabs/Module/Settings.php:1054 +msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3904 -msgid "Privacy group not found." +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Use blog/list mode on channel page" msgstr "" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." +#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "(comments displayed separately)" msgstr "" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Use blog/list mode on grid page" msgstr "" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" +#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "click to expand content exceeding this height" msgstr "" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "Grid page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Nobody except yourself" msgstr "" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "Only those you specifically allow" msgstr "" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "Approved connections" msgstr "" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "Any connections" msgstr "" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "Anybody on this website" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 -msgid "Menu not found." +#: ../../Zotlabs/Module/Settings.php:1095 +msgid "Anybody in this network" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." +#: ../../Zotlabs/Module/Settings.php:1096 +msgid "Anybody authenticated" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." +#: ../../Zotlabs/Module/Settings.php:1171 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:120 ../../Zotlabs/Module/Menu.php:166 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." +#: ../../Zotlabs/Module/Settings.php:1176 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" +#: ../../Zotlabs/Module/Settings.php:1185 +msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings.php:1263 -msgid "(click to open/close)" +#: ../../Zotlabs/Module/Settings.php:1227 +msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" +#: ../../Zotlabs/Module/Settings.php:1234 +msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" +#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 +msgid "Full Name:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" +#: ../../Zotlabs/Module/Settings.php:1237 +msgid "Your Timezone:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Default Post Location:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" +#: ../../Zotlabs/Module/Settings.php:1239 +msgid "Use Browser Location:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "Adult Content" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" +#: ../../Zotlabs/Module/Settings.php:1243 +msgid "Security and Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" +#: ../../Zotlabs/Module/Settings.php:1246 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Hide my online presence" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" +#: ../../Zotlabs/Module/Settings.php:1250 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" +#: ../../Zotlabs/Module/Settings.php:1251 +msgid "" +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" +#: ../../Zotlabs/Module/Settings.php:1252 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" +#: ../../Zotlabs/Module/Settings.php:1253 +msgid "Private - default private, never open or public" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" +#: ../../Zotlabs/Module/Settings.php:1254 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "Allow others to tag your posts" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." +#: ../../Zotlabs/Module/Settings.php:1258 +msgid "Advanced Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" +#: ../../Zotlabs/Module/Settings.php:1260 +#, php-format +msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "Use this form to import existing posts and content from an export file." +#: ../../Zotlabs/Module/Settings.php:1262 +msgid "Default Post and Publish Permissions" msgstr "" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." +#: ../../Zotlabs/Module/Settings.php:1263 ../../Zotlabs/Module/Mitem.php:154 +#: ../../Zotlabs/Module/Mitem.php:231 +msgid "(click to open/close)" msgstr "" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" +#: ../../Zotlabs/Module/Settings.php:1271 +msgid "Channel permissions category:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" +#: ../../Zotlabs/Module/Settings.php:1280 +msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" +#: ../../Zotlabs/Module/Settings.php:1281 +msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." +#: ../../Zotlabs/Module/Settings.php:1283 +msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" +#: ../../Zotlabs/Module/Settings.php:1284 +msgid "making an interesting profile change" msgstr "" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "1. Register at any $Projectname location (they are all inter-connected)" +#: ../../Zotlabs/Module/Settings.php:1285 +msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "Your connections are confirmed" msgstr "" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" +#: ../../Zotlabs/Module/Settings.php:1288 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." +#: ../../Zotlabs/Module/Settings.php:1289 +msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." +#: ../../Zotlabs/Module/Settings.php:1290 +msgid "You receive a private message" msgstr "" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary " -"location." +#: ../../Zotlabs/Module/Settings.php:1291 +msgid "You receive a friend suggestion" msgstr "" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" +#: ../../Zotlabs/Module/Settings.php:1292 +msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." +#: ../../Zotlabs/Module/Settings.php:1293 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" +#: ../../Zotlabs/Module/Settings.php:1296 +msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" +#: ../../Zotlabs/Module/Settings.php:1298 +msgid "Unseen grid activity" msgstr "" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" +#: ../../Zotlabs/Module/Settings.php:1299 +msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" +#: ../../Zotlabs/Module/Settings.php:1300 +msgid "Unseen private messages" msgstr "" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." +#: ../../Zotlabs/Module/Settings.php:1300 +#: ../../Zotlabs/Module/Settings.php:1305 +#: ../../Zotlabs/Module/Settings.php:1306 +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "Recommended" msgstr "" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +#: ../../Zotlabs/Module/Settings.php:1301 +msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." +#: ../../Zotlabs/Module/Settings.php:1302 +msgid "Events today" msgstr "" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" +#: ../../Zotlabs/Module/Settings.php:1304 +msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" +#: ../../Zotlabs/Module/Settings.php:1305 +msgid "System info messages" msgstr "" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" +#: ../../Zotlabs/Module/Settings.php:1306 +msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "New connections" msgstr "" -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" +#: ../../Zotlabs/Module/Settings.php:1308 +msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." +#: ../../Zotlabs/Module/Settings.php:1309 +msgid "" +"Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." +#: ../../Zotlabs/Module/Settings.php:1313 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." +#: ../../Zotlabs/Module/Settings.php:1314 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." +#: ../../Zotlabs/Module/Settings.php:1317 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit event title" +#: ../../Zotlabs/Module/Settings.php:1318 +msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Event title" +#: ../../Zotlabs/Module/Settings.php:1319 +msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Categories (comma-separated list)" +#: ../../Zotlabs/Module/Settings.php:1319 +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit Category" +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Category" +#: ../../Zotlabs/Module/Settings.php:1322 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit start date and time" +#: ../../Zotlabs/Module/Settings.php:1323 ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove Channel" msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Start date and time" +#: ../../Zotlabs/Module/Settings.php:1324 +msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 -msgid "Finish date and time are not known or not relevant" +#: ../../Zotlabs/Module/Settings.php:1325 +msgid "Firefox Share $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit finish date and time" +#: ../../Zotlabs/Module/Settings.php:1326 +msgid "Start calendar week on monday" msgstr "" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Finish date and time" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" msgstr "" -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 -msgid "Adjust for viewer timezone" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" msgstr "" -#: ../../Zotlabs/Module/Events.php:463 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." msgstr "" -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Description" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." msgstr "" -#: ../../Zotlabs/Module/Events.php:467 -msgid "Edit Location" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3931 +msgid "Privacy group not found." msgstr "" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 -msgid "Share this event" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." msgstr "" -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Photos.php:1099 -#: ../../Zotlabs/Module/Webpages.php:224 ../../Zotlabs/Lib/ThreadItem.php:720 -#: ../../include/conversation.php:1205 ../../include/page_widgets.php:43 -msgid "Preview" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." msgstr "" -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1258 -msgid "Permission settings" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " msgstr "" -#: ../../Zotlabs/Module/Events.php:485 -msgid "Advanced Options" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" msgstr "" -#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." msgstr "" -#: ../../Zotlabs/Module/Events.php:619 -msgid "Edit event" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." msgstr "" -#: ../../Zotlabs/Module/Events.php:621 -msgid "Delete event" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" msgstr "" -#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1716 -msgid "Link to Source" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" msgstr "" -#: ../../Zotlabs/Module/Events.php:655 -msgid "calendar" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" msgstr "" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:951 -msgid "Previous" +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" msgstr "" -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Setup.php:267 ../../Zotlabs/Module/Cal.php:333 -#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Photos.php:960 -msgid "Next" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Layouts.php:197 ../../Zotlabs/Module/Pubsites.php:47 -#: ../../Zotlabs/Module/Webpages.php:223 ../../include/page_widgets.php:42 -msgid "View" +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" msgstr "" -#: ../../Zotlabs/Module/Events.php:681 -msgid "Month" +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:210 -msgid "Channel Manager" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" msgstr "" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" msgstr "" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Album name could not be decoded" msgstr "" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" +#: ../../Zotlabs/Module/Photos.php:745 +msgid "Contact Photos" msgstr "" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" +#: ../../Zotlabs/Module/Photos.php:770 +msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" +#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." +#: ../../Zotlabs/Module/Photos.php:825 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" +#: ../../Zotlabs/Module/Photos.php:874 +msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" +#: ../../Zotlabs/Module/Photos.php:932 +msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../Zotlabs/Module/Photos.php:933 +msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1721 -msgid "Password Reset" +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." +#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 +msgid "Previous" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" +#: ../../Zotlabs/Module/Photos.php:955 +msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" +#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1451 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CW (right)" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "Rotate CCW (left)" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" msgstr "" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" msgstr "" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../include/conversation.php:1227 +msgid "Share" msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../include/conversation.php:743 +msgid "Please wait" msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:708 +msgid "This is you" msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 +msgid "Comment" msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:224 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:720 +#: ../../include/conversation.php:1200 ../../include/page_widgets.php:43 +msgid "Preview" msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 -msgid "Menus" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Webpages.php:228 -#: ../../include/page_widgets.php:47 -msgid "Created" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Blocks.php:158 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:229 -#: ../../include/page_widgets.php:48 -msgid "Edited" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1756 +msgid "View all" msgstr "" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1780 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1783 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" msgstr "" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../include/acl_selectors.php:181 +msgid "Close" msgstr "" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" msgstr "" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" msgstr "" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" msgstr "" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" msgstr "" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" msgstr "" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#: ../../Zotlabs/Module/Impel.php:194 #, php-format -msgid "Fetching URL returns error: %1$s" +msgid "%s element installation failed" msgstr "" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" +#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 +msgid "Nothing to import." msgstr "" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." +#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" msgstr "" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../Zotlabs/Module/Import_items.php:72 +#: ../../Zotlabs/Module/Import.php:101 +msgid "Imported file is empty." msgstr "" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." +#: ../../Zotlabs/Module/Import_items.php:88 +#: ../../Zotlabs/Module/Import.php:123 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" msgstr "" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" msgstr "" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "Use this form to import existing posts and content from an export file." msgstr "" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" +#: ../../Zotlabs/Module/Import_items.php:121 +#: ../../Zotlabs/Module/Import.php:549 +msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" msgstr "" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." msgstr "" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "1. Register at any $Projectname location (they are all inter-connected)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" msgstr "" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary " +"location." msgstr "" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" msgstr "" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" msgstr "" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1237 +#: ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" msgstr "" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" msgstr "" -#: ../../Zotlabs/Module/Setup.php:405 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" msgstr "" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." msgstr "" -#: ../../Zotlabs/Module/Setup.php:409 +#: ../../Zotlabs/Module/Locs.php:124 msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +"When possible, drop a location by logging into that website/hub and removing " +"your channel." msgstr "" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" msgstr "" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." msgstr "" -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format +#: ../../Zotlabs/Module/Like.php:25 msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" msgstr "" -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." msgstr "" -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 +#: ../../include/conversation.php:120 +msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1951 ../../include/conversation.php:148 +msgid "status" msgstr "" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 +#: ../../include/conversation.php:123 ../../include/event.php:958 +msgid "event" msgstr "" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:500 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." msgstr "" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" msgstr "" -#: ../../Zotlabs/Module/Setup.php:552 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:210 +msgid "Channel Manager" msgstr "" -#: ../../Zotlabs/Module/Setup.php:553 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" msgstr "" -#: ../../Zotlabs/Module/Setup.php:554 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../Zotlabs/Module/Setup.php:555 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" msgstr "" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:572 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" msgstr "" -#: ../../Zotlabs/Module/Setup.php:573 +#: ../../Zotlabs/Module/Manage.php:173 #, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." +msgid "%d new introductions" msgstr "" -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" msgstr "" -#: ../../Zotlabs/Module/Setup.php:575 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." msgstr "" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." msgstr "" -#: ../../Zotlabs/Module/Setup.php:594 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." msgstr "" -#: ../../Zotlabs/Module/Setup.php:598 -msgid "store is writable" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" msgstr "" -#: ../../Zotlabs/Module/Setup.php:631 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" msgstr "" -#: ../../Zotlabs/Module/Setup.php:632 -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!" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" msgstr "" -#: ../../Zotlabs/Module/Setup.php:633 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" msgstr "" -#: ../../Zotlabs/Module/Setup.php:634 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" msgstr "" -#: ../../Zotlabs/Module/Setup.php:635 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" msgstr "" -#: ../../Zotlabs/Module/Setup.php:636 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" msgstr "" -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../Zotlabs/Module/Setup.php:641 -msgid "SSL certificate validation" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" msgstr "" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" msgstr "" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "Url rewrite is working" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:659 -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." +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" msgstr "" -#: ../../Zotlabs/Module/Setup.php:683 -msgid "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" msgstr "" -#: ../../Zotlabs/Module/Setup.php:720 -msgid "

    What next

    " +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" msgstr "" -#: ../../Zotlabs/Module/Setup.php:721 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" msgstr "" #: ../../Zotlabs/Module/Admin.php:77 @@ -3574,12 +3629,12 @@ msgstr "" msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:724 ../../Zotlabs/Module/Admin.php:768 +#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1342 ../../Zotlabs/Module/Admin.php:1433 +#: ../../Zotlabs/Module/Admin.php:1626 ../../Zotlabs/Module/Admin.php:1660 +#: ../../Zotlabs/Module/Admin.php:1745 msgid "Administration" msgstr "" @@ -3591,7 +3646,7 @@ msgstr "" msgid "Registered accounts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:728 msgid "Pending registrations" msgstr "" @@ -3599,7 +3654,7 @@ msgstr "" msgid "Registered channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:729 msgid "Active plugins" msgstr "" @@ -3615,2870 +3670,2822 @@ msgstr "" msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:373 +#: ../../Zotlabs/Module/Admin.php:377 msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2888 +#: ../../Zotlabs/Module/Admin.php:404 ../../include/text.php:2888 msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:987 -msgid "mobile" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:412 +#: ../../Zotlabs/Module/Admin.php:416 msgid "experimental" msgstr "" -#: ../../Zotlabs/Module/Admin.php:414 +#: ../../Zotlabs/Module/Admin.php:418 msgid "unsupported" msgstr "" -#: ../../Zotlabs/Module/Admin.php:460 +#: ../../Zotlabs/Module/Admin.php:464 msgid "Yes - with approval" msgstr "" -#: ../../Zotlabs/Module/Admin.php:466 +#: ../../Zotlabs/Module/Admin.php:470 msgid "My site is not a public server" msgstr "" -#: ../../Zotlabs/Module/Admin.php:467 +#: ../../Zotlabs/Module/Admin.php:471 msgid "My site has paid access only" msgstr "" -#: ../../Zotlabs/Module/Admin.php:468 +#: ../../Zotlabs/Module/Admin.php:472 msgid "My site has free access only" msgstr "" -#: ../../Zotlabs/Module/Admin.php:469 +#: ../../Zotlabs/Module/Admin.php:473 msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1490 +#: ../../Zotlabs/Module/Admin.php:501 ../../include/widgets.php:1490 msgid "Site" msgstr "" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:248 -msgid "Registration" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:494 +#: ../../Zotlabs/Module/Admin.php:504 msgid "File upload" msgstr "" -#: ../../Zotlabs/Module/Admin.php:495 +#: ../../Zotlabs/Module/Admin.php:505 msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +#: ../../Zotlabs/Module/Admin.php:506 ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "" -#: ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:510 msgid "Site name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:501 +#: ../../Zotlabs/Module/Admin.php:514 msgid "Banner/Logo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:515 msgid "Administrator Information" msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:515 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Admin.php:503 +#: ../../Zotlabs/Module/Admin.php:516 msgid "System language" msgstr "" -#: ../../Zotlabs/Module/Admin.php:504 +#: ../../Zotlabs/Module/Admin.php:517 msgid "System theme" msgstr "" -#: ../../Zotlabs/Module/Admin.php:504 +#: ../../Zotlabs/Module/Admin.php:517 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:505 +#: ../../Zotlabs/Module/Admin.php:518 msgid "Mobile system theme" msgstr "" -#: ../../Zotlabs/Module/Admin.php:505 +#: ../../Zotlabs/Module/Admin.php:518 msgid "Theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 +#: ../../Zotlabs/Module/Admin.php:520 msgid "Allow Feeds as Connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 +#: ../../Zotlabs/Module/Admin.php:520 msgid "(Heavy system resource usage)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 +#: ../../Zotlabs/Module/Admin.php:521 msgid "Maximum image size" msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 +#: ../../Zotlabs/Module/Admin.php:521 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: ../../Zotlabs/Module/Admin.php:509 +#: ../../Zotlabs/Module/Admin.php:522 msgid "Does this site allow new member registration?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:510 +#: ../../Zotlabs/Module/Admin.php:523 msgid "Invitation only" msgstr "" -#: ../../Zotlabs/Module/Admin.php:510 +#: ../../Zotlabs/Module/Admin.php:523 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "" -#: ../../Zotlabs/Module/Admin.php:511 +#: ../../Zotlabs/Module/Admin.php:524 msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:512 +#: ../../Zotlabs/Module/Admin.php:525 msgid "Register text" msgstr "" -#: ../../Zotlabs/Module/Admin.php:512 +#: ../../Zotlabs/Module/Admin.php:525 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Admin.php:526 msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Admin.php:526 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "" -#: ../../Zotlabs/Module/Admin.php:514 +#: ../../Zotlabs/Module/Admin.php:527 msgid "Preserve site homepage URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:514 +#: ../../Zotlabs/Module/Admin.php:527 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "" -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Admin.php:528 msgid "Accounts abandoned after x days" msgstr "" -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Admin.php:528 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 +#: ../../Zotlabs/Module/Admin.php:529 msgid "Allowed friend domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 +#: ../../Zotlabs/Module/Admin.php:529 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Admin.php:530 msgid "Allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Admin.php:530 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Admin.php:531 msgid "Not allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Admin.php:531 msgid "" "Comma separated list of domains which are not allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains, unless allowed domains have been defined." msgstr "" -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Admin.php:532 msgid "Verify Email Addresses" msgstr "" -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Admin.php:532 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../Zotlabs/Module/Admin.php:520 +#: ../../Zotlabs/Module/Admin.php:533 msgid "Force publish" msgstr "" -#: ../../Zotlabs/Module/Admin.php:520 +#: ../../Zotlabs/Module/Admin.php:533 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../Zotlabs/Module/Admin.php:521 +#: ../../Zotlabs/Module/Admin.php:534 msgid "Import Public Streams" msgstr "" -#: ../../Zotlabs/Module/Admin.php:521 +#: ../../Zotlabs/Module/Admin.php:534 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:522 +#: ../../Zotlabs/Module/Admin.php:535 msgid "Login on Homepage" msgstr "" -#: ../../Zotlabs/Module/Admin.php:522 +#: ../../Zotlabs/Module/Admin.php:535 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "" -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Admin.php:536 msgid "Enable context help" msgstr "" -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Admin.php:536 msgid "" "Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 +#: ../../Zotlabs/Module/Admin.php:538 msgid "Directory Server URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 +#: ../../Zotlabs/Module/Admin.php:538 msgid "Default directory server" msgstr "" -#: ../../Zotlabs/Module/Admin.php:527 +#: ../../Zotlabs/Module/Admin.php:540 msgid "Proxy user" msgstr "" -#: ../../Zotlabs/Module/Admin.php:528 +#: ../../Zotlabs/Module/Admin.php:541 msgid "Proxy URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Admin.php:542 msgid "Network timeout" msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Admin.php:542 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Admin.php:543 msgid "Delivery interval" msgstr "" -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Admin.php:543 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "" -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Admin.php:544 msgid "Deliveries per process" msgstr "" -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Admin.php:544 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust " "if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Admin.php:545 msgid "Poll interval" msgstr "" -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Admin.php:545 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Admin.php:546 msgid "Maximum Load Average" msgstr "" -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Admin.php:546 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: ../../Zotlabs/Module/Admin.php:534 +#: ../../Zotlabs/Module/Admin.php:547 msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../Zotlabs/Module/Admin.php:534 +#: ../../Zotlabs/Module/Admin.php:547 msgid "0 for no expiration of imported content" msgstr "" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:903 -msgid "Off" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:903 -msgid "On" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Admin.php:691 #, php-format msgid "Lock feature %s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:686 +#: ../../Zotlabs/Module/Admin.php:699 msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Admin.php:703 +#: ../../Zotlabs/Module/Admin.php:716 msgid "No server found" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +#: ../../Zotlabs/Module/Admin.php:723 ../../Zotlabs/Module/Admin.php:1059 msgid "ID" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 +#: ../../Zotlabs/Module/Admin.php:723 msgid "for channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 +#: ../../Zotlabs/Module/Admin.php:723 msgid "on server" msgstr "" -#: ../../Zotlabs/Module/Admin.php:712 +#: ../../Zotlabs/Module/Admin.php:725 msgid "Server" msgstr "" -#: ../../Zotlabs/Module/Admin.php:746 +#: ../../Zotlabs/Module/Admin.php:759 msgid "" "By default, unfiltered HTML is allowed in embedded media. This is inherently " "insecure." msgstr "" -#: ../../Zotlabs/Module/Admin.php:749 +#: ../../Zotlabs/Module/Admin.php:762 msgid "" "The recommended setting is to only allow unfiltered HTML from the following " "sites:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:750 +#: ../../Zotlabs/Module/Admin.php:763 msgid "" "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/" "
    https://vimeo.com/
    https://soundcloud.com/
    " msgstr "" -#: ../../Zotlabs/Module/Admin.php:751 +#: ../../Zotlabs/Module/Admin.php:764 msgid "" "All other embedded content will be filtered, unless " "embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1493 +#: ../../Zotlabs/Module/Admin.php:769 ../../include/widgets.php:1493 msgid "Security" msgstr "" -#: ../../Zotlabs/Module/Admin.php:758 +#: ../../Zotlabs/Module/Admin.php:771 msgid "Block public" msgstr "" -#: ../../Zotlabs/Module/Admin.php:758 +#: ../../Zotlabs/Module/Admin.php:771 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently authenticated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:759 +#: ../../Zotlabs/Module/Admin.php:772 msgid "Set \"Transport Security\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Admin.php:760 +#: ../../Zotlabs/Module/Admin.php:773 msgid "Set \"Content Security Policy\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Admin.php:774 msgid "Allow communications only from these sites" msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Admin.php:774 msgid "" "One site per line. Leave empty to allow communication from anywhere by " "default" msgstr "" -#: ../../Zotlabs/Module/Admin.php:762 +#: ../../Zotlabs/Module/Admin.php:775 msgid "Block communications from these sites" msgstr "" -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Admin.php:776 msgid "Allow communications only from these channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Admin.php:776 msgid "" "One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -#: ../../Zotlabs/Module/Admin.php:764 +#: ../../Zotlabs/Module/Admin.php:777 msgid "Block communications from these channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:765 +#: ../../Zotlabs/Module/Admin.php:778 msgid "Only allow embeds from secure (SSL) websites and links." msgstr "" -#: ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:779 msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:779 msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../Zotlabs/Module/Admin.php:767 +#: ../../Zotlabs/Module/Admin.php:780 msgid "Block embedded HTML from these domains" msgstr "" -#: ../../Zotlabs/Module/Admin.php:785 +#: ../../Zotlabs/Module/Admin.php:798 msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Admin.php:795 +#: ../../Zotlabs/Module/Admin.php:808 #, php-format msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Admin.php:798 +#: ../../Zotlabs/Module/Admin.php:811 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Admin.php:802 +#: ../../Zotlabs/Module/Admin.php:815 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Admin.php:805 +#: ../../Zotlabs/Module/Admin.php:818 #, php-format msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:821 +#: ../../Zotlabs/Module/Admin.php:834 msgid "No failed updates." msgstr "" -#: ../../Zotlabs/Module/Admin.php:825 +#: ../../Zotlabs/Module/Admin.php:838 msgid "Failed Updates" msgstr "" -#: ../../Zotlabs/Module/Admin.php:827 +#: ../../Zotlabs/Module/Admin.php:840 msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:828 +#: ../../Zotlabs/Module/Admin.php:841 msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../Zotlabs/Module/Admin.php:859 +#: ../../Zotlabs/Module/Admin.php:872 msgid "Queue Statistics" msgstr "" -#: ../../Zotlabs/Module/Admin.php:860 +#: ../../Zotlabs/Module/Admin.php:873 msgid "Total Entries" msgstr "" -#: ../../Zotlabs/Module/Admin.php:861 +#: ../../Zotlabs/Module/Admin.php:874 msgid "Priority" msgstr "" -#: ../../Zotlabs/Module/Admin.php:862 +#: ../../Zotlabs/Module/Admin.php:875 msgid "Destination URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:863 +#: ../../Zotlabs/Module/Admin.php:876 msgid "Mark hub permanently offline" msgstr "" -#: ../../Zotlabs/Module/Admin.php:864 +#: ../../Zotlabs/Module/Admin.php:877 msgid "Empty queue for this hub" msgstr "" -#: ../../Zotlabs/Module/Admin.php:865 +#: ../../Zotlabs/Module/Admin.php:878 msgid "Last known contact" msgstr "" -#: ../../Zotlabs/Module/Admin.php:901 +#: ../../Zotlabs/Module/Admin.php:914 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:908 +#: ../../Zotlabs/Module/Admin.php:921 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:944 +#: ../../Zotlabs/Module/Admin.php:957 msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Admin.php:955 +#: ../../Zotlabs/Module/Admin.php:968 #, php-format msgid "Account '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Admin.php:963 +#: ../../Zotlabs/Module/Admin.php:976 #, php-format msgid "Account '%s' blocked" msgstr "" -#: ../../Zotlabs/Module/Admin.php:971 +#: ../../Zotlabs/Module/Admin.php:984 #, php-format msgid "Account '%s' unblocked" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 #: ../../include/widgets.php:1491 msgid "Accounts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 msgid "select all" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1034 +#: ../../Zotlabs/Module/Admin.php:1047 msgid "Registrations waiting for confirm" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1035 +#: ../../Zotlabs/Module/Admin.php:1048 msgid "Request date" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 #: ../../include/network.php:2208 msgid "Email" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1036 +#: ../../Zotlabs/Module/Admin.php:1049 msgid "No registrations." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1038 +#: ../../Zotlabs/Module/Admin.php:1051 msgid "Deny" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 msgid "All Channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1049 +#: ../../Zotlabs/Module/Admin.php:1062 msgid "Register date" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1050 +#: ../../Zotlabs/Module/Admin.php:1063 msgid "Last login" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1051 +#: ../../Zotlabs/Module/Admin.php:1064 msgid "Expires" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1065 msgid "Service Class" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1054 +#: ../../Zotlabs/Module/Admin.php:1067 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted " "on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1055 +#: ../../Zotlabs/Module/Admin.php:1068 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1091 +#: ../../Zotlabs/Module/Admin.php:1104 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:1100 +#: ../../Zotlabs/Module/Admin.php:1113 #, php-format msgid "%s channel code allowed/disallowed" msgid_plural "%s channels code allowed/disallowed" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:1106 +#: ../../Zotlabs/Module/Admin.php:1119 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:1126 +#: ../../Zotlabs/Module/Admin.php:1139 msgid "Channel not found" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1136 +#: ../../Zotlabs/Module/Admin.php:1149 #, php-format msgid "Channel '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Admin.php:1161 #, php-format msgid "Channel '%s' censored" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Admin.php:1161 #, php-format msgid "Channel '%s' uncensored" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1159 +#: ../../Zotlabs/Module/Admin.php:1172 #, php-format msgid "Channel '%s' code allowed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1159 +#: ../../Zotlabs/Module/Admin.php:1172 #, php-format msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1492 +#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1492 msgid "Channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1214 +#: ../../Zotlabs/Module/Admin.php:1227 msgid "Censor" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1215 +#: ../../Zotlabs/Module/Admin.php:1228 msgid "Uncensor" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1216 +#: ../../Zotlabs/Module/Admin.php:1229 msgid "Allow Code" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1217 +#: ../../Zotlabs/Module/Admin.php:1230 msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1641 +#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1644 msgid "Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1235 msgid "UID" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Admin.php:1239 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " "channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1227 +#: ../../Zotlabs/Module/Admin.php:1240 msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1284 +#: ../../Zotlabs/Module/Admin.php:1297 #, php-format msgid "Plugin %s disabled." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1288 +#: ../../Zotlabs/Module/Admin.php:1301 #, php-format msgid "Plugin %s enabled." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1599 msgid "Disable" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +#: ../../Zotlabs/Module/Admin.php:1314 ../../Zotlabs/Module/Admin.php:1601 msgid "Enable" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../Zotlabs/Module/Admin.php:1343 ../../Zotlabs/Module/Admin.php:1434 #: ../../include/widgets.php:1495 msgid "Plugins" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +#: ../../Zotlabs/Module/Admin.php:1344 ../../Zotlabs/Module/Admin.php:1628 msgid "Toggle" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1629 #: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 #: ../../include/nav.php:212 msgid "Settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1638 msgid "Author: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1639 msgid "Maintainer: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1341 +#: ../../Zotlabs/Module/Admin.php:1354 msgid "Minimum project version: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1342 +#: ../../Zotlabs/Module/Admin.php:1355 msgid "Maximum project version: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1343 +#: ../../Zotlabs/Module/Admin.php:1356 msgid "Minimum PHP version: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1344 +#: ../../Zotlabs/Module/Admin.php:1357 +msgid "Compatible Server Roles: " +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1358 msgid "Requires: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +#: ../../Zotlabs/Module/Admin.php:1359 ../../Zotlabs/Module/Admin.php:1439 msgid "Disabled - version incompatibility" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1394 +#: ../../Zotlabs/Module/Admin.php:1408 msgid "Enter the public git repository URL of the plugin repo." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1395 +#: ../../Zotlabs/Module/Admin.php:1409 msgid "Plugin repo git URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1396 +#: ../../Zotlabs/Module/Admin.php:1410 msgid "Custom repo name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1396 +#: ../../Zotlabs/Module/Admin.php:1410 msgid "(optional)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1397 +#: ../../Zotlabs/Module/Admin.php:1411 msgid "Download Plugin Repo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1404 +#: ../../Zotlabs/Module/Admin.php:1418 msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1419 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1427 +#: ../../Zotlabs/Module/Admin.php:1441 msgid "Manage Repos" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1428 +#: ../../Zotlabs/Module/Admin.php:1442 msgid "Installed Plugin Repositories" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1429 +#: ../../Zotlabs/Module/Admin.php:1443 msgid "Install a New Plugin Repository" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:708 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1436 +#: ../../Zotlabs/Module/Admin.php:1450 msgid "Switch branch" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1437 ../../Zotlabs/Module/Photos.php:1000 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1550 +#: ../../Zotlabs/Module/Admin.php:1564 msgid "No themes found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1606 +#: ../../Zotlabs/Module/Admin.php:1620 msgid "Screenshot" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../Zotlabs/Module/Admin.php:1627 ../../Zotlabs/Module/Admin.php:1661 #: ../../include/widgets.php:1496 msgid "Themes" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1652 +#: ../../Zotlabs/Module/Admin.php:1666 msgid "[Experimental]" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1653 +#: ../../Zotlabs/Module/Admin.php:1667 msgid "[Unsupported]" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1677 +#: ../../Zotlabs/Module/Admin.php:1691 msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1517 +#: ../../Zotlabs/Module/Admin.php:1746 ../../include/widgets.php:1517 #: ../../include/widgets.php:1527 msgid "Logs" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1734 +#: ../../Zotlabs/Module/Admin.php:1748 msgid "Clear" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1740 +#: ../../Zotlabs/Module/Admin.php:1754 msgid "Debugging" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:1755 msgid "Log file" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:1755 msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1742 +#: ../../Zotlabs/Module/Admin.php:1756 msgid "Log level" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2028 +#: ../../Zotlabs/Module/Admin.php:2042 msgid "New Profile Field" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 msgid "Field nickname" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 msgid "System name of field" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +#: ../../Zotlabs/Module/Admin.php:2044 ../../Zotlabs/Module/Admin.php:2064 msgid "Input type" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 msgid "Field Name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 msgid "Label on profile pages" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 msgid "Help text" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 msgid "Additional info (optional)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2042 +#: ../../Zotlabs/Module/Admin.php:2056 msgid "Field definition not found" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2048 +#: ../../Zotlabs/Module/Admin.php:2062 msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1498 +#: ../../Zotlabs/Module/Admin.php:2120 ../../include/widgets.php:1498 msgid "Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2107 +#: ../../Zotlabs/Module/Admin.php:2121 msgid "Basic Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2108 +#: ../../Zotlabs/Module/Admin.php:2122 msgid "Advanced Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2108 +#: ../../Zotlabs/Module/Admin.php:2122 msgid "(In addition to basic fields)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2110 +#: ../../Zotlabs/Module/Admin.php:2124 msgid "All available fields" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2111 +#: ../../Zotlabs/Module/Admin.php:2125 msgid "Custom Fields" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2115 +#: ../../Zotlabs/Module/Admin.php:2129 msgid "Create Custom Field" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/Lostpass.php:44 #, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:67 msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 +msgid "Password Reset" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Lostpass.php:95 msgid "" -"or import an existing channel from another location." +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" msgstr "" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" msgstr "" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 -msgid "Mark all system notifications seen" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:964 -msgid "Poke" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." msgstr "" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." msgstr "" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" msgstr "" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." msgstr "" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." msgstr "" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." msgstr "" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 -msgid "Profile" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" msgstr "" -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" msgstr "" -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." msgstr "" -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" msgstr "" -#: ../../Zotlabs/Module/Api.php:83 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1559 +msgid "Personal" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 -msgid "Blocks" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 -#: ../../include/conversation.php:1226 -msgid "Share" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 -msgid "Layouts" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1351 -msgid "Public Hubs" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:963 -msgid "Ratings" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" msgstr "" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" msgstr "" -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 -msgid "Import" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" msgstr "" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" msgstr "" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" msgstr "" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:167 -msgid "Apps" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 +#: ../../include/nav.php:90 +msgid "Edit Profiles" msgstr "" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." msgstr "" -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" msgstr "" -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" msgstr "" -#: ../../Zotlabs/Module/Network.php:216 -msgid "Privacy group is empty" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../Zotlabs/Module/Network.php:225 -msgid "Privacy group: " +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" msgstr "" -#: ../../Zotlabs/Module/Network.php:251 -msgid "Invalid connection." +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" msgstr "" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import selected" msgstr "" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" +#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/conversation.php:1718 ../../include/nav.php:108 +msgid "Webpages" msgstr "" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +msgid "Actions" msgstr "" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +msgid "Page Link" msgstr "" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../Zotlabs/Module/Webpages.php:227 +msgid "Page Title" msgstr "" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../Zotlabs/Module/Webpages.php:258 +msgid "Invalid file type." msgstr "" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../Zotlabs/Module/Webpages.php:270 +msgid "Error opening zip file" msgstr "" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" +#: ../../Zotlabs/Module/Webpages.php:281 +msgid "Invalid folder path." msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "No webpage elements detected." msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" +#: ../../Zotlabs/Module/Webpages.php:382 +msgid "Import complete." msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." msgstr "" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." msgstr "" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." msgstr "" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." msgstr "" -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." msgstr "" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" msgstr "" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" msgstr "" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" msgstr "" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" msgstr "" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" msgstr "" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" msgstr "" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" msgstr "" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" msgstr "" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" msgstr "" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Album name could not be decoded" +#: ../../Zotlabs/Module/Events.php:463 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." msgstr "" -#: ../../Zotlabs/Module/Photos.php:745 -msgid "Contact Photos" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" msgstr "" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Newest First" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" msgstr "" -#: ../../Zotlabs/Module/Photos.php:770 -msgid "Show Oldest First" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 -msgid "View Photo" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 +msgid "Permission settings" msgstr "" -#: ../../Zotlabs/Module/Photos.php:825 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 -msgid "Edit Album" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" msgstr "" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Permission denied. Access to this item may be restricted." +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" msgstr "" -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Photo not available" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:932 -msgid "Use as profile photo" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:933 -msgid "Use as cover photo" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1716 +msgid "Link to Source" msgstr "" -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Private Photo" +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" msgstr "" -#: ../../Zotlabs/Module/Photos.php:955 -msgid "View Full Size" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Edit photo" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CW (right)" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "Rotate CCW (left)" +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I like this (toggle)" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I don't like this (toggle)" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../include/conversation.php:743 -msgid "Please wait" +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:708 -msgid "This is you" +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 -msgid "Comment" +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available memory" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1753 -msgid "View all" +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/conversation.php:1777 ../../include/taxonomy.php:403 -#: ../../include/channel.php:1182 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Likes" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Dislikes" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 -#: ../../include/acl_selectors.php:188 -msgid "Close" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" msgstr "" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 +msgid "Mark all system notifications seen" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:797 -msgid "Remove Account" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." msgstr "" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." msgstr "" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1323 -msgid "Remove Channel" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Pconfig.php:49 msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can " -"be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for " -"this download to begin." +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:63 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" +msgid "Version %s" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import Webpage Elements" +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:54 -msgid "Import selected" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " msgstr "" -#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/conversation.php:1715 ../../include/nav.php:108 -msgid "Webpages" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " msgstr "" -#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 -msgid "Actions" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " msgstr "" -#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 -msgid "Page Link" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:227 -msgid "Page Title" +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:258 -msgid "Invalid file type." +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:270 -msgid "Error opening zip file" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:281 -msgid "Invalid folder path." +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:308 -msgid "No webpage elements detected." +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:382 -msgid "Import complete." +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 +msgid "Blocks" msgstr "" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 +msgid "Layouts" msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" msgstr "" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" msgstr "" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" msgstr "" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation instructions." +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " msgstr "" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " msgstr "" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 +msgid "Import" msgstr "" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." msgstr "" -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" msgstr "" -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." msgstr "" -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." msgstr "" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." msgstr "" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" msgstr "" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." msgstr "" -#: ../../Zotlabs/Module/Register.php:253 -msgid "Membership on this site is by invitation only." +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." msgstr "" -#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 -#: ../../boot.php:1695 -msgid "Register" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" msgstr "" -#: ../../Zotlabs/Module/Register.php:266 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../Zotlabs/Module/Rpost.php:135 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1239 +msgid "Attach file" msgstr "" -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" msgstr "" -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1284 +msgid "Set expiration date" msgstr "" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 +#: ../../include/conversation.php:1289 +msgid "Encrypt text" msgstr "" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" msgstr "" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" msgstr "" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" msgstr "" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:74 -#: ../../include/widgets.php:639 -msgid "Channel Sources" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." msgstr "" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" msgstr "" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." msgstr "" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -#: ../../Zotlabs/Module/Settings.php:688 -msgid "Optional" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/conversation.php:955 ../../include/nav.php:88 +msgid "View Profile" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:120 +#: ../../Zotlabs/Module/Connedit.php:557 #, php-format -msgid "%1$s stopped following %2$s's %3$s" +msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1953 -msgid "comment" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 +msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 +msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 +msgid "Acquaintances" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" msgstr "" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" msgstr "" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" msgstr "" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:623 +msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3964 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:312 -msgid "Not valid email." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Settings.php:315 -msgid "Protected email address. Cannot change to that email." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Settings.php:324 -msgid "System failure storing new email. Please try again." +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" msgstr "" -#: ../../Zotlabs/Module/Settings.php:341 -msgid "Password verification failed." +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:348 -msgid "Passwords do not match. Password unchanged." +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../Zotlabs/Module/Settings.php:352 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Settings.php:366 -msgid "Password changed." +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Settings.php:368 -msgid "Password update failed. Please try again." +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" msgstr "" -#: ../../Zotlabs/Module/Settings.php:617 -msgid "Settings updated." +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" msgstr "" -#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 -#: ../../Zotlabs/Module/Settings.php:743 -msgid "Add application" +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Settings.php:684 -msgid "Name of application" +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 -msgid "Consumer Key" +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 -msgid "Consumer Secret" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" msgstr "" -#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 -msgid "Redirect" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Settings.php:687 +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format msgid "" -"Redirect URI - leave blank unless your application specifically requires this" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 -msgid "Icon url" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Application not found." +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Settings.php:742 -msgid "Connected Apps" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:746 -msgid "Client key starts with" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:167 +msgid "Apps" msgstr "" -#: ../../Zotlabs/Module/Settings.php:747 -msgid "No name" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Settings.php:748 -msgid "Remove authorization" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Settings.php:761 -msgid "No feature settings configured" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:768 -msgid "Feature/Addon Settings" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../Zotlabs/Module/Settings.php:791 -msgid "Account Settings" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:792 -msgid "Current Password" +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:793 -msgid "Enter New Password" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../Zotlabs/Module/Settings.php:794 -msgid "Confirm New Password" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:794 -msgid "Leave password fields blank unless changing" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../Zotlabs/Module/Settings.php:796 -#: ../../Zotlabs/Module/Settings.php:1236 -msgid "Email Address:" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" msgstr "" -#: ../../Zotlabs/Module/Settings.php:798 -msgid "Remove this account including all its channels" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" msgstr "" -#: ../../Zotlabs/Module/Settings.php:832 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" msgstr "" -#: ../../Zotlabs/Module/Settings.php:834 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 -msgid "Guest Access Tokens" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:876 -msgid "Login Name" +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" msgstr "" -#: ../../Zotlabs/Module/Settings.php:877 -msgid "Login Password" +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:878 -msgid "Expires (yyyy-mm-dd)" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" msgstr "" -#: ../../Zotlabs/Module/Settings.php:910 -msgid "Additional Features" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." msgstr "" -#: ../../Zotlabs/Module/Settings.php:934 -msgid "Connector Settings" +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Settings.php:981 -msgid "No special theme for mobile devices" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../Zotlabs/Module/Settings.php:984 -#, php-format -msgid "%s - (Experimental)" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " msgstr "" -#: ../../Zotlabs/Module/Settings.php:1035 -msgid "Display Settings" +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " msgstr "" -#: ../../Zotlabs/Module/Settings.php:1036 -msgid "Theme Settings" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1037 -msgid "Custom Theme Settings" +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1038 -msgid "Content Settings" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1044 -msgid "Display Theme:" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1045 -msgid "Select scheme" +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1047 -msgid "Mobile Theme:" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Preload images before rendering the page" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " msgstr "" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1049 -msgid "Enable user zoom on mobile devices" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Update browser every xx seconds" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Minimum of 10 seconds, no maximum" +#: ../../Zotlabs/Module/Uexport.php:57 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Maximum number of conversations to load at any time:" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Maximum of 100 items" +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1052 -msgid "Show emoticons (smilies) as images" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Link post titles to source" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1054 -msgid "System Page Layout Editor - (advanced)" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "Use blog/list mode on channel page" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1057 -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "(comments displayed separately)" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Use blog/list mode on grid page" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Channel page max height of content (in pixels)" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:138 +msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1059 -#: ../../Zotlabs/Module/Settings.php:1060 -msgid "click to expand content exceeding this height" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1060 -msgid "Grid page max height of content (in pixels)" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Nobody except yourself" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "Only those you specifically allow" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "Approved connections" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "Any connections" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1094 -msgid "Anybody on this website" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1095 -msgid "Anybody in this network" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1096 -msgid "Anybody authenticated" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1097 -msgid "Anybody on the internet" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1171 -msgid "Publish your default profile in the network directory" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1176 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Your channel address is" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1227 -msgid "Channel Settings" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1234 -msgid "Basic Settings" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 -msgid "Full Name:" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1237 -msgid "Your Timezone:" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Default Post Location:" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Geographical location to display on your posts" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1239 -msgid "Use Browser Location:" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "Adult Content" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1243 -msgid "Security and Privacy Settings" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1246 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "Hide my online presence" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "Prevents displaying in your profile that you are online" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1250 -msgid "Simple Privacy Settings:" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1251 -msgid "" -"Very Public - extremely permissive (should be used with caution)" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1252 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1253 -msgid "Private - default private, never open or public" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1254 -msgid "Blocked - default blocked to/from everybody" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/conversation.php:1728 ../../include/conversation.php:1731 +#: ../../include/features.php:57 ../../include/nav.php:110 +msgid "Wiki" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "Allow others to tag your posts" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1256 +#: ../../Zotlabs/Module/Wiki.php:100 msgid "" -"Often used by the community to retro-actively flag inappropriate content" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be " +"saved*.\"" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1258 -msgid "Advanced Privacy Settings" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "Expire other channel content after this many days" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "0 or blank to use the website limit." +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1260 -#, php-format -msgid "This website expires after %d days." +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "This website does not expire imported content." +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "The website limit takes precedence if lower than your limit." +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Maximum Friend Requests/Day:" +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 +msgid "Embed an image from your albums" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "May reduce spam activity" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 +#: ../../include/conversation.php:1291 +msgid "OK" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "Default Post and Publish Permissions" +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "Use my default audience setting for the type of object published" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1271 -msgid "Channel permissions category:" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Maximum private messages per day from unknown people:" +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Useful to reduce spamming" +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Notification Settings" +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1281 -msgid "By default post a status message when:" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "accepting a friend request" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1283 -msgid "joining a forum/community" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1284 -msgid "making an interesting profile change" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1285 -msgid "Send a notification email when:" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:639 +#: ../../include/features.php:71 +msgid "Channel Sources" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "You receive a connection request" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1287 -msgid "Your connections are confirmed" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1288 -msgid "Someone writes on your profile wall" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1289 -msgid "Someone writes a followup comment" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1290 -msgid "You receive a private message" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1291 -msgid "You receive a friend suggestion" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1292 -msgid "You are tagged in a post" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1293 -msgid "You are poked/prodded/etc. in a post" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1296 -msgid "Show visual notifications including:" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1298 -msgid "Unseen grid activity" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1299 -msgid "Unseen channel activity" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1300 -msgid "Unseen private messages" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1300 -#: ../../Zotlabs/Module/Settings.php:1305 -#: ../../Zotlabs/Module/Settings.php:1306 -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "Recommended" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1301 -msgid "Upcoming events" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1302 -msgid "Events today" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Upcoming birthdays" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Not available in all themes" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1304 -msgid "System (personal) notifications" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 +#: ../../include/conversation.php:150 +msgid "comment" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1305 -msgid "System info messages" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1306 -msgid "System critical alerts" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "New connections" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1308 -msgid "System Registrations" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Settings.php:1309 -msgid "" -"Also show new wall posts, private messages and connections under Notices" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Notify me of events this many days in advance" +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Must be greater than 0" +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1313 -msgid "Advanced Account/Page Type Settings" +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1314 -msgid "Change the behaviour of this account for special situations" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1317 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1318 -msgid "Miscellaneous Settings" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1319 -msgid "Default photo upload folder" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1319 -#: ../../Zotlabs/Module/Settings.php:1320 -msgid "%Y - current year, %m - current month" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1320 -msgid "Default file upload folder" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1322 -msgid "Personal menu to display in your channel pages" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1324 -msgid "Remove this channel." +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1325 -msgid "Firefox Share $Projectname provider" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1326 -msgid "Start calendar week on monday" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Chat.php:249 #, php-format -msgid "Visit %s's profile [%s]" +msgid "%1$s's Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" msgstr "" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" msgstr "" #: ../../Zotlabs/Module/Xchan.php:10 @@ -6737,12 +6744,12 @@ msgstr "" msgid "Remote Diagnostics" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:93 +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 msgid "Suggest Channels" msgstr "" #: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 -#: ../../boot.php:1713 +#: ../../boot.php:1738 msgid "Login" msgstr "" @@ -6754,8 +6761,8 @@ msgstr "" msgid "Channel Home" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1679 -#: ../../include/conversation.php:1682 ../../include/nav.php:205 +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1682 +#: ../../include/conversation.php:1685 ../../include/nav.php:205 msgid "Events" msgstr "" @@ -6813,7 +6820,7 @@ msgid "Visible to your default audience" msgstr "" #: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:170 +#: ../../include/acl_selectors.php:165 msgid "Only me" msgstr "" @@ -7014,23 +7021,23 @@ msgstr "" msgid "%s show all" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1233 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1234 msgid "Bold" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1234 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1235 msgid "Italic" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1235 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1236 msgid "Underline" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1236 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1237 msgid "Quote" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1237 +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1238 msgid "Code" msgstr "" @@ -7054,2636 +7061,2520 @@ msgstr "" msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../include/dba/dba_driver.php:171 +#: ../../include/dba/dba_driver.php:173 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/auth.php:148 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:275 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:286 -msgid "Login failed." -msgstr "" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "" - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "" - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:619 ../../include/wiki.php:525 -msgid "Different viewers will see this text differently" -msgstr "" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "" - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "" - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "" - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "" - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "" - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "" - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "" - -#: ../../include/api.php:1330 -msgid "Public Timeline" -msgstr "" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:851 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:855 ../../include/nav.php:251 -msgid "Loading..." -msgstr "" - -#: ../../include/conversation.php:856 -msgid "Delete Selected Items" +#: ../../include/network.php:704 +msgid "view full size" msgstr "" -#: ../../include/conversation.php:952 -msgid "View Source" +#: ../../include/network.php:1935 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" msgstr "" -#: ../../include/conversation.php:953 -msgid "Follow Thread" +#: ../../include/network.php:1949 +msgid "No Subject" msgstr "" -#: ../../include/conversation.php:954 -msgid "Unfollow Thread" +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" msgstr "" -#: ../../include/conversation.php:959 -msgid "Activity/Posts" +#: ../../include/network.php:2205 +msgid "OStatus" msgstr "" -#: ../../include/conversation.php:961 -msgid "Edit Connection" +#: ../../include/network.php:2206 +msgid "GNU-Social" msgstr "" -#: ../../include/conversation.php:962 -msgid "Message" +#: ../../include/network.php:2207 +msgid "RSS/Atom" msgstr "" -#: ../../include/conversation.php:1079 -#, php-format -msgid "%s likes this." +#: ../../include/network.php:2209 +msgid "Diaspora" msgstr "" -#: ../../include/conversation.php:1079 -#, php-format -msgid "%s doesn't like this." +#: ../../include/network.php:2210 +msgid "Facebook" msgstr "" -#: ../../include/conversation.php:1083 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1085 -#, 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:1091 -msgid "and" +#: ../../include/network.php:2211 +msgid "Zot" msgstr "" -#: ../../include/conversation.php:1094 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1095 -#, php-format -msgid "%s like this." +#: ../../include/network.php:2212 +msgid "LinkedIn" msgstr "" -#: ../../include/conversation.php:1095 -#, php-format -msgid "%s don't like this." +#: ../../include/network.php:2213 +msgid "XMPP/IM" msgstr "" -#: ../../include/conversation.php:1138 -msgid "Set your location" +#: ../../include/network.php:2214 +msgid "MySpace" msgstr "" -#: ../../include/conversation.php:1139 -msgid "Clear browser location" +#: ../../include/oembed.php:340 +msgid "Embedded content" msgstr "" -#: ../../include/conversation.php:1187 -msgid "Tag term:" +#: ../../include/oembed.php:349 +msgid "Embedding disabled" msgstr "" -#: ../../include/conversation.php:1188 -msgid "Where are you right now?" +#: ../../include/permissions.php:29 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/conversation.php:1197 -msgid "Comments enabled" +#: ../../include/permissions.php:33 +msgid "Can view my webpages" msgstr "" -#: ../../include/conversation.php:1198 -msgid "Comments disabled" +#: ../../include/permissions.php:37 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/conversation.php:1228 -msgid "Page link name" +#: ../../include/permissions.php:40 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/conversation.php:1231 -msgid "Post as" +#: ../../include/permissions.php:40 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/conversation.php:1245 -msgid "Toggle voting" +#: ../../include/permissions.php:42 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/conversation.php:1248 -msgid "Disable comments" +#: ../../include/permissions.php:42 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/conversation.php:1249 -msgid "Toggle comments" +#: ../../include/permissions.php:43 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/conversation.php:1257 -msgid "Categories (optional, comma-separated list)" +#: ../../include/permissions.php:44 +msgid "Can write to my file storage and photos" msgstr "" -#: ../../include/conversation.php:1284 -msgid "Set publish date" +#: ../../include/permissions.php:45 +msgid "Can edit my webpages" msgstr "" -#: ../../include/conversation.php:1533 -msgid "Discover" +#: ../../include/permissions.php:47 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/conversation.php:1536 -msgid "Imported public streams" +#: ../../include/permissions.php:49 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/conversation.php:1541 -msgid "Commented Order" +#: ../../include/permissions.php:49 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/conversation.php:1544 -msgid "Sort by Comment Date" +#: ../../include/items.php:899 ../../include/items.php:944 +msgid "(Unknown)" msgstr "" -#: ../../include/conversation.php:1548 -msgid "Posted Order" +#: ../../include/items.php:1143 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/conversation.php:1551 -msgid "Sort by Post Date" +#: ../../include/items.php:1145 +msgid "Visible to you only." msgstr "" -#: ../../include/conversation.php:1559 -msgid "Posts that mention or involve you" +#: ../../include/items.php:1147 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/conversation.php:1568 -msgid "Activity Stream - by date" +#: ../../include/items.php:1149 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/conversation.php:1574 -msgid "Starred" +#: ../../include/items.php:1151 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/conversation.php:1577 -msgid "Favourite Posts" +#: ../../include/items.php:1153 +msgid "Visible to all connections." msgstr "" -#: ../../include/conversation.php:1584 -msgid "Spam" +#: ../../include/items.php:1155 +msgid "Visible to approved connections." msgstr "" -#: ../../include/conversation.php:1587 -msgid "Posts flagged as SPAM" +#: ../../include/items.php:1157 +msgid "Visible to specific connections." msgstr "" -#: ../../include/conversation.php:1644 -msgid "Status Messages and Posts" +#: ../../include/items.php:3947 +msgid "Privacy group is empty." msgstr "" -#: ../../include/conversation.php:1653 -msgid "About" +#: ../../include/items.php:3954 +#, php-format +msgid "Privacy group: %s" msgstr "" -#: ../../include/conversation.php:1656 -msgid "Profile Details" +#: ../../include/items.php:3966 +msgid "Connection not found." msgstr "" -#: ../../include/conversation.php:1665 ../../include/photos.php:506 -msgid "Photo Albums" +#: ../../include/items.php:4319 +msgid "profile photo" msgstr "" -#: ../../include/conversation.php:1672 -msgid "Files and Storage" +#: ../../include/text.php:404 +msgid "prev" msgstr "" -#: ../../include/conversation.php:1692 ../../include/conversation.php:1695 -#: ../../include/widgets.php:850 -msgid "Chatrooms" +#: ../../include/text.php:406 +msgid "first" msgstr "" -#: ../../include/conversation.php:1705 ../../include/nav.php:104 -msgid "Bookmarks" +#: ../../include/text.php:435 +msgid "last" msgstr "" -#: ../../include/conversation.php:1708 -msgid "Saved Bookmarks" +#: ../../include/text.php:438 +msgid "next" msgstr "" -#: ../../include/conversation.php:1718 -msgid "Manage Webpages" +#: ../../include/text.php:448 +msgid "older" msgstr "" -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1786 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1789 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1792 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1795 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1798 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:450 +msgid "newer" +msgstr "" -#: ../../include/features.php:50 -msgid "General Features" +#: ../../include/text.php:843 +msgid "No connections" msgstr "" -#: ../../include/features.php:52 -msgid "Content Expiration" +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" msgstr "" -#: ../../include/features.php:52 -msgid "Remove posts/comments and/or private messages at a future time" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" msgstr "" -#: ../../include/features.php:53 -msgid "Multiple Profiles" +#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/conversation.php:243 +msgid "poked" msgstr "" -#: ../../include/features.php:53 -msgid "Ability to create multiple profiles" +#: ../../include/text.php:1019 +msgid "ping" msgstr "" -#: ../../include/features.php:54 -msgid "Advanced Profiles" +#: ../../include/text.php:1019 +msgid "pinged" msgstr "" -#: ../../include/features.php:54 -msgid "Additional profile sections and selections" +#: ../../include/text.php:1020 +msgid "prod" msgstr "" -#: ../../include/features.php:55 -msgid "Profile Import/Export" +#: ../../include/text.php:1020 +msgid "prodded" msgstr "" -#: ../../include/features.php:55 -msgid "Save and load profile details across sites/channels" +#: ../../include/text.php:1021 +msgid "slap" msgstr "" -#: ../../include/features.php:56 -msgid "Web Pages" +#: ../../include/text.php:1021 +msgid "slapped" msgstr "" -#: ../../include/features.php:56 -msgid "Provide managed web pages on your channel" +#: ../../include/text.php:1022 +msgid "finger" msgstr "" -#: ../../include/features.php:57 -msgid "Provide a wiki for your channel" +#: ../../include/text.php:1022 +msgid "fingered" msgstr "" -#: ../../include/features.php:58 -msgid "Hide Rating" +#: ../../include/text.php:1023 +msgid "rebuff" msgstr "" -#: ../../include/features.php:58 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." +#: ../../include/text.php:1023 +msgid "rebuffed" msgstr "" -#: ../../include/features.php:59 -msgid "Private Notes" +#: ../../include/text.php:1035 +msgid "happy" msgstr "" -#: ../../include/features.php:59 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" +#: ../../include/text.php:1036 +msgid "sad" msgstr "" -#: ../../include/features.php:60 -msgid "Navigation Channel Select" +#: ../../include/text.php:1037 +msgid "mellow" msgstr "" -#: ../../include/features.php:60 -msgid "Change channels directly from within the navigation dropdown menu" +#: ../../include/text.php:1038 +msgid "tired" msgstr "" -#: ../../include/features.php:61 -msgid "Photo Location" +#: ../../include/text.php:1039 +msgid "perky" msgstr "" -#: ../../include/features.php:61 -msgid "If location data is available on uploaded photos, link this to a map." +#: ../../include/text.php:1040 +msgid "angry" msgstr "" -#: ../../include/features.php:62 -msgid "Access Controlled Chatrooms" +#: ../../include/text.php:1041 +msgid "stupefied" msgstr "" -#: ../../include/features.php:62 -msgid "Provide chatrooms and chat services with access control." +#: ../../include/text.php:1042 +msgid "puzzled" msgstr "" -#: ../../include/features.php:63 -msgid "Smart Birthdays" +#: ../../include/text.php:1043 +msgid "interested" msgstr "" -#: ../../include/features.php:63 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." +#: ../../include/text.php:1044 +msgid "bitter" msgstr "" -#: ../../include/features.php:64 -msgid "Expert Mode" +#: ../../include/text.php:1045 +msgid "cheerful" msgstr "" -#: ../../include/features.php:64 -msgid "Enable Expert Mode to provide advanced configuration options" +#: ../../include/text.php:1046 +msgid "alive" msgstr "" -#: ../../include/features.php:65 -msgid "Premium Channel" +#: ../../include/text.php:1047 +msgid "annoyed" msgstr "" -#: ../../include/features.php:65 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" +#: ../../include/text.php:1048 +msgid "anxious" msgstr "" -#: ../../include/features.php:70 -msgid "Post Composition Features" +#: ../../include/text.php:1049 +msgid "cranky" msgstr "" -#: ../../include/features.php:73 -msgid "Large Photos" +#: ../../include/text.php:1050 +msgid "disturbed" msgstr "" -#: ../../include/features.php:73 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" +#: ../../include/text.php:1051 +msgid "frustrated" msgstr "" -#: ../../include/features.php:74 -msgid "Automatically import channel content from other channels or feeds" +#: ../../include/text.php:1052 +msgid "depressed" msgstr "" -#: ../../include/features.php:75 -msgid "Even More Encryption" +#: ../../include/text.php:1053 +msgid "motivated" msgstr "" -#: ../../include/features.php:75 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" +#: ../../include/text.php:1054 +msgid "relaxed" msgstr "" -#: ../../include/features.php:76 -msgid "Enable Voting Tools" +#: ../../include/text.php:1055 +msgid "surprised" msgstr "" -#: ../../include/features.php:76 -msgid "Provide a class of post which others can vote on" +#: ../../include/text.php:1239 ../../include/js_strings.php:70 +msgid "Monday" msgstr "" -#: ../../include/features.php:77 -msgid "Disable Comments" +#: ../../include/text.php:1239 ../../include/js_strings.php:71 +msgid "Tuesday" msgstr "" -#: ../../include/features.php:77 -msgid "Provide the option to disable comments for a post" +#: ../../include/text.php:1239 ../../include/js_strings.php:72 +msgid "Wednesday" msgstr "" -#: ../../include/features.php:78 -msgid "Delayed Posting" +#: ../../include/text.php:1239 ../../include/js_strings.php:73 +msgid "Thursday" msgstr "" -#: ../../include/features.php:78 -msgid "Allow posts to be published at a later date" +#: ../../include/text.php:1239 ../../include/js_strings.php:74 +msgid "Friday" msgstr "" -#: ../../include/features.php:79 -msgid "Suppress Duplicate Posts/Comments" +#: ../../include/text.php:1239 ../../include/js_strings.php:75 +msgid "Saturday" msgstr "" -#: ../../include/features.php:79 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." +#: ../../include/text.php:1239 ../../include/js_strings.php:69 +msgid "Sunday" msgstr "" -#: ../../include/features.php:85 -msgid "Network and Stream Filtering" +#: ../../include/text.php:1243 ../../include/js_strings.php:45 +msgid "January" msgstr "" -#: ../../include/features.php:86 -msgid "Search by Date" +#: ../../include/text.php:1243 ../../include/js_strings.php:46 +msgid "February" msgstr "" -#: ../../include/features.php:86 -msgid "Ability to select posts by date ranges" +#: ../../include/text.php:1243 ../../include/js_strings.php:47 +msgid "March" msgstr "" -#: ../../include/features.php:87 ../../include/group.php:311 -msgid "Privacy Groups" +#: ../../include/text.php:1243 ../../include/js_strings.php:48 +msgid "April" msgstr "" -#: ../../include/features.php:87 -msgid "Enable management and selection of privacy groups" +#: ../../include/text.php:1243 +msgid "May" msgstr "" -#: ../../include/features.php:88 ../../include/widgets.php:281 -msgid "Saved Searches" +#: ../../include/text.php:1243 ../../include/js_strings.php:50 +msgid "June" msgstr "" -#: ../../include/features.php:88 -msgid "Save search terms for re-use" +#: ../../include/text.php:1243 ../../include/js_strings.php:51 +msgid "July" msgstr "" -#: ../../include/features.php:89 -msgid "Network Personal Tab" +#: ../../include/text.php:1243 ../../include/js_strings.php:52 +msgid "August" msgstr "" -#: ../../include/features.php:89 -msgid "Enable tab to display only Network posts that you've interacted on" +#: ../../include/text.php:1243 ../../include/js_strings.php:53 +msgid "September" msgstr "" -#: ../../include/features.php:90 -msgid "Network New Tab" +#: ../../include/text.php:1243 ../../include/js_strings.php:54 +msgid "October" msgstr "" -#: ../../include/features.php:90 -msgid "Enable tab to display all new Network activity" +#: ../../include/text.php:1243 ../../include/js_strings.php:55 +msgid "November" msgstr "" -#: ../../include/features.php:91 -msgid "Affinity Tool" +#: ../../include/text.php:1243 ../../include/js_strings.php:56 +msgid "December" msgstr "" -#: ../../include/features.php:91 -msgid "Filter stream activity by depth of relationships" +#: ../../include/text.php:1320 ../../include/text.php:1324 +msgid "Unknown Attachment" msgstr "" -#: ../../include/features.php:92 -msgid "Connection Filtering" +#: ../../include/text.php:1326 +msgid "unknown" msgstr "" -#: ../../include/features.php:92 -msgid "Filter incoming posts from connections based on keywords/content" +#: ../../include/text.php:1362 +msgid "remove category" msgstr "" -#: ../../include/features.php:93 -msgid "Show channel suggestions" +#: ../../include/text.php:1439 +msgid "remove from file" msgstr "" -#: ../../include/features.php:98 -msgid "Post/Comment Tools" +#: ../../include/text.php:1738 ../../include/text.php:1809 +msgid "default" msgstr "" -#: ../../include/features.php:99 -msgid "Community Tagging" +#: ../../include/text.php:1746 +msgid "Page layout" msgstr "" -#: ../../include/features.php:99 -msgid "Ability to tag existing posts" +#: ../../include/text.php:1746 +msgid "You can create your own with the layouts tool" msgstr "" -#: ../../include/features.php:100 -msgid "Post Categories" +#: ../../include/text.php:1788 +msgid "Page content type" msgstr "" -#: ../../include/features.php:100 -msgid "Add categories to your posts" +#: ../../include/text.php:1821 +msgid "Select an alternate language" msgstr "" -#: ../../include/features.php:101 -msgid "Emoji Reactions" +#: ../../include/text.php:1958 +msgid "activity" msgstr "" -#: ../../include/features.php:101 -msgid "Add emoji reaction ability to posts" +#: ../../include/text.php:2259 +msgid "Design Tools" msgstr "" -#: ../../include/features.php:102 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" +#: ../../include/text.php:2265 +msgid "Pages" msgstr "" -#: ../../include/features.php:102 -msgid "Ability to file posts under folders" +#: ../../include/text.php:2287 +msgid "Import website..." msgstr "" -#: ../../include/features.php:103 -msgid "Dislike Posts" +#: ../../include/text.php:2288 +msgid "Select folder to import" msgstr "" -#: ../../include/features.php:103 -msgid "Ability to dislike posts/comments" +#: ../../include/text.php:2289 +msgid "Import from a zipped folder:" msgstr "" -#: ../../include/features.php:104 -msgid "Star Posts" +#: ../../include/text.php:2290 +msgid "Import from cloud files:" msgstr "" -#: ../../include/features.php:104 -msgid "Ability to mark special posts with a star indicator" +#: ../../include/text.php:2291 +msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../include/features.php:105 -msgid "Tag Cloud" +#: ../../include/text.php:2292 +msgid "Enter path to website files" msgstr "" -#: ../../include/features.php:105 -msgid "Provide a personal tag cloud on your channel page" +#: ../../include/text.php:2293 +msgid "Select folder" msgstr "" -#: ../../include/datetime.php:135 -msgid "Birthday" +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 +msgid "Categories" msgstr "" -#: ../../include/datetime.php:137 -msgid "Age: " +#: ../../include/widgets.php:103 +msgid "System" msgstr "" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" +#: ../../include/widgets.php:106 +msgid "New App" msgstr "" -#: ../../include/datetime.php:272 ../../boot.php:2552 -msgid "never" +#: ../../include/widgets.php:154 +msgid "Suggestions" msgstr "" -#: ../../include/datetime.php:278 -msgid "less than a second ago" +#: ../../include/widgets.php:155 +msgid "See more..." msgstr "" -#: ../../include/datetime.php:296 +#: ../../include/widgets.php:175 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "" -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" +#: ../../include/widgets.php:199 +msgid "Notes" msgstr "" -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../include/widgets.php:273 +msgid "Remove term" msgstr "" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/widgets.php:281 ../../include/features.php:85 +msgid "Saved Searches" msgstr "" -#: ../../include/photos.php:121 -msgid "Image file is empty." +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" msgstr "" -#: ../../include/photos.php:259 -msgid "Photo storage failed." +#: ../../include/widgets.php:310 ../../include/features.php:99 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" msgstr "" -#: ../../include/photos.php:299 -msgid "a new photo" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" msgstr "" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +#: ../../include/widgets.php:354 +msgid "Archives" msgstr "" -#: ../../include/photos.php:510 -msgid "Upload New Photos" +#: ../../include/widgets.php:516 +msgid "Refresh" msgstr "" -#: ../../include/selectors.php:30 -msgid "Frequently" +#: ../../include/widgets.php:556 +msgid "Account settings" msgstr "" -#: ../../include/selectors.php:31 -msgid "Hourly" +#: ../../include/widgets.php:562 +msgid "Channel settings" msgstr "" -#: ../../include/selectors.php:32 -msgid "Twice daily" +#: ../../include/widgets.php:571 +msgid "Additional features" msgstr "" -#: ../../include/selectors.php:33 -msgid "Daily" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" msgstr "" -#: ../../include/selectors.php:34 -msgid "Weekly" +#: ../../include/widgets.php:584 +msgid "Display settings" msgstr "" -#: ../../include/selectors.php:35 -msgid "Monthly" +#: ../../include/widgets.php:591 +msgid "Manage locations" msgstr "" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Male" +#: ../../include/widgets.php:600 +msgid "Export channel" msgstr "" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Female" +#: ../../include/widgets.php:607 +msgid "Connected apps" msgstr "" -#: ../../include/selectors.php:49 -msgid "Currently Male" +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" msgstr "" -#: ../../include/selectors.php:49 -msgid "Currently Female" +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Male" +#: ../../include/widgets.php:662 +msgid "Combined View" msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Female" +#: ../../include/widgets.php:667 ../../include/nav.php:200 +msgid "Inbox" msgstr "" -#: ../../include/selectors.php:49 -msgid "Transgender" +#: ../../include/widgets.php:672 ../../include/nav.php:201 +msgid "Outbox" msgstr "" -#: ../../include/selectors.php:49 -msgid "Intersex" +#: ../../include/widgets.php:677 ../../include/nav.php:202 +msgid "New Message" msgstr "" -#: ../../include/selectors.php:49 -msgid "Transsexual" +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" msgstr "" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" +#: ../../include/widgets.php:698 +msgid "Received Messages" msgstr "" -#: ../../include/selectors.php:49 -msgid "Neuter" +#: ../../include/widgets.php:702 +msgid "Sent Messages" msgstr "" -#: ../../include/selectors.php:49 -msgid "Non-specific" +#: ../../include/widgets.php:716 +msgid "No messages." msgstr "" -#: ../../include/selectors.php:49 -msgid "Undecided" +#: ../../include/widgets.php:734 +msgid "Delete conversation" msgstr "" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" +#: ../../include/widgets.php:760 +msgid "Events Tools" msgstr "" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" +#: ../../include/widgets.php:761 +msgid "Export Calendar" msgstr "" -#: ../../include/selectors.php:85 -msgid "Gay" +#: ../../include/widgets.php:762 +msgid "Import Calendar" msgstr "" -#: ../../include/selectors.php:85 -msgid "Lesbian" +#: ../../include/widgets.php:850 ../../include/conversation.php:1695 +#: ../../include/conversation.php:1698 +msgid "Chatrooms" msgstr "" -#: ../../include/selectors.php:85 -msgid "No Preference" +#: ../../include/widgets.php:854 +msgid "Overview" msgstr "" -#: ../../include/selectors.php:85 -msgid "Bisexual" +#: ../../include/widgets.php:861 +msgid "Chat Members" msgstr "" -#: ../../include/selectors.php:85 -msgid "Autosexual" +#: ../../include/widgets.php:883 +msgid "Wiki List" msgstr "" -#: ../../include/selectors.php:85 -msgid "Abstinent" +#: ../../include/widgets.php:921 +msgid "Wiki Pages" msgstr "" -#: ../../include/selectors.php:85 -msgid "Virgin" +#: ../../include/widgets.php:956 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/selectors.php:85 -msgid "Deviant" +#: ../../include/widgets.php:979 +msgid "Suggested Chatrooms" msgstr "" -#: ../../include/selectors.php:85 -msgid "Fetish" +#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 +msgid "photo/image" msgstr "" -#: ../../include/selectors.php:85 -msgid "Oodles" +#: ../../include/widgets.php:1180 +msgid "Click to show more" msgstr "" -#: ../../include/selectors.php:85 -msgid "Nonsexual" +#: ../../include/widgets.php:1331 +msgid "Rating Tools" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" +#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 +msgid "Rate Me" msgstr "" -#: ../../include/selectors.php:123 -msgid "Lonely" +#: ../../include/widgets.php:1340 +msgid "View Ratings" msgstr "" -#: ../../include/selectors.php:123 -msgid "Available" +#: ../../include/widgets.php:1424 +msgid "Forums" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unavailable" +#: ../../include/widgets.php:1453 +msgid "Tasks" msgstr "" -#: ../../include/selectors.php:123 -msgid "Has crush" +#: ../../include/widgets.php:1462 +msgid "Documentation" msgstr "" -#: ../../include/selectors.php:123 -msgid "Infatuated" +#: ../../include/widgets.php:1464 +msgid "Project/Site Information" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" +#: ../../include/widgets.php:1465 +msgid "For Members" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unfaithful" +#: ../../include/widgets.php:1466 +msgid "For Administrators" msgstr "" -#: ../../include/selectors.php:123 -msgid "Sex Addict" +#: ../../include/widgets.php:1467 +msgid "For Developers" msgstr "" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" +#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 +msgid "Member registrations waiting for confirmation" msgstr "" -#: ../../include/selectors.php:123 -msgid "Casual" +#: ../../include/widgets.php:1497 +msgid "Inspect queue" msgstr "" -#: ../../include/selectors.php:123 -msgid "Engaged" +#: ../../include/widgets.php:1499 +msgid "DB updates" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" +#: ../../include/widgets.php:1524 ../../include/nav.php:220 +msgid "Admin" msgstr "" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" +#: ../../include/widgets.php:1525 +msgid "Plugin Features" msgstr "" -#: ../../include/selectors.php:123 -msgid "Partners" +#: ../../include/connections.php:95 +msgid "New window" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/selectors.php:123 -msgid "Common law" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../include/selectors.php:123 -msgid "Happy" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" msgstr "" -#: ../../include/selectors.php:123 -msgid "Not looking" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" msgstr "" -#: ../../include/selectors.php:123 -msgid "Swinger" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." msgstr "" -#: ../../include/selectors.php:123 -msgid "Betrayed" +#: ../../include/acl_selectors.php:172 +msgid "Show" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unstable" +#: ../../include/acl_selectors.php:207 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These " +"permissions set who is allowed to view the post." msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" +#: ../../include/api.php:1330 +msgid "Public Timeline" msgstr "" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" +#: ../../include/channel.php:67 +msgid "Empty name" msgstr "" -#: ../../include/selectors.php:123 -msgid "Uncertain" +#: ../../include/channel.php:70 +msgid "Name too long" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" +#: ../../include/channel.php:181 +msgid "No account identifier" msgstr "" -#: ../../include/selectors.php:123 -msgid "Don't care" +#: ../../include/channel.php:193 +msgid "Nickname is required." msgstr "" -#: ../../include/selectors.php:123 -msgid "Ask me" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/permissions.php:29 -msgid "Can view my normal stream and posts" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/permissions.php:33 -msgid "Can view my webpages" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/permissions.php:37 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/channel.php:341 +msgid "Default Profile" msgstr "" -#: ../../include/permissions.php:40 -msgid "Can like/dislike stuff" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." msgstr "" -#: ../../include/permissions.php:40 -msgid "Profiles and things other than posts/comments" +#: ../../include/channel.php:960 +msgid "Create New Profile" msgstr "" -#: ../../include/permissions.php:42 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/channel.php:963 ../../include/nav.php:92 +msgid "Edit Profile" msgstr "" -#: ../../include/permissions.php:42 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/channel.php:980 +msgid "Visible to everybody" msgstr "" -#: ../../include/permissions.php:43 -msgid "Can chat with me (when available)" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" msgstr "" -#: ../../include/permissions.php:44 -msgid "Can write to my file storage and photos" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" msgstr "" -#: ../../include/permissions.php:45 -msgid "Can edit my webpages" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" msgstr "" -#: ../../include/permissions.php:47 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/channel.php:1056 +msgid "Online Now" msgstr "" -#: ../../include/permissions.php:49 -msgid "Can administer my channel resources" +#: ../../include/channel.php:1171 +msgid "Like this channel" msgstr "" -#: ../../include/permissions.php:49 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/channel.php:1195 +msgid "j F, Y" msgstr "" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/channel.php:1196 +msgid "j F" msgstr "" -#: ../../include/security.php:527 -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." +#: ../../include/channel.php:1203 +msgid "Birthday:" msgstr "" -#: ../../include/bookmarks.php:35 +#: ../../include/channel.php:1216 #, php-format -msgid "%1$s's bookmarks" +msgid "for %1$d %2$s" msgstr "" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" msgstr "" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" +#: ../../include/channel.php:1225 +msgid "Tags:" msgstr "" -#: ../../include/group.php:289 -msgid "edit" +#: ../../include/channel.php:1227 +msgid "Political Views:" msgstr "" -#: ../../include/group.php:312 -msgid "Edit group" +#: ../../include/channel.php:1229 +msgid "Religion:" msgstr "" -#: ../../include/group.php:313 -msgid "Add privacy group" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" +#: ../../include/channel.php:1235 +msgid "Likes:" msgstr "" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" +#: ../../include/channel.php:1237 +msgid "Dislikes:" msgstr "" -#: ../../include/page_widgets.php:7 -msgid "New Page" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/page_widgets.php:46 -msgid "Title" +#: ../../include/channel.php:1241 +msgid "My other channels:" msgstr "" -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/contact_widgets.php:91 -msgid "Categories" +#: ../../include/channel.php:1243 +msgid "Musical interests:" msgstr "" -#: ../../include/widgets.php:103 -msgid "System" +#: ../../include/channel.php:1245 +msgid "Books, literature:" msgstr "" -#: ../../include/widgets.php:106 -msgid "New App" +#: ../../include/channel.php:1247 +msgid "Television:" msgstr "" -#: ../../include/widgets.php:154 -msgid "Suggestions" +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/widgets.php:155 -msgid "See more..." +#: ../../include/channel.php:1251 +msgid "Love/Romance:" msgstr "" -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +#: ../../include/channel.php:1253 +msgid "Work/employment:" msgstr "" -#: ../../include/widgets.php:181 -msgid "Add New Connection" +#: ../../include/channel.php:1255 +msgid "School/education:" msgstr "" -#: ../../include/widgets.php:182 -msgid "Enter channel address" +#: ../../include/channel.php:1276 +msgid "Like this thing" msgstr "" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" +#: ../../include/datetime.php:135 +msgid "Birthday" msgstr "" -#: ../../include/widgets.php:199 -msgid "Notes" +#: ../../include/datetime.php:137 +msgid "Age: " msgstr "" -#: ../../include/widgets.php:273 -msgid "Remove term" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" +#: ../../include/datetime.php:272 ../../boot.php:2577 +msgid "never" msgstr "" -#: ../../include/widgets.php:354 -msgid "Archives" +#: ../../include/datetime.php:278 +msgid "less than a second ago" msgstr "" -#: ../../include/widgets.php:516 -msgid "Refresh" +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" msgstr "" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" msgstr "" -#: ../../include/widgets.php:584 -msgid "Display settings" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/widgets.php:591 -msgid "Manage locations" +#: ../../include/selectors.php:30 +msgid "Frequently" msgstr "" -#: ../../include/widgets.php:600 -msgid "Export channel" +#: ../../include/selectors.php:31 +msgid "Hourly" msgstr "" -#: ../../include/widgets.php:607 -msgid "Connected apps" +#: ../../include/selectors.php:32 +msgid "Twice daily" msgstr "" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" +#: ../../include/selectors.php:33 +msgid "Daily" msgstr "" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" +#: ../../include/selectors.php:34 +msgid "Weekly" msgstr "" -#: ../../include/widgets.php:662 -msgid "Combined View" +#: ../../include/selectors.php:35 +msgid "Monthly" msgstr "" -#: ../../include/widgets.php:667 ../../include/nav.php:200 -msgid "Inbox" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" msgstr "" -#: ../../include/widgets.php:672 ../../include/nav.php:201 -msgid "Outbox" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" msgstr "" -#: ../../include/widgets.php:677 ../../include/nav.php:202 -msgid "New Message" +#: ../../include/selectors.php:49 +msgid "Currently Male" msgstr "" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" +#: ../../include/selectors.php:49 +msgid "Currently Female" msgstr "" -#: ../../include/widgets.php:698 -msgid "Received Messages" +#: ../../include/selectors.php:49 +msgid "Mostly Male" msgstr "" -#: ../../include/widgets.php:702 -msgid "Sent Messages" +#: ../../include/selectors.php:49 +msgid "Mostly Female" msgstr "" -#: ../../include/widgets.php:716 -msgid "No messages." +#: ../../include/selectors.php:49 +msgid "Transgender" msgstr "" -#: ../../include/widgets.php:734 -msgid "Delete conversation" +#: ../../include/selectors.php:49 +msgid "Intersex" msgstr "" -#: ../../include/widgets.php:760 -msgid "Events Tools" +#: ../../include/selectors.php:49 +msgid "Transsexual" msgstr "" -#: ../../include/widgets.php:761 -msgid "Export Calendar" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" msgstr "" -#: ../../include/widgets.php:762 -msgid "Import Calendar" +#: ../../include/selectors.php:49 +msgid "Neuter" msgstr "" -#: ../../include/widgets.php:854 -msgid "Overview" +#: ../../include/selectors.php:49 +msgid "Non-specific" msgstr "" -#: ../../include/widgets.php:861 -msgid "Chat Members" +#: ../../include/selectors.php:49 +msgid "Undecided" msgstr "" -#: ../../include/widgets.php:883 -msgid "Wiki List" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" msgstr "" -#: ../../include/widgets.php:921 -msgid "Wiki Pages" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" msgstr "" -#: ../../include/widgets.php:956 -msgid "Bookmarked Chatrooms" +#: ../../include/selectors.php:85 +msgid "Gay" msgstr "" -#: ../../include/widgets.php:979 -msgid "Suggested Chatrooms" +#: ../../include/selectors.php:85 +msgid "Lesbian" msgstr "" -#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 -msgid "photo/image" +#: ../../include/selectors.php:85 +msgid "No Preference" msgstr "" -#: ../../include/widgets.php:1180 -msgid "Click to show more" +#: ../../include/selectors.php:85 +msgid "Bisexual" msgstr "" -#: ../../include/widgets.php:1331 -msgid "Rating Tools" +#: ../../include/selectors.php:85 +msgid "Autosexual" msgstr "" -#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 -msgid "Rate Me" +#: ../../include/selectors.php:85 +msgid "Abstinent" msgstr "" -#: ../../include/widgets.php:1340 -msgid "View Ratings" +#: ../../include/selectors.php:85 +msgid "Virgin" msgstr "" -#: ../../include/widgets.php:1424 -msgid "Forums" +#: ../../include/selectors.php:85 +msgid "Deviant" msgstr "" -#: ../../include/widgets.php:1453 -msgid "Tasks" +#: ../../include/selectors.php:85 +msgid "Fetish" msgstr "" -#: ../../include/widgets.php:1462 -msgid "Documentation" +#: ../../include/selectors.php:85 +msgid "Oodles" msgstr "" -#: ../../include/widgets.php:1464 -msgid "Project/Site Information" +#: ../../include/selectors.php:85 +msgid "Nonsexual" msgstr "" -#: ../../include/widgets.php:1465 -msgid "For Members" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" msgstr "" -#: ../../include/widgets.php:1466 -msgid "For Administrators" +#: ../../include/selectors.php:123 +msgid "Lonely" msgstr "" -#: ../../include/widgets.php:1467 -msgid "For Developers" +#: ../../include/selectors.php:123 +msgid "Available" msgstr "" -#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 -msgid "Member registrations waiting for confirmation" +#: ../../include/selectors.php:123 +msgid "Unavailable" msgstr "" -#: ../../include/widgets.php:1497 -msgid "Inspect queue" +#: ../../include/selectors.php:123 +msgid "Has crush" msgstr "" -#: ../../include/widgets.php:1499 -msgid "DB updates" +#: ../../include/selectors.php:123 +msgid "Infatuated" msgstr "" -#: ../../include/widgets.php:1524 ../../include/nav.php:220 -msgid "Admin" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" msgstr "" -#: ../../include/widgets.php:1525 -msgid "Plugin Features" +#: ../../include/selectors.php:123 +msgid "Unfaithful" msgstr "" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" +#: ../../include/selectors.php:123 +msgid "Sex Addict" msgstr "" -#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 -#: ../../include/event.php:69 -msgid "l F d, Y \\@ g:i A" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" msgstr "" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" +#: ../../include/selectors.php:123 +msgid "Casual" msgstr "" -#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 -#: ../../include/event.php:73 -msgid "Starts:" +#: ../../include/selectors.php:123 +msgid "Engaged" msgstr "" -#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 -#: ../../include/event.php:77 -msgid "Finishes:" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" msgstr "" -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" +#: ../../include/selectors.php:123 +msgid "Partners" msgstr "" -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" msgstr "" -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" +#: ../../include/selectors.php:123 +msgid "Common law" msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" +#: ../../include/selectors.php:123 +msgid "Happy" msgstr "" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" +#: ../../include/selectors.php:123 +msgid "Not looking" msgstr "" -#: ../../include/js_strings.php:13 -msgid "everybody" +#: ../../include/selectors.php:123 +msgid "Swinger" msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" +#: ../../include/selectors.php:123 +msgid "Betrayed" msgstr "" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../include/selectors.php:123 +msgid "Unstable" msgstr "" -#: ../../include/js_strings.php:17 -msgid "close all" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" msgstr "" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" msgstr "" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" msgstr "" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" +#: ../../include/selectors.php:123 +msgid "Uncertain" msgstr "" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" msgstr "" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" +#: ../../include/selectors.php:123 +msgid "Don't care" msgstr "" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" +#: ../../include/selectors.php:123 +msgid "Ask me" msgstr "" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/js_strings.php:29 -msgid "ago" +#: ../../include/photos.php:121 +msgid "Image file is empty." msgstr "" -#: ../../include/js_strings.php:30 -msgid "from now" +#: ../../include/photos.php:259 +msgid "Photo storage failed." msgstr "" -#: ../../include/js_strings.php:31 -msgid "less than a minute" +#: ../../include/photos.php:299 +msgid "a new photo" msgstr "" -#: ../../include/js_strings.php:32 -msgid "about a minute" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" msgstr "" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" +#: ../../include/photos.php:506 ../../include/conversation.php:1668 +msgid "Photo Albums" msgstr "" -#: ../../include/js_strings.php:34 -msgid "about an hour" +#: ../../include/photos.php:510 +msgid "Upload New Photos" msgstr "" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" +#: ../../include/security.php:109 +msgid "guest:" msgstr "" -#: ../../include/js_strings.php:36 -msgid "a day" +#: ../../include/security.php:527 +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/js_strings.php:37 +#: ../../include/conversation.php:204 #, php-format -msgid "%d days" +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/js_strings.php:38 -msgid "about a month" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/js_strings.php:39 +#: ../../include/conversation.php:694 #, php-format -msgid "%d months" +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/js_strings.php:40 -msgid "about a year" +#: ../../include/conversation.php:713 +msgid "Categories:" msgstr "" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" +#: ../../include/conversation.php:714 +msgid "Filed under:" msgstr "" -#: ../../include/js_strings.php:42 -msgid " " +#: ../../include/conversation.php:741 +msgid "View in context" msgstr "" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" +#: ../../include/conversation.php:851 +msgid "remove" msgstr "" -#: ../../include/js_strings.php:45 ../../include/text.php:1243 -msgid "January" +#: ../../include/conversation.php:855 ../../include/nav.php:251 +msgid "Loading..." msgstr "" -#: ../../include/js_strings.php:46 ../../include/text.php:1243 -msgid "February" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" msgstr "" -#: ../../include/js_strings.php:47 ../../include/text.php:1243 -msgid "March" +#: ../../include/conversation.php:949 +msgid "View Source" msgstr "" -#: ../../include/js_strings.php:48 ../../include/text.php:1243 -msgid "April" +#: ../../include/conversation.php:950 +msgid "Follow Thread" msgstr "" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" msgstr "" -#: ../../include/js_strings.php:50 ../../include/text.php:1243 -msgid "June" +#: ../../include/conversation.php:956 +msgid "Activity/Posts" msgstr "" -#: ../../include/js_strings.php:51 ../../include/text.php:1243 -msgid "July" +#: ../../include/conversation.php:958 +msgid "Edit Connection" msgstr "" -#: ../../include/js_strings.php:52 ../../include/text.php:1243 -msgid "August" +#: ../../include/conversation.php:959 +msgid "Message" msgstr "" -#: ../../include/js_strings.php:53 ../../include/text.php:1243 -msgid "September" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s likes this." msgstr "" -#: ../../include/js_strings.php:54 ../../include/text.php:1243 -msgid "October" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: ../../include/js_strings.php:55 ../../include/text.php:1243 -msgid "November" -msgstr "" +#: ../../include/conversation.php:1080 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/js_strings.php:56 ../../include/text.php:1243 -msgid "December" +#: ../../include/conversation.php:1082 +#, 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:1088 +msgid "and" msgstr "" -#: ../../include/js_strings.php:57 -msgid "Jan" +#: ../../include/conversation.php:1091 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s like this." msgstr "" -#: ../../include/js_strings.php:58 -msgid "Feb" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s don't like this." msgstr "" -#: ../../include/js_strings.php:59 -msgid "Mar" +#: ../../include/conversation.php:1135 +msgid "Set your location" msgstr "" -#: ../../include/js_strings.php:60 -msgid "Apr" +#: ../../include/conversation.php:1136 +msgid "Clear browser location" msgstr "" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" +#: ../../include/conversation.php:1184 +msgid "Tag term:" msgstr "" -#: ../../include/js_strings.php:62 -msgid "Jun" +#: ../../include/conversation.php:1185 +msgid "Where are you right now?" msgstr "" -#: ../../include/js_strings.php:63 -msgid "Jul" +#: ../../include/conversation.php:1194 +msgid "Comments enabled" msgstr "" -#: ../../include/js_strings.php:64 -msgid "Aug" +#: ../../include/conversation.php:1195 +msgid "Comments disabled" msgstr "" -#: ../../include/js_strings.php:65 -msgid "Sep" +#: ../../include/conversation.php:1229 +msgid "Page link name" msgstr "" -#: ../../include/js_strings.php:66 -msgid "Oct" +#: ../../include/conversation.php:1232 +msgid "Post as" msgstr "" -#: ../../include/js_strings.php:67 -msgid "Nov" +#: ../../include/conversation.php:1246 +msgid "Toggle voting" msgstr "" -#: ../../include/js_strings.php:68 -msgid "Dec" +#: ../../include/conversation.php:1249 +msgid "Disable comments" msgstr "" -#: ../../include/js_strings.php:69 ../../include/text.php:1239 -msgid "Sunday" +#: ../../include/conversation.php:1250 +msgid "Toggle comments" msgstr "" -#: ../../include/js_strings.php:70 ../../include/text.php:1239 -msgid "Monday" +#: ../../include/conversation.php:1258 +msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/js_strings.php:71 ../../include/text.php:1239 -msgid "Tuesday" +#: ../../include/conversation.php:1281 +msgid "Other networks and post services" msgstr "" -#: ../../include/js_strings.php:72 ../../include/text.php:1239 -msgid "Wednesday" +#: ../../include/conversation.php:1287 +msgid "Set publish date" msgstr "" -#: ../../include/js_strings.php:73 ../../include/text.php:1239 -msgid "Thursday" +#: ../../include/conversation.php:1536 +msgid "Discover" msgstr "" -#: ../../include/js_strings.php:74 ../../include/text.php:1239 -msgid "Friday" +#: ../../include/conversation.php:1539 +msgid "Imported public streams" msgstr "" -#: ../../include/js_strings.php:75 ../../include/text.php:1239 -msgid "Saturday" +#: ../../include/conversation.php:1544 +msgid "Commented Order" msgstr "" -#: ../../include/js_strings.php:76 -msgid "Sun" +#: ../../include/conversation.php:1547 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/js_strings.php:77 -msgid "Mon" +#: ../../include/conversation.php:1551 +msgid "Posted Order" msgstr "" -#: ../../include/js_strings.php:78 -msgid "Tue" +#: ../../include/conversation.php:1554 +msgid "Sort by Post Date" msgstr "" -#: ../../include/js_strings.php:79 -msgid "Wed" +#: ../../include/conversation.php:1562 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/js_strings.php:80 -msgid "Thu" +#: ../../include/conversation.php:1571 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/js_strings.php:81 -msgid "Fri" +#: ../../include/conversation.php:1577 +msgid "Starred" msgstr "" -#: ../../include/js_strings.php:82 -msgid "Sat" +#: ../../include/conversation.php:1580 +msgid "Favourite Posts" msgstr "" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" +#: ../../include/conversation.php:1587 +msgid "Spam" msgstr "" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" +#: ../../include/conversation.php:1590 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" +#: ../../include/conversation.php:1647 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" +#: ../../include/conversation.php:1656 +msgid "About" msgstr "" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" +#: ../../include/conversation.php:1659 +msgid "Profile Details" msgstr "" -#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1712 -msgid "Logout" +#: ../../include/conversation.php:1675 +msgid "Files and Storage" msgstr "" -#: ../../include/nav.php:84 ../../include/nav.php:117 -msgid "End this session" +#: ../../include/conversation.php:1708 ../../include/nav.php:104 +msgid "Bookmarks" msgstr "" -#: ../../include/nav.php:87 ../../include/nav.php:148 -msgid "Home" +#: ../../include/conversation.php:1711 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/nav.php:87 -msgid "Your posts and conversations" +#: ../../include/conversation.php:1721 +msgid "Manage Webpages" msgstr "" -#: ../../include/nav.php:88 -msgid "Your profile page" +#: ../../include/conversation.php:1786 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1792 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1795 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1798 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1801 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" msgstr "" -#: ../../include/nav.php:90 -msgid "Manage/Edit profiles" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/nav.php:92 ../../include/channel.php:963 -msgid "Edit Profile" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" msgstr "" -#: ../../include/nav.php:92 -msgid "Edit your profile" +#: ../../include/group.php:289 +msgid "edit" msgstr "" -#: ../../include/nav.php:94 -msgid "Your photos" +#: ../../include/group.php:311 ../../include/features.php:84 +msgid "Privacy Groups" msgstr "" -#: ../../include/nav.php:95 -msgid "Your files" +#: ../../include/group.php:312 +msgid "Edit group" msgstr "" -#: ../../include/nav.php:98 -msgid "Your chatrooms" +#: ../../include/group.php:313 +msgid "Add privacy group" msgstr "" -#: ../../include/nav.php:104 -msgid "Your bookmarks" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" msgstr "" -#: ../../include/nav.php:108 -msgid "Your webpages" +#: ../../include/page_widgets.php:7 +msgid "New Page" msgstr "" -#: ../../include/nav.php:110 -msgid "Your wiki" +#: ../../include/page_widgets.php:46 +msgid "Title" msgstr "" -#: ../../include/nav.php:114 -msgid "Sign in" +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" msgstr "" -#: ../../include/nav.php:131 -#, php-format -msgid "%s - click to logout" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/nav.php:134 -msgid "Remote authentication" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" msgstr "" -#: ../../include/nav.php:134 -msgid "Click to authenticate to your home hub" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" msgstr "" -#: ../../include/nav.php:148 -msgid "Home Page" +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/nav.php:151 -msgid "Create an account" +#: ../../include/event.php:1021 +msgid "Not specified" msgstr "" -#: ../../include/nav.php:163 -msgid "Help and documentation" +#: ../../include/event.php:1022 +msgid "Needs Action" msgstr "" -#: ../../include/nav.php:167 -msgid "Applications, utilities, links, games" +#: ../../include/event.php:1023 +msgid "Completed" msgstr "" -#: ../../include/nav.php:169 -msgid "Search site @name, #tag, ?docs, content" +#: ../../include/event.php:1024 +msgid "In Process" msgstr "" -#: ../../include/nav.php:171 -msgid "Channel Directory" +#: ../../include/event.php:1025 +msgid "Cancelled" msgstr "" -#: ../../include/nav.php:183 -msgid "Your grid" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" msgstr "" -#: ../../include/nav.php:184 -msgid "Mark all grid notifications seen" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" msgstr "" -#: ../../include/nav.php:186 -msgid "Channel home" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" msgstr "" -#: ../../include/nav.php:187 -msgid "Mark all channel notifications seen" +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" msgstr "" -#: ../../include/nav.php:193 -msgid "Notices" +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" msgstr "" -#: ../../include/nav.php:193 -msgid "Notifications" +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" msgstr "" -#: ../../include/nav.php:194 -msgid "See all notifications" +#: ../../include/js_strings.php:11 +msgid "Password too short" msgstr "" -#: ../../include/nav.php:197 -msgid "Private mail" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" msgstr "" -#: ../../include/nav.php:198 -msgid "See all private messages" +#: ../../include/js_strings.php:13 +msgid "everybody" msgstr "" -#: ../../include/nav.php:199 -msgid "Mark all private messages seen" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" msgstr "" -#: ../../include/nav.php:205 -msgid "Event Calendar" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" msgstr "" -#: ../../include/nav.php:206 -msgid "See all events" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../include/nav.php:207 -msgid "Mark all events seen" +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" -#: ../../include/nav.php:210 -msgid "Manage Your Channels" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" msgstr "" -#: ../../include/nav.php:212 -msgid "Account/Channel Settings" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" msgstr "" -#: ../../include/nav.php:220 -msgid "Site Setup and Configuration" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" msgstr "" -#: ../../include/nav.php:256 -msgid "@name, #tag, ?doc, content" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" msgstr "" -#: ../../include/nav.php:257 -msgid "Please wait..." +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../include/network.php:704 -msgid "view full size" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" msgstr "" -#: ../../include/network.php:1935 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../include/network.php:1949 -msgid "No Subject" +#: ../../include/js_strings.php:29 +msgid "ago" msgstr "" -#: ../../include/network.php:2203 ../../include/network.php:2204 -msgid "Friendica" +#: ../../include/js_strings.php:30 +msgid "from now" msgstr "" -#: ../../include/network.php:2205 -msgid "OStatus" +#: ../../include/js_strings.php:31 +msgid "less than a minute" msgstr "" -#: ../../include/network.php:2206 -msgid "GNU-Social" +#: ../../include/js_strings.php:32 +msgid "about a minute" msgstr "" -#: ../../include/network.php:2207 -msgid "RSS/Atom" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" msgstr "" -#: ../../include/network.php:2209 -msgid "Diaspora" +#: ../../include/js_strings.php:34 +msgid "about an hour" msgstr "" -#: ../../include/network.php:2210 -msgid "Facebook" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" msgstr "" -#: ../../include/network.php:2211 -msgid "Zot" +#: ../../include/js_strings.php:36 +msgid "a day" msgstr "" -#: ../../include/network.php:2212 -msgid "LinkedIn" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" msgstr "" -#: ../../include/network.php:2213 -msgid "XMPP/IM" +#: ../../include/js_strings.php:38 +msgid "about a month" msgstr "" -#: ../../include/network.php:2214 -msgid "MySpace" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" msgstr "" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../include/js_strings.php:40 +msgid "about a year" msgstr "" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" msgstr "" -#: ../../include/items.php:899 ../../include/items.php:944 -msgid "(Unknown)" +#: ../../include/js_strings.php:42 +msgid " " msgstr "" -#: ../../include/items.php:1143 -msgid "Visible to anybody on the internet." +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" msgstr "" -#: ../../include/items.php:1145 -msgid "Visible to you only." +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" msgstr "" -#: ../../include/items.php:1147 -msgid "Visible to anybody in this network." +#: ../../include/js_strings.php:57 +msgid "Jan" msgstr "" -#: ../../include/items.php:1149 -msgid "Visible to anybody authenticated." +#: ../../include/js_strings.php:58 +msgid "Feb" msgstr "" -#: ../../include/items.php:1151 -#, php-format -msgid "Visible to anybody on %s." +#: ../../include/js_strings.php:59 +msgid "Mar" msgstr "" -#: ../../include/items.php:1153 -msgid "Visible to all connections." +#: ../../include/js_strings.php:60 +msgid "Apr" msgstr "" -#: ../../include/items.php:1155 -msgid "Visible to approved connections." +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" msgstr "" -#: ../../include/items.php:1157 -msgid "Visible to specific connections." +#: ../../include/js_strings.php:62 +msgid "Jun" msgstr "" -#: ../../include/items.php:3920 -msgid "Privacy group is empty." +#: ../../include/js_strings.php:63 +msgid "Jul" msgstr "" -#: ../../include/items.php:3927 -#, php-format -msgid "Privacy group: %s" +#: ../../include/js_strings.php:64 +msgid "Aug" msgstr "" -#: ../../include/items.php:3939 -msgid "Connection not found." +#: ../../include/js_strings.php:65 +msgid "Sep" msgstr "" -#: ../../include/items.php:4292 -msgid "profile photo" +#: ../../include/js_strings.php:66 +msgid "Oct" msgstr "" -#: ../../include/text.php:404 -msgid "prev" +#: ../../include/js_strings.php:67 +msgid "Nov" msgstr "" -#: ../../include/text.php:406 -msgid "first" +#: ../../include/js_strings.php:68 +msgid "Dec" msgstr "" -#: ../../include/text.php:435 -msgid "last" +#: ../../include/js_strings.php:76 +msgid "Sun" msgstr "" -#: ../../include/text.php:438 -msgid "next" +#: ../../include/js_strings.php:77 +msgid "Mon" msgstr "" -#: ../../include/text.php:448 -msgid "older" +#: ../../include/js_strings.php:78 +msgid "Tue" msgstr "" -#: ../../include/text.php:450 -msgid "newer" +#: ../../include/js_strings.php:79 +msgid "Wed" msgstr "" -#: ../../include/text.php:843 -msgid "No connections" +#: ../../include/js_strings.php:80 +msgid "Thu" msgstr "" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" +#: ../../include/js_strings.php:81 +msgid "Fri" msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" +#: ../../include/js_strings.php:82 +msgid "Sat" msgstr "" -#: ../../include/text.php:1019 -msgid "ping" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" msgstr "" -#: ../../include/text.php:1019 -msgid "pinged" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" msgstr "" -#: ../../include/text.php:1020 -msgid "prod" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" msgstr "" -#: ../../include/text.php:1020 -msgid "prodded" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" msgstr "" -#: ../../include/text.php:1021 -msgid "slap" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" msgstr "" -#: ../../include/text.php:1021 -msgid "slapped" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/text.php:1022 -msgid "finger" +#: ../../include/follow.php:32 +msgid "Channel location missing." msgstr "" -#: ../../include/text.php:1022 -msgid "fingered" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/text.php:1023 -msgid "rebuff" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/text.php:1023 -msgid "rebuffed" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." msgstr "" -#: ../../include/text.php:1035 -msgid "happy" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." msgstr "" -#: ../../include/text.php:1036 -msgid "sad" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/text.php:1037 -msgid "mellow" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." msgstr "" -#: ../../include/text.php:1038 -msgid "tired" +#: ../../include/attach.php:500 +msgid "No source file." msgstr "" -#: ../../include/text.php:1039 -msgid "perky" +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/text.php:1040 -msgid "angry" +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/text.php:1041 -msgid "stupefied" +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/text.php:1042 -msgid "puzzled" +#: ../../include/attach.php:689 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/text.php:1043 -msgid "interested" +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/text.php:1044 -msgid "bitter" +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/text.php:1045 -msgid "cheerful" +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." msgstr "" -#: ../../include/text.php:1046 -msgid "alive" +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" msgstr "" -#: ../../include/text.php:1047 -msgid "annoyed" +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" msgstr "" -#: ../../include/text.php:1048 -msgid "anxious" +#: ../../include/attach.php:1026 +msgid "Path not found." msgstr "" -#: ../../include/text.php:1049 -msgid "cranky" +#: ../../include/attach.php:1084 +msgid "mkdir failed." msgstr "" -#: ../../include/text.php:1050 -msgid "disturbed" +#: ../../include/attach.php:1088 +msgid "database storage failed." msgstr "" -#: ../../include/text.php:1051 -msgid "frustrated" +#: ../../include/attach.php:1136 +msgid "Empty path" msgstr "" -#: ../../include/text.php:1052 -msgid "depressed" +#: ../../include/auth.php:148 +msgid "Logged out." msgstr "" -#: ../../include/text.php:1053 -msgid "motivated" +#: ../../include/auth.php:275 +msgid "Failed authentication" msgstr "" -#: ../../include/text.php:1054 -msgid "relaxed" +#: ../../include/auth.php:286 +msgid "Login failed." msgstr "" -#: ../../include/text.php:1055 -msgid "surprised" +#: ../../include/activities.php:41 +msgid " and " msgstr "" -#: ../../include/text.php:1243 -msgid "May" +#: ../../include/activities.php:49 +msgid "public profile" msgstr "" -#: ../../include/text.php:1320 ../../include/text.php:1324 -msgid "Unknown Attachment" +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/text.php:1326 -msgid "unknown" +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/text.php:1362 -msgid "remove category" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/text.php:1439 -msgid "remove from file" +#: ../../include/zot.php:700 +msgid "Invalid data packet" msgstr "" -#: ../../include/text.php:1738 ../../include/text.php:1809 -msgid "default" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/text.php:1746 -msgid "Page layout" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/text.php:1746 -msgid "You can create your own with the layouts tool" +#: ../../include/zot.php:3706 +msgid "invalid target signature" msgstr "" -#: ../../include/text.php:1788 -msgid "Page content type" +#: ../../include/features.php:50 +msgid "General Features" msgstr "" -#: ../../include/text.php:1821 -msgid "Select an alternate language" +#: ../../include/features.php:52 +msgid "Content Expiration" msgstr "" -#: ../../include/text.php:1958 -msgid "activity" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/text.php:2259 -msgid "Design Tools" +#: ../../include/features.php:53 +msgid "Multiple Profiles" msgstr "" -#: ../../include/text.php:2265 -msgid "Pages" +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/text.php:2287 -msgid "Import website..." +#: ../../include/features.php:54 +msgid "Advanced Profiles" msgstr "" -#: ../../include/text.php:2288 -msgid "Select folder to import" +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" msgstr "" -#: ../../include/text.php:2289 -msgid "Import from a zipped folder:" +#: ../../include/features.php:55 +msgid "Profile Import/Export" msgstr "" -#: ../../include/text.php:2290 -msgid "Import from cloud files:" +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../include/text.php:2291 -msgid "/cloud/channel/path/to/folder" +#: ../../include/features.php:56 +msgid "Web Pages" msgstr "" -#: ../../include/text.php:2292 -msgid "Enter path to website files" +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../include/text.php:2293 -msgid "Select folder" +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" msgstr "" -#: ../../include/acl_selectors.php:174 -msgid "Who can see this?" +#: ../../include/features.php:59 +msgid "Private Notes" msgstr "" -#: ../../include/acl_selectors.php:175 -msgid "Custom selection" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "" -#: ../../include/acl_selectors.php:176 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." +#: ../../include/features.php:60 +msgid "Navigation Channel Select" msgstr "" -#: ../../include/acl_selectors.php:177 -msgid "Show" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../include/acl_selectors.php:178 -msgid "Don't show" +#: ../../include/features.php:61 +msgid "Photo Location" msgstr "" -#: ../../include/acl_selectors.php:184 -msgid "Other networks and post services" +#: ../../include/features.php:61 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../include/acl_selectors.php:214 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These " -"permissions set who is allowed to view the post." +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" msgstr "" -#: ../../include/oembed.php:340 -msgid "Embedded content" +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." msgstr "" -#: ../../include/oembed.php:349 -msgid "Embedding disabled" +#: ../../include/features.php:63 +msgid "Smart Birthdays" msgstr "" -#: ../../include/activities.php:41 -msgid " and " +#: ../../include/features.php:63 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." msgstr "" -#: ../../include/activities.php:49 -msgid "public profile" +#: ../../include/features.php:64 +msgid "Expert Mode" msgstr "" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../include/features.php:64 +msgid "Enable Expert Mode to provide advanced configuration options" msgstr "" -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../include/features.php:69 +msgid "Post Composition Features" msgstr "" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/features.php:70 +msgid "Large Photos" msgstr "" -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." +#: ../../include/features.php:70 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -#: ../../include/attach.php:500 -msgid "No source file." +#: ../../include/features.php:71 +msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" +#: ../../include/features.php:72 +msgid "Even More Encryption" msgstr "" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" +#: ../../include/features.php:72 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../include/attach.php:675 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" msgstr "" -#: ../../include/attach.php:689 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" msgstr "" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/features.php:74 +msgid "Disable Comments" msgstr "" -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/features.php:74 +msgid "Provide the option to disable comments for a post" msgstr "" -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." +#: ../../include/features.php:75 +msgid "Delayed Posting" msgstr "" -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" +#: ../../include/features.php:75 +msgid "Allow posts to be published at a later date" msgstr "" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" +#: ../../include/features.php:76 +msgid "Suppress Duplicate Posts/Comments" msgstr "" -#: ../../include/attach.php:1026 -msgid "Path not found." +#: ../../include/features.php:76 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." msgstr "" -#: ../../include/attach.php:1084 -msgid "mkdir failed." +#: ../../include/features.php:82 +msgid "Network and Stream Filtering" msgstr "" -#: ../../include/attach.php:1088 -msgid "database storage failed." +#: ../../include/features.php:83 +msgid "Search by Date" msgstr "" -#: ../../include/attach.php:1136 -msgid "Empty path" +#: ../../include/features.php:83 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" +#: ../../include/features.php:84 +msgid "Enable management and selection of privacy groups" msgstr "" -#: ../../include/taxonomy.php:293 -msgid "Keywords" +#: ../../include/features.php:85 +msgid "Save search terms for re-use" msgstr "" -#: ../../include/taxonomy.php:314 -msgid "have" +#: ../../include/features.php:86 +msgid "Network Personal Tab" msgstr "" -#: ../../include/taxonomy.php:314 -msgid "has" +#: ../../include/features.php:86 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/taxonomy.php:315 -msgid "want" +#: ../../include/features.php:87 +msgid "Network New Tab" msgstr "" -#: ../../include/taxonomy.php:315 -msgid "wants" +#: ../../include/features.php:87 +msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/taxonomy.php:316 -msgid "likes" +#: ../../include/features.php:88 +msgid "Affinity Tool" msgstr "" -#: ../../include/taxonomy.php:317 -msgid "dislikes" +#: ../../include/features.php:88 +msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/zot.php:700 -msgid "Invalid data packet" +#: ../../include/features.php:89 +msgid "Connection Filtering" msgstr "" -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" +#: ../../include/features.php:89 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../include/zot.php:2329 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/features.php:90 +msgid "Show channel suggestions" msgstr "" -#: ../../include/zot.php:3706 -msgid "invalid target signature" +#: ../../include/features.php:95 +msgid "Post/Comment Tools" msgstr "" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" +#: ../../include/features.php:96 +msgid "Community Tagging" msgstr "" -#: ../../include/channel.php:67 -msgid "Empty name" +#: ../../include/features.php:96 +msgid "Ability to tag existing posts" msgstr "" -#: ../../include/channel.php:70 -msgid "Name too long" +#: ../../include/features.php:97 +msgid "Post Categories" msgstr "" -#: ../../include/channel.php:181 -msgid "No account identifier" +#: ../../include/features.php:97 +msgid "Add categories to your posts" msgstr "" -#: ../../include/channel.php:193 -msgid "Nickname is required." +#: ../../include/features.php:98 +msgid "Emoji Reactions" msgstr "" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." +#: ../../include/features.php:98 +msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../include/features.php:99 +msgid "Ability to file posts under folders" msgstr "" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" +#: ../../include/features.php:100 +msgid "Dislike Posts" msgstr "" -#: ../../include/channel.php:341 -msgid "Default Profile" +#: ../../include/features.php:100 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/channel.php:813 -msgid "Requested channel is not available." +#: ../../include/features.php:101 +msgid "Star Posts" msgstr "" -#: ../../include/channel.php:960 -msgid "Create New Profile" +#: ../../include/features.php:101 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/channel.php:980 -msgid "Visible to everybody" +#: ../../include/features.php:102 +msgid "Tag Cloud" msgstr "" -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" +#: ../../include/features.php:102 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" +#: ../../include/features.php:111 +msgid "Premium Channel" msgstr "" -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" +#: ../../include/features.php:112 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" msgstr "" -#: ../../include/channel.php:1056 -msgid "Online Now" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" msgstr "" -#: ../../include/channel.php:1171 -msgid "Like this channel" +#: ../../include/taxonomy.php:293 +msgid "Keywords" msgstr "" -#: ../../include/channel.php:1195 -msgid "j F, Y" +#: ../../include/taxonomy.php:314 +msgid "have" msgstr "" -#: ../../include/channel.php:1196 -msgid "j F" +#: ../../include/taxonomy.php:314 +msgid "has" msgstr "" -#: ../../include/channel.php:1203 -msgid "Birthday:" +#: ../../include/taxonomy.php:315 +msgid "want" msgstr "" -#: ../../include/channel.php:1216 -#, php-format -msgid "for %1$d %2$s" +#: ../../include/taxonomy.php:315 +msgid "wants" msgstr "" -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" +#: ../../include/taxonomy.php:316 +msgid "likes" msgstr "" -#: ../../include/channel.php:1225 -msgid "Tags:" +#: ../../include/taxonomy.php:317 +msgid "dislikes" msgstr "" -#: ../../include/channel.php:1227 -msgid "Political Views:" +#: ../../include/account.php:28 +msgid "Not a valid email address" msgstr "" -#: ../../include/channel.php:1229 -msgid "Religion:" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/channel.php:1235 -msgid "Likes:" +#: ../../include/account.php:68 +msgid "An invitation is required." msgstr "" -#: ../../include/channel.php:1237 -msgid "Dislikes:" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" +#: ../../include/account.php:122 +msgid "Please enter the required information." msgstr "" -#: ../../include/channel.php:1241 -msgid "My other channels:" +#: ../../include/account.php:189 +msgid "Failed to store account information." msgstr "" -#: ../../include/channel.php:1243 -msgid "Musical interests:" +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/channel.php:1245 -msgid "Books, literature:" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/channel.php:1247 -msgid "Television:" +#: ../../include/account.php:339 +msgid "your registration password" msgstr "" -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/channel.php:1251 -msgid "Love/Romance:" +#: ../../include/account.php:414 +msgid "Account approved." msgstr "" -#: ../../include/channel.php:1253 -msgid "Work/employment:" +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/channel.php:1255 -msgid "School/education:" +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." msgstr "" -#: ../../include/channel.php:1276 -msgid "Like this thing" +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/connections.php:95 -msgid "New window" +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" msgstr "" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" msgstr "" -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " msgstr "" -#: ../../include/event.php:1021 -msgid "Not specified" +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." msgstr "" -#: ../../include/event.php:1022 -msgid "Needs Action" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/event.php:1023 -msgid "Completed" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" msgstr "" -#: ../../include/event.php:1024 -msgid "In Process" +#: ../../include/bbcode.php:346 +msgid "spoiler" msgstr "" -#: ../../include/event.php:1025 -msgid "Cancelled" +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" msgstr "" #: ../../include/contact_widgets.php:11 @@ -9764,72 +9655,178 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" -#: ../../include/account.php:28 -msgid "Not a valid email address" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." +#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1737 +msgid "Logout" msgstr "" -#: ../../include/account.php:68 -msgid "An invitation is required." +#: ../../include/nav.php:84 ../../include/nav.php:117 +msgid "End this session" msgstr "" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." +#: ../../include/nav.php:87 ../../include/nav.php:148 +msgid "Home" msgstr "" -#: ../../include/account.php:122 -msgid "Please enter the required information." +#: ../../include/nav.php:87 +msgid "Your posts and conversations" msgstr "" -#: ../../include/account.php:189 -msgid "Failed to store account information." +#: ../../include/nav.php:88 +msgid "Your profile page" msgstr "" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" +#: ../../include/nav.php:90 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" +#: ../../include/nav.php:92 +msgid "Edit your profile" msgstr "" -#: ../../include/account.php:339 -msgid "your registration password" +#: ../../include/nav.php:94 +msgid "Your photos" msgstr "" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" +#: ../../include/nav.php:95 +msgid "Your files" msgstr "" -#: ../../include/account.php:414 -msgid "Account approved." +#: ../../include/nav.php:98 +msgid "Your chatrooms" msgstr "" -#: ../../include/account.php:454 +#: ../../include/nav.php:104 +msgid "Your bookmarks" +msgstr "" + +#: ../../include/nav.php:108 +msgid "Your webpages" +msgstr "" + +#: ../../include/nav.php:110 +msgid "Your wiki" +msgstr "" + +#: ../../include/nav.php:114 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:131 #, php-format -msgid "Registration revoked for %s" +msgid "%s - click to logout" msgstr "" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." +#: ../../include/nav.php:134 +msgid "Remote authentication" msgstr "" -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/nav.php:134 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." +#: ../../include/nav.php:148 +msgid "Home Page" +msgstr "" + +#: ../../include/nav.php:151 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:163 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:167 +msgid "Applications, utilities, links, games" +msgstr "" + +#: ../../include/nav.php:169 +msgid "Search site @name, #tag, ?docs, content" +msgstr "" + +#: ../../include/nav.php:171 +msgid "Channel Directory" +msgstr "" + +#: ../../include/nav.php:183 +msgid "Your grid" +msgstr "" + +#: ../../include/nav.php:184 +msgid "Mark all grid notifications seen" +msgstr "" + +#: ../../include/nav.php:186 +msgid "Channel home" +msgstr "" + +#: ../../include/nav.php:187 +msgid "Mark all channel notifications seen" +msgstr "" + +#: ../../include/nav.php:193 +msgid "Notices" +msgstr "" + +#: ../../include/nav.php:193 +msgid "Notifications" +msgstr "" + +#: ../../include/nav.php:194 +msgid "See all notifications" +msgstr "" + +#: ../../include/nav.php:197 +msgid "Private mail" +msgstr "" + +#: ../../include/nav.php:198 +msgid "See all private messages" +msgstr "" + +#: ../../include/nav.php:199 +msgid "Mark all private messages seen" +msgstr "" + +#: ../../include/nav.php:205 +msgid "Event Calendar" +msgstr "" + +#: ../../include/nav.php:206 +msgid "See all events" +msgstr "" + +#: ../../include/nav.php:207 +msgid "Mark all events seen" +msgstr "" + +#: ../../include/nav.php:210 +msgid "Manage Your Channels" +msgstr "" + +#: ../../include/nav.php:212 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:220 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:256 +msgid "@name, #tag, ?doc, content" +msgstr "" + +#: ../../include/nav.php:257 +msgid "Please wait..." msgstr "" #: ../../view/theme/redbasic/php/config.php:6 @@ -9964,66 +9961,66 @@ msgstr "" msgid "Set size of followup author photos" msgstr "" -#: ../../boot.php:1169 +#: ../../boot.php:1194 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "" -#: ../../boot.php:1169 +#: ../../boot.php:1194 msgctxt "opensearch" msgid "$Projectname" msgstr "" -#: ../../boot.php:1487 +#: ../../boot.php:1512 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1490 +#: ../../boot.php:1515 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1694 +#: ../../boot.php:1719 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "" -#: ../../boot.php:1715 +#: ../../boot.php:1740 msgid "Login/Email" msgstr "" -#: ../../boot.php:1716 +#: ../../boot.php:1741 msgid "Password" msgstr "" -#: ../../boot.php:1717 +#: ../../boot.php:1742 msgid "Remember me" msgstr "" -#: ../../boot.php:1720 +#: ../../boot.php:1745 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2289 +#: ../../boot.php:2314 msgid "toggle mobile" msgstr "" -#: ../../boot.php:2444 +#: ../../boot.php:2469 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2447 +#: ../../boot.php:2472 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "" -#: ../../boot.php:2551 +#: ../../boot.php:2576 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2555 +#: ../../boot.php:2580 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "" -- cgit v1.2.3 From 002c20391391bf6086d8a4fb7726c7d33058f7cb Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 26 Aug 2016 19:51:39 +0200 Subject: contact-block needs a class clear div at the end to not mess with following widgets and whitespace --- view/tpl/contact_block.tpl | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/view/tpl/contact_block.tpl b/view/tpl/contact_block.tpl index 6a29abaef..580a8a41c 100755 --- a/view/tpl/contact_block.tpl +++ b/view/tpl/contact_block.tpl @@ -1,13 +1,14 @@
    -

    {{$contacts}}

    -{{if $micropro}} - {{if $viewconnections}} - {{$viewconnections}} - {{/if}} -
    - {{foreach $micropro as $m}} - {{$m}} - {{/foreach}} -
    -{{/if}} +

    {{$contacts}}

    + {{if $micropro}} + {{if $viewconnections}} + {{$viewconnections}} + {{/if}} +
    + {{foreach $micropro as $m}} + {{$m}} + {{/foreach}} +
    + {{/if}}
    +
    -- cgit v1.2.3 From 97d7a523a0b8b13c59c7c0a6a3497067aa6d11f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Jim=C3=A9nez=20Friaza?= Date: Thu, 25 Aug 2016 12:14:10 +0200 Subject: Add new page connedit to Spanish context help --- doc/context/es-es/connedit/help.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 doc/context/es-es/connedit/help.html diff --git a/doc/context/es-es/connedit/help.html b/doc/context/es-es/connedit/help.html new file mode 100644 index 000000000..000f28950 --- /dev/null +++ b/doc/context/es-es/connedit/help.html @@ -0,0 +1,12 @@ +
    +
    General
    +
    Esta página le permite cambiar o modificar cualquier ajuste individual para una conexión en concreto o eliminar una conexión completamente. Ha podido llegar a esta página tras crear o aprobar una conexión nueva. Si es así, no tiene por qué hacer nada. Su conexión ya se ha establecido. Es posible que desee añadirla a un grupo o ajustar para ella permisos especiales; si es así, esta página se presenta de modo que usted pueda hacerlo mientras todo el proceso es aún reciente.
    +
    Conexiones
    +
    El menú Conexiones le da acceso a varios ajustes: "Ver el perfil", "Ver la actividad reciente", "Recargar los permisos", añadir o quitar estados ("flags") ("Bloquear", "Ignorar", "Archivar", "Ocultar") y eliminar la conexión.
    +
    Grupos de canales
    +
    Todas las conexiones se puede incluir en uno o varios grupos de canales para formar conjuntos de amigos con acceso a publicaciones concretas, ficheros multimedia y otros tipos de contenido. Puede añadirla aquí a un grupo de canales ya existente o crear un grupo nuevo. Cuando añade la conexión a un grupo que ya existe, el efecto es inmediato y no será requerido para confirmarlo.
    +
    Permisos individuales
    +
    La concesión de permisos es, generalmente, automática y no requiere ninguna acción por su parte. Sin embargo, puede, si lo desea, ajustar permisos especiales, diferentes de los permisos concedidos a otros, para una conexión concreta.
    +
    Ajustes de funcionalidades concretas
    +
    Una serie de ajustes individuales se controlan mediante funcionalidades adicionales que pueden, o no, estar activadas en un hub o para su canal en concreto. Varias funcionalidades adicionales tienen ajustes para cada conexión, Estas funcionalidades se pueden configurar en esta página, de forma adicional, mediante pestañas que pueden estar presentes.
    +
    -- cgit v1.2.3 From 86dd67f57da2f36ab4d4706ce0022e0fd4579b76 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 26 Aug 2016 13:58:37 -0700 Subject: comanche: generalise the conditional variable usage and add $observer as a test. Update comanche doco to reflect recent changes. --- Zotlabs/Render/Comanche.php | 46 +++++++++++++++++++++++----------------- doc/comanche.bb | 51 ++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 73 insertions(+), 24 deletions(-) diff --git a/Zotlabs/Render/Comanche.php b/Zotlabs/Render/Comanche.php index ff5aa7140..b0efa5e0b 100644 --- a/Zotlabs/Render/Comanche.php +++ b/Zotlabs/Render/Comanche.php @@ -99,7 +99,18 @@ class Comanche { } } - + function get_condition_var($v) { + if($v) { + $x = explode('.',$v); + if($x[0] == 'config') + return get_config($x[1],$x[2]); + elseif($x[0] === 'observer') + return get_observer_hash(); + else + return false; + } + return false; + } function test_condition($s) { @@ -112,39 +123,36 @@ class Comanche { // [if $config.system.foo] which will check for a return of a true condition for get_config('system','foo'); // The values 0, '', an empty array, and an unset value will all evaluate to false. - if(preg_match('/[\$]config[\.](.*?)\s\=\=\s(.*?)$/',$s,$matches)) { - $x = explode('.',$matches[1]); - if(get_config(trim($x[0]),trim($x[1])) == trim($matches[2])) + if(preg_match('/[\$](.*?)\s\=\=\s(.*?)$/',$s,$matches)) { + $x = $this->get_condition_var($matches[1]); + if($x == trim($matches[2])) return true; return false; } - if(preg_match('/[\$]config[\.](.*?)\s\!\=\s(.*?)$/',$s,$matches)) { - $x = explode('.',$matches[1]); - if(get_config(trim($x[0]),trim($x[1])) != trim($matches[2])) + if(preg_match('/[\$](.*?)\s\!\=\s(.*?)$/',$s,$matches)) { + $x = $this->get_condition_var($matches[1]); + if($x != trim($matches[2])) return true; return false; } - if(preg_match('/[\$]config[\.](.*?)\s\{\}\s(.*?)$/',$s,$matches)) { - $x = explode('.',$matches[1]); - $y = get_config(trim($x[0]),trim($x[1])); - if(is_array($y) && in_array(trim($matches[2]),$y)) + if(preg_match('/[\$](.*?)\s\{\}\s(.*?)$/',$s,$matches)) { + $x = $this->get_condition_var($matches[1]); + if(is_array($x) && in_array(trim($matches[2]),$x)) return true; return false; } - if(preg_match('/[\$]config[\.](.*?)\s\{\*\}\s(.*?)$/',$s,$matches)) { - $x = explode('.',$matches[1]); - $y = get_config(trim($x[0]),trim($x[1])); - if(is_array($y) && array_key_exists(trim($matches[2]),$y)) + if(preg_match('/[\$](.*?)\s\{\*\}\s(.*?)$/',$s,$matches)) { + $x = $this->get_condition_var($matches[1]); + if(is_array($x) && array_key_exists(trim($matches[2]),$x)) return true; return false; } - - if(preg_match('/[\$]config[\.](.*?)/',$s,$matches)) { - $x = explode('.',$matches[1]); - if(get_config(trim($x[0]),trim($x[1]))) + if(preg_match('/[\$](.*?)/',$s,$matches)) { + $x = $this->get_condition_var($matches[1]); + if($x) return true; return false; } diff --git a/doc/comanche.bb b/doc/comanche.bb index 6a96d5251..177a4252d 100644 --- a/doc/comanche.bb +++ b/doc/comanche.bb @@ -65,17 +65,23 @@ By default, $nav is placed in the "nav" page region and $content is pl To select a theme for your page, use the 'theme' tag. [code] - [theme]apw[/theme] + [theme]suckerberg[/theme] [/code] -This will select the theme named "apw". By default your channel's preferred theme will be used. +This will select the theme named "suckerberg". By default your channel's preferred theme will be used. [code] - [theme=passion]apw[/theme] + [theme=passion]suckerberg[/theme] [/code] -This will select the theme named "apw" and select the "passion" schema (theme variant). +This will select the theme named "suckerberg" and select the "passion" schema (theme variant). Alternatively it may be possible to use a condensed theme notation for this. +[code] + [theme]suckerberg:passion[/theme] + +[/code] + +The condensed notation isn't part of Comanche itself but is recognised by the $Projectname platform as a theme specifier. [b]Regions[/b] Each region has a name, as noted above. You will specify the region of interest using a 'region' tag, which includes the name. Any content you wish placed in this region should be placed between the opening region tag and the closing tag. @@ -164,7 +170,42 @@ The 'comment' tag is used to delimit comments. These comments will not appear on [comment]This is a comment[/comment] [/code] - + +[b]Conditional Execution[/b] +You can use an 'if' construct to make decisions. These are currently based on system configuration variable or the current observer. + +[code] + [if $config.system.foo] + ... the configuration variable system.foo evaluates to 'true'. + [else] + ... the configuration variable system.foo evaluates to 'false'. + [/if] + + [if $observer] + ... this content will only be show to authenticated viewers + [/if] + +[/code] + + The 'else' clause is optional. + + Several tests are supported besides boolean evaluation. + +[code] + [if $config.system.foo == bar] + ... the configuration variable system.foo is equal to the string 'bar' + [/if] + [if $config.system.foo != bar] + ... the configuration variable system.foo is not equal to the string 'bar' + [/if] + [if $config.system.foo {} bar ] + ... the configuration variable system.foo is a simple array containing a value 'bar' + [/if] + [if $config.system.foo {*} bar] + ... the configuration variable system.foo is a simple array containing a key named 'bar' + [/if] +[/code] + [b]Complex Example[/b] [code] [comment]use an existing page template which provides a banner region plus 3 columns beneath it[/comment] -- cgit v1.2.3 From 8e243edd20e758082c3c30fd3053bd9fb0d11dcf Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 26 Aug 2016 14:43:58 -0700 Subject: add a couple of useful observer constructs to support identity aware pages --- Zotlabs/Render/Comanche.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Render/Comanche.php b/Zotlabs/Render/Comanche.php index b0efa5e0b..91f0ce33a 100644 --- a/Zotlabs/Render/Comanche.php +++ b/Zotlabs/Render/Comanche.php @@ -104,8 +104,19 @@ class Comanche { $x = explode('.',$v); if($x[0] == 'config') return get_config($x[1],$x[2]); - elseif($x[0] === 'observer') + elseif($x[0] === 'observer') { + if(count($x) > 1) { + $y = \App::get_observer(); + if(! $y) + return false; + if($x[1] == 'address') + return $y['xchan_addr']; + elseif($x[1] == 'name') + return $y['xchan_name']; + return false; + } return get_observer_hash(); + } else return false; } -- cgit v1.2.3 From aea2fa1629692cc29f1070a66fbde9fb9ae837a6 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 26 Aug 2016 16:01:33 -0700 Subject: issue #186 ...different check for pubforum with expert permissions --- include/zot.php | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/include/zot.php b/include/zot.php index c3c924113..6187e8a61 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3785,20 +3785,14 @@ function zotinfo($arr) { if($role === 'forum' || $role === 'repository') { $public_forum = true; } - elseif($ztarget_hash) { + else { // check if it has characteristics of a public forum based on custom permissions. - $t = q("select * from abconfig where abconfig.cat = 'my_perms' and abconfig.chan = %d and abconfig.xchan = '%s' and abconfig.k in ('tag_deliver', 'send_stream') ", - intval($e['channel_id']), - dbesc($ztarget_hash) - ); - - $ch = 0; - - if($t) { - foreach($t as $tt) { - if($tt['k'] == 'tag_deliver' && $tt['v'] == 1) + $m = \Zotlabs\Access\Permissions::FilledAutoperms($e['channel_id']); + if($m) { + foreach($m as $k => $v) { + if($k == 'tag_deliver' && intval($v) == 1) $ch ++; - if($tt['k'] == 'send_stream' && $tt['v'] == 0) + if($k == 'send_stream' && intval($v) == 0) $ch ++; } if($ch == 2) -- cgit v1.2.3 From 40b2e24c6dd72c91bf14bf5f36c8f737756d594d Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 27 Aug 2016 05:06:12 -0700 Subject: vsprintf error on sql query --- include/photos.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/photos.php b/include/photos.php index 9d15d3692..a3018816c 100644 --- a/include/photos.php +++ b/include/photos.php @@ -715,6 +715,7 @@ function profile_photo_set_profile_perms($uid, $profileid = 0) { if($profileid) { $r = q("SELECT photo, profile_guid, id, is_default, uid FROM profile WHERE uid = %d and ( profile.id = %d OR profile.profile_guid = '%s') LIMIT 1", + intval($uid), intval($profileid), dbesc($profileid) ); -- cgit v1.2.3 From 381b1a066d83198c6f13f8aa920a6e4537f9404f Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 27 Aug 2016 15:30:46 -0700 Subject: doc search broken --- Zotlabs/Module/Help.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Help.php b/Zotlabs/Module/Help.php index cc46c550b..479925b66 100644 --- a/Zotlabs/Module/Help.php +++ b/Zotlabs/Module/Help.php @@ -31,8 +31,8 @@ class Help extends \Zotlabs\Web\Controller { if($r) { $o .= '
      '; foreach($r as $rr) { - $dirname = dirname($rr['sid']); - $fname = basename($rr['sid']); + $dirname = dirname($rr['v']); + $fname = basename($rr['v']); $fname = substr($fname,0,strrpos($fname,'.')); $path = trim(substr($dirname,4),'/'); -- cgit v1.2.3 From 07e28a9757d23b4bffa44f54937fe914a6a106db Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 27 Aug 2016 21:26:16 -0400 Subject: Display text around the searched query in documentation search --- Zotlabs/Module/Help.php | 5 +++-- include/help.php | 9 +++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Module/Help.php b/Zotlabs/Module/Help.php index 479925b66..241354d07 100644 --- a/Zotlabs/Module/Help.php +++ b/Zotlabs/Module/Help.php @@ -36,8 +36,9 @@ class Help extends \Zotlabs\Web\Controller { $fname = substr($fname,0,strrpos($fname,'.')); $path = trim(substr($dirname,4),'/'); - $o .= '
    • ' . ucwords(str_replace('_',' ',notags($fname))) . '
      ' . - str_replace('$Projectname',\Zotlabs\Lib\System::get_platform_name(),substr($rr['text'],0,200)) . '...

    • '; + $o .= '
    • ' . ucwords(str_replace('_',' ',notags($fname))) . '
      ' + . '' . 'help/' . (($path) ? $path . '/' : '') . $fname . '
      ' . + '...' . str_replace('$Projectname',\Zotlabs\Lib\System::get_platform_name(),$rr['text']) . '...

    • '; } $o .= '
    '; diff --git a/include/help.php b/include/help.php index 7f57f3334..4bcc09670 100644 --- a/include/help.php +++ b/include/help.php @@ -40,8 +40,13 @@ function search_doc_files($s) { $r = fetch_post_tags($r,true); for($x = 0; $x < count($r); $x ++) { - - $r[$x]['text'] = $r[$x]['body']; + $position = stripos($r[$x]['body'], $s); + $dislen = 300; + $start = $position-floor($dislen/2); + if ( $start < 0) { + $start = 0; + } + $r[$x]['text'] = substr($r[$x]['body'], $start, $dislen); $r[$x]['rank'] = 0; if($r[$x]['term']) { -- cgit v1.2.3 From f2ff6f394ba993bafd65d49939853f4dabb53dc3 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 27 Aug 2016 19:43:55 -0700 Subject: minor (non-technical) corrections in the plugin doc --- doc/Plugins.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Plugins.md b/doc/Plugins.md index 90ff0fb7d..4147d08fd 100644 --- a/doc/Plugins.md +++ b/doc/Plugins.md @@ -246,7 +246,7 @@ we will create an argc/argv list for use by your module functions ***Porting Friendica Plugins*** -The $Projectname uses a similar plugin architecture to the Friendica project. The authentication, identity, and permissions systems are completely different. Many Friendica can be ported reasonably easily by renaming a few functions - and then ensuring that the permissions model is adhered to. The functions which need to be renamed are: +The $Projectname uses a similar plugin architecture to the Friendica project. The authentication, identity, and permissions systems are completely different. Many Friendica plugins can be ported reasonably easily by renaming a few functions - and then ensuring that the permissions model is adhered to. The functions which need to be renamed are: * Friendica's pluginname_install() is pluginname_load() @@ -258,6 +258,6 @@ The $Projectname has _install and _uninstall functions but these are used differ * Friendica's "plugin_settings_post" hook is called "feature_settings_post" -Changing these will often allow your plugin to function, but please double check all your permission and identity code because the concepts behind it are completely different in the $Projectname. Many structured data names (especially DB schema columns) are also quite different. +Changing these will often allow your plugin to function, but please double check all your permission and identity code because the concepts behind it are completely different in $Projectname. Many structured data names (especially DB schema columns) are also quite different. #include doc/macros/main_footer.bb; -- cgit v1.2.3 From ba224f382dfc02f187591a49b437d89973650e46 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 28 Aug 2016 06:59:26 -0400 Subject: Remove definite article before $Projectname in docs --- doc/Developers.md | 2 +- doc/Features.md | 2 +- doc/Plugins.md | 10 +++++----- doc/Privacy.md | 6 +++--- doc/Translations.md | 2 +- doc/account_basics.bb | 2 +- doc/addons_gnusocial.bb | 8 ++++---- doc/campaign.bb | 18 +++++++++--------- doc/channels.bb | 2 +- doc/cloud.bb | 2 +- doc/comanche.bb | 2 +- doc/connecting_to_channels.bb | 2 +- doc/connecting_to_channels.md | 2 +- doc/develop.bb | 2 +- doc/developers.bb | 2 +- doc/extra_features.bb | 2 +- doc/faq_admins.bb | 2 +- doc/faq_members.bb | 4 ++-- doc/permissions.bb | 2 +- doc/plugins.bb | 6 +++--- doc/problems-following-an-update.bb | 2 +- doc/red2pi.bb | 2 +- doc/sv/main.bb | 2 +- doc/zot.md | 2 +- 24 files changed, 44 insertions(+), 44 deletions(-) diff --git a/doc/Developers.md b/doc/Developers.md index b19b4fc2f..ef02c8327 100644 --- a/doc/Developers.md +++ b/doc/Developers.md @@ -18,7 +18,7 @@ to notify us to merge your work. **Translations** -Our translations are managed through Transifex. If you wish to help out translating the $Projectname to another language, sign up on transifex.com, visit [https://www.transifex.com/projects/p/red-matrix/](https://www.transifex.com/projects/p/red-matrix/) 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. +Our translations are managed through Transifex. If you wish to help out translating $Projectname to another language, sign up on transifex.com, visit [https://www.transifex.com/projects/p/red-matrix/](https://www.transifex.com/projects/p/red-matrix/) 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. [Translations - More Info](help/Translations) diff --git a/doc/Features.md b/doc/Features.md index 3c5105582..a43fd73fa 100644 --- a/doc/Features.md +++ b/doc/Features.md @@ -1,7 +1,7 @@ Extra Features ============== -The default interface of the $Projectname was designed to be uncluttered. There are a huge number of extra features (some of which are extremely useful) which you can turn on and get the most of the application. These are found under the [Extra Features](settings/features) link of your [Settings](settings) page. +The default interface of $Projectname was designed to be uncluttered. There are a huge number of extra features (some of which are extremely useful) which you can turn on and get the most of the application. These are found under the [Extra Features](settings/features) link of your [Settings](settings) page. **Content Expiration** diff --git a/doc/Plugins.md b/doc/Plugins.md index 4147d08fd..88b42185b 100644 --- a/doc/Plugins.md +++ b/doc/Plugins.md @@ -1,9 +1,9 @@ -Creating Plugins/Addons for the $Projectname +Creating Plugins/Addons for $Projectname ========================================== -So you want to make the $Projectname do something it doesn't already do. There are lots of ways. But let's learn how to write a plugin or addon. +So you want to make $Projectname do something it doesn't already do. There are lots of ways. But let's learn how to write a plugin or addon. In your $Projectname folder/directory, you will probably see a sub-directory called 'addon'. If you don't have one already, go ahead and create it. @@ -49,7 +49,7 @@ In our case, we'll call them randplace_load() and randplace_unload(), as that is * pluginname_uninstall() -Next we'll talk about **hooks**. Hooks are places in the $Projectname code where we allow plugins to do stuff. There are a [lot of these](help/Hooks), and they each have a name. What we normally do is use the pluginname_load() function to register a "handler function" for any hooks you are interested in. Then when any of these hooks are triggered, your code will be called. +Next we'll talk about **hooks**. Hooks are places in $Projectname code where we allow plugins to do stuff. There are a [lot of these](help/Hooks), and they each have a name. What we normally do is use the pluginname_load() function to register a "handler function" for any hooks you are interested in. Then when any of these hooks are triggered, your code will be called. We register hook handlers with the 'register_hook()' function. It takes 3 arguments. The first is the hook we wish to catch, the second is the filename of the file to find our handler function (relative to the base of your $Projectname installation), and the third is the function name of your handler function. So let's create our randplace_load() function right now. @@ -246,13 +246,13 @@ we will create an argc/argv list for use by your module functions ***Porting Friendica Plugins*** -The $Projectname uses a similar plugin architecture to the Friendica project. The authentication, identity, and permissions systems are completely different. Many Friendica plugins can be ported reasonably easily by renaming a few functions - and then ensuring that the permissions model is adhered to. The functions which need to be renamed are: +$Projectname uses a similar plugin architecture to the Friendica project. The authentication, identity, and permissions systems are completely different. Many Friendica plugins can be ported reasonably easily by renaming a few functions - and then ensuring that the permissions model is adhered to. The functions which need to be renamed are: * Friendica's pluginname_install() is pluginname_load() * Friendica's pluginname_uninstall() is pluginname_unload() -The $Projectname has _install and _uninstall functions but these are used differently. +$Projectname has _install and _uninstall functions but these are used differently. * Friendica's "plugin_settings" hook is called "feature_settings" diff --git a/doc/Privacy.md b/doc/Privacy.md index 089977d7e..1ac019f5a 100644 --- a/doc/Privacy.md +++ b/doc/Privacy.md @@ -36,11 +36,11 @@ Any information or anything posted by you within $Projectname MAY be public or v Your profile photo, your channel name, and the location (URL or network address) of your channel are visible to anybody on the internet and privacy controls will not affect the display of these items. -You MAY additionally provide other profile information. Any information which you provide in your "default" or **public profile** MAY be transmitted to other hubs in the $Projectname and additionally MAY be displayed in the channel directory. You can restrict the viewing of this profile information. It may be restricted only to members of your hub, or only connections (friends), or other limited sets of viewers as you desire. If you wish for your profile to be restricted, you must set the appropriate privacy setting, or simply DO NOT provide additional information. +You MAY additionally provide other profile information. Any information which you provide in your "default" or **public profile** MAY be transmitted to other hubs in $Projectname and additionally MAY be displayed in the channel directory. You can restrict the viewing of this profile information. It may be restricted only to members of your hub, or only connections (friends), or other limited sets of viewers as you desire. If you wish for your profile to be restricted, you must set the appropriate privacy setting, or simply DO NOT provide additional information. **Content** -Content you provide (status posts, photos, files, etc.) belongs to you. The $Projectname default is to publish content openly and visible to anybody on the internet (PUBLIC). You MAY control this in your channel settings and restrict the default permissions or you MAY restrict the visibility of any single published item separately (PRIVATE). $Projectname developers will ensure that restricted content is ONLY visible to those in the restriction list - to the best of their ability. +Content you provide (status posts, photos, files, etc.) belongs to you. $Projectname default is to publish content openly and visible to anybody on the internet (PUBLIC). You MAY control this in your channel settings and restrict the default permissions or you MAY restrict the visibility of any single published item separately (PRIVATE). $Projectname developers will ensure that restricted content is ONLY visible to those in the restriction list - to the best of their ability. Content (especially status posts) that you share with other networks or that you have made visible to anybody on the internet (PUBLIC) cannot easily be taken back once it has been published. It MAY be shared with other networks and made available through RSS/Atom feeds. It may also be syndicated on other $Projectname sites. It MAY appear on other networks and websites and be visible in internet searches. If you do not wish this default behaviour please adjust your channel settings and restrict who can see your content. @@ -56,7 +56,7 @@ $Projectname developers will ensure that any content you provide which is design Privacy for your identity is another aspect. Because you have a decentralized identity in $Projectname, your privacy extends beyond your home hub. If you want to have complete control of your privacy and security you should run your own hub on a dedicated server. For many people, this is complicated and may stretch their technical abilities. So let's list a few precautions you can make to assure your privacy as much as possible. -A decentralized identity has a lot of advantages and gives you al lot of interesting features, but you should be aware of the fact that your identity is known by other hubs in the $Projectname network. One of those advantages is that other channels can serve you customized content and allow you to see private things (such as private photos which others wish to share with you). Because of this those channels need to know who you are. But we understand that sometimes those other channels know more from you than you might desire. For instance the plug-in Visage that can tell a channel owner the last time you visit their profile. You can easily OPT-OUT of this low level and we think, harmless tracking. +A decentralized identity has a lot of advantages and gives you al lot of interesting features, but you should be aware of the fact that your identity is known by other hubs in $Projectname network. One of those advantages is that other channels can serve you customized content and allow you to see private things (such as private photos which others wish to share with you). Because of this those channels need to know who you are. But we understand that sometimes those other channels know more from you than you might desire. For instance the plug-in Visage that can tell a channel owner the last time you visit their profile. You can easily OPT-OUT of this low level and we think, harmless tracking. * You can enable [Do Not Track (DNT)](http://donottrack.us/) in your web browser. We respect this new privacy policy proposal. All modern browsers support DNT. You will find it in the privacy settings of your browsers or else you can consult the web browser's manual. This will not affect the functionality of $Projectname. This setting is probably enough for most people. diff --git a/doc/Translations.md b/doc/Translations.md index 226fa2e1a..654ba1b83 100644 --- a/doc/Translations.md +++ b/doc/Translations.md @@ -1,4 +1,4 @@ -Translating the $Projectname +Translating $Projectname ========================== Translation Process diff --git a/doc/account_basics.bb b/doc/account_basics.bb index ba2380df7..664949d6e 100644 --- a/doc/account_basics.bb +++ b/doc/account_basics.bb @@ -10,7 +10,7 @@ Please provide a valid email address. Your email address is never published. Thi [b]Password[/b] -Enter a password of your choice, and repeat it in the second box to ensure it was typed correctly. As the $Projectname offers a decentralised identity, your account can log you in to many other websites. +Enter a password of your choice, and repeat it in the second box to ensure it was typed correctly. As $Projectname offers a decentralised identity, your account can log you in to many other websites. [b]Terms Of Service[/b] diff --git a/doc/addons_gnusocial.bb b/doc/addons_gnusocial.bb index dfdce5f6a..d9aed9ac5 100644 --- a/doc/addons_gnusocial.bb +++ b/doc/addons_gnusocial.bb @@ -8,7 +8,7 @@ https://yourgnusocialinstance.org/settings/oauthapps Next, click the link to Register a new application. That brings up the new application form. Here's what to do on each field. -Icon. I uploaded the $Projectname icon located at this link, after saving it to my computer: +Icon. I uploaded $Projectname icon located at this link, after saving it to my computer: https://github.com/redmatrix/hubzilla/blob/master/images/rm-32.png @@ -39,7 +39,7 @@ Then click on the icon or the name of the application for the information you'll Now open up a new tab or window and go to your $Projectname account, to Settings > Feature settings. Find the StatusNet Posting Settings. -Insert the strings of numbers given on the GNUsocial site into the $Projectname fields for Consumer Key and Consumer Secret. +Insert the strings of numbers given on the GNUsocial site into $Projectname fields for Consumer Key and Consumer Secret. The Base API Path (remember the trailing /) will be your instance domain, plus the /api/ following. It will probably look like this: @@ -51,9 +51,9 @@ StatusNet application name: Insert the name you gave to the application over on Click Submit. -A button will appear for you to "Sign in to StatusNet." Click it and that will open a tab or window on the GNUsocial site for you to click "Allow." Once clicked and successfully authorized, a security code number will appear. Copy it and go back to the $Projectname app you just left and insert it in the field: "Copy the security code from StatusNet here." Click Submit. +A button will appear for you to "Sign in to StatusNet." Click it and that will open a tab or window on the GNUsocial site for you to click "Allow." Once clicked and successfully authorized, a security code number will appear. Copy it and go back to $Projectname app you just left and insert it in the field: "Copy the security code from StatusNet here." Click Submit. -If successful, your information from the GNUsocial instance should appear in the $Projectname app. +If successful, your information from the GNUsocial instance should appear in $Projectname app. You now have several options to choose, if you desire, and those will need to be confirmed by clicking "Submit" also. The most interesting is "Send public postings to StatusNet by default." This option automatically sends any post of yours made in your $Projectname account to your GNUsocial instance. diff --git a/doc/campaign.bb b/doc/campaign.bb index 48f28f0c0..750412ba3 100644 --- a/doc/campaign.bb +++ b/doc/campaign.bb @@ -4,7 +4,7 @@ [b][color= grey][size=18]Single-click sign on, nomadic identity, censorship-resistance, privacy, self-hosting[/size][/color][/b] -We started the $Projectname project by asking ourselves a few questions: +We started $Projectname project by asking ourselves a few questions: - Imagine if it was possible to just access the content of different web sites, without the need to enter usernames and passwords for every site. Such a feature would permit Single-Click user identification: the ability to access sites simply by clicking on links to remote sites. Authentication just happens automagically behind the scenes. Forget about remembering multiple user names with multiple passwords when accessing different sites online. @@ -52,7 +52,7 @@ Think of it this way: the internet is nothing, but a bunch of permissions and a [b][color= grey][size=20]The Matrix is Born![/size][/color][/b] -After asking and striving to answer a number of such questions, we realized that we were imagining a general purpose communication network with a number of unique, and potentially game-changing, features. We called it the $Projectname and started thinking of it as an over-lay on top of the internet as it exists today; an operating system re-invented as a communication network, with its own permissions, access control lists, protocol, connectors to others services, and open-ended possibilities via its API. The sum of the matrix is greater than it's parts. We're not building website, but a way for websites to link together and grow into something that is unique and ever-changing, with autonomy and privacy. +After asking and striving to answer a number of such questions, we realized that we were imagining a general purpose communication network with a number of unique, and potentially game-changing, features. We called it $Projectname and started thinking of it as an over-lay on top of the internet as it exists today; an operating system re-invented as a communication network, with its own permissions, access control lists, protocol, connectors to others services, and open-ended possibilities via its API. The sum of the matrix is greater than it's parts. We're not building website, but a way for websites to link together and grow into something that is unique and ever-changing, with autonomy and privacy. It's a lot of work, for anyone. So far, we've got a team of a handful of volunteers, code geeks, brave early adopters, system administrators and other good people, willing to give the project a shot. We're motivated by our commitment to a free web, where privacy is built-in, and corporations don't have a stranglehold on our daily communication. @@ -60,7 +60,7 @@ We need your help to finish it and release it to the world! [b][color= grey][size=20]What have we written so far[/size][/color][/b] -As of the today, the $Projectname is in developer preview (alpha) state. It is not ready for everyday use, but some of the initial set of core features are implemented (again, in alpha state). These include: +As of the today, $Projectname is in developer preview (alpha) state. It is not ready for everyday use, but some of the initial set of core features are implemented (again, in alpha state). These include: - Zot, the protocol powering the matrix - Single-signon logins. @@ -71,7 +71,7 @@ As of the today, the $Projectname is in developer preview (alpha) state. It is [b][color= grey][size=20]Our TO-DO List[/size][/color][/b] -However, in addition to finishing and polishing the above, there are a number of features that have to implemented to make the $Projectname ready for daily use. If we meet our fundraising goal, we hope to dive into the following road map, by order of priority: +However, in addition to finishing and polishing the above, there are a number of features that have to implemented to make $Projectname ready for daily use. If we meet our fundraising goal, we hope to dive into the following road map, by order of priority: - A professionally designed user interface (UI), interface that is adaptive to any user level, from end users who want to use the Matrix as a social network, to tinkerers who will put together a customized blog using Comanche, to hackers who will develop and extend the matrix using a built-in code editor, that hooks to the API and the git. @@ -145,7 +145,7 @@ You get one of your $Projectname t-shirts, as well as our undying gratitude. Each contributor at this level gets their own $Projectname virtual private server, installed, hosted and supported by us for a period of 1 year. -[b][color= grey][size=20]Why are we so excited about the $Projectname?[/size][/color][/b] +[b][color= grey][size=20]Why are we so excited about $Projectname?[/size][/color][/b] {SOMETHING ABOUT THE POTENTIAL IMPACT OF RED, ITS INNOVATIONS, ETC> @@ -167,7 +167,7 @@ Perhaps you're good at writing and documenting stuff. Grab an account at one of [b]1. Is Red a social network?[/b] -The $Projectname is not a social network. We're thinking of it as a general purpose communication network, with sharing, and public/private communications built into the matrix. +$Projectname is not a social network. We're thinking of it as a general purpose communication network, with sharing, and public/private communications built into the matrix. [b]2. What is the difference between Red and Friendica?[/b] @@ -177,7 +177,7 @@ Friendica is really, really good at sending postcards. It can do all sorts of th What Friendica can't do, is wave a postcard at somebody and expect them to believe that holding this postcard prove you are who you say you are. Sure, if you've been sending somebody postcards, they might accept that it is you in the picture, but somebody who has never heard of you will not accept ownership of a postcard as proof of identity. -The $Projectname offers a passport. +$Projectname offers a passport. You can still use it to send postcards. At the same time, when you wave your passport at somebody, they do accept it as proof of identity. No longer do you need to register at every single site you use. You already have an account - it's just not necessarily at our site - so we'll ask to see your passport instead. @@ -194,7 +194,7 @@ We use MySQL as our database (this include any forks such as, MariaDB or Percona [b]5. How is the Affinity Slider different from Mozilla's Persona?[/b] {COMPLETE} -[b]6. Does the $Projectname use encryption? Details please![/b] +[b]6. Does $Projectname use encryption? Details please![/b] Yes, we do our best to use free and open source encryption libraries to help achieve privacy from general, mass surveillance. @@ -207,7 +207,7 @@ For more info on our initial implementation of encrypted communication, check ou [b]7. What do you mean by decentralization? [/b] -[b]8. Can I build my own website with in the $Projectname?[/b] +[b]8. Can I build my own website with in $Projectname?[/b] Yes. The short explanation: We've got this spiffy idea we're calling "Comanche", which will allow non-programmers to build complete custom websites, and any such website will be able to connect to any other website or channel in the matrix. The goal of Comanche is to hide the technical complexities of communicating in the matrix, while encouraging people to use their creativity and put together their own unique presence on the matrix. diff --git a/doc/channels.bb b/doc/channels.bb index 14d588266..eca8dd0e6 100644 --- a/doc/channels.bb +++ b/doc/channels.bb @@ -28,7 +28,7 @@ Once you have done this, your channel is ready to use. At [observer=1][observer. [h3]The grid, permissions and delegation[/h3] -The "Grid" page contains all recent posts from across the $Projectname network, again in reverse chronologial order. The exact posts that appear here depend largely on your permissions. At their most permissive, you will receive posts from complete strangers. At the other end of the scale, you may see posts from only your friends - or if you're feeling really anti-social, only your own posts. +The "Grid" page contains all recent posts from across $Projectname network, again in reverse chronologial order. The exact posts that appear here depend largely on your permissions. At their most permissive, you will receive posts from complete strangers. At the other end of the scale, you may see posts from only your friends - or if you're feeling really anti-social, only your own posts. As mentioned at the start, many other kinds of channel are possible, however, the creation procedure is the same. The difference between channels lies primarily in the permissions assigned. For example, a channel for sharing documents with colleagues at work would probably want more permissive settings for "Can write to my "public" file storage" than a personal account. For more information, see the [zrl=[baseurl]/help/roles]permissions section[/zrl]. diff --git a/doc/cloud.bb b/doc/cloud.bb index 3e0ac1fd3..2ad22806b 100644 --- a/doc/cloud.bb +++ b/doc/cloud.bb @@ -1,6 +1,6 @@ [b]Personal Cloud Storage[/b] -The $Projectname provides an ability to store privately and/or share arbitrary files with friends. +$Projectname provides an ability to store privately and/or share arbitrary files with friends. You may either upload files from your computer into your storage area, or copy them directly from the operating system using the WebDAV protocol. diff --git a/doc/comanche.bb b/doc/comanche.bb index 177a4252d..4b198d657 100644 --- a/doc/comanche.bb +++ b/doc/comanche.bb @@ -81,7 +81,7 @@ This will select the theme named "suckerberg" and select the "pas [/code] -The condensed notation isn't part of Comanche itself but is recognised by the $Projectname platform as a theme specifier. +The condensed notation isn't part of Comanche itself but is recognised by $Projectname platform as a theme specifier. [b]Regions[/b] Each region has a name, as noted above. You will specify the region of interest using a 'region' tag, which includes the name. Any content you wish placed in this region should be placed between the opening region tag and the closing tag. diff --git a/doc/connecting_to_channels.bb b/doc/connecting_to_channels.bb index be37eb25c..291323f75 100644 --- a/doc/connecting_to_channels.bb +++ b/doc/connecting_to_channels.bb @@ -1,6 +1,6 @@ [b]Connecting To Channels[/b] -Connections in the $Projectname can take on a great many different meanings. But let's keep it simple, you want to be friends with somebody like you are familiar with from social networking. How do you do it? +Connections in $Projectname can take on a great many different meanings. But let's keep it simple, you want to be friends with somebody like you are familiar with from social networking. How do you do it? First, you need to find some channels to connect to. There are two primary ways of doing this. Firstly, setting the "Can send me their channel stream and posts" permission to "Anybody in this network" will bring posts from complete strangers to your matrix. This will give you a lot of public content and should hopefully help you find interesting, entertaing people, forums, and channels. diff --git a/doc/connecting_to_channels.md b/doc/connecting_to_channels.md index 60834c244..349f58b67 100644 --- a/doc/connecting_to_channels.md +++ b/doc/connecting_to_channels.md @@ -1,6 +1,6 @@ # Connecting To Channels # -Connections in the $Projectname can take on a great many different meanings. But let's keep it simple, you want to be friends with somebody like you are familiar with from social networking. How do you do it? +Connections in $Projectname can take on a great many different meanings. But let's keep it simple, you want to be friends with somebody like you are familiar with from social networking. How do you do it? First, you need to find some channels to connect to. There are two primary ways of doing this. Firstly, setting the "Can send me their channel stream and posts" permission to "Anybody in this network" will bring posts from complete strangers to your matrix. This will give you a lot of public content and should hopefully help you find interesting, entertaing people, forums, and channels. diff --git a/doc/develop.bb b/doc/develop.bb index 7a7350049..20e987a5a 100644 --- a/doc/develop.bb +++ b/doc/develop.bb @@ -20,7 +20,7 @@ [zrl=[baseurl]/help/api_posting]Posting to $Projectname using the API[/zrl] [zrl=[baseurl]/help/developer_function_primer]Red Functions 101[/zrl] [zrl=[baseurl]/doc/html/]Code Reference (Doxygen generated - sets cookies)[/zrl] -[zrl=[baseurl]/help/to_do_doco]To-Do list for the $Projectname Documentation Project[/zrl] +[zrl=[baseurl]/help/to_do_doco]To-Do list for $Projectname Documentation Project[/zrl] [zrl=[baseurl]/help/to_do_code]To-Do list for Developers[/zrl] [zrl=[baseurl]/help/roadmap]Roadmap[/zrl] [zrl=[baseurl]/help/git_for_non_developers]Git for Non-Developers[/zrl] diff --git a/doc/developers.bb b/doc/developers.bb index c7cf66093..f8489640b 100644 --- a/doc/developers.bb +++ b/doc/developers.bb @@ -19,7 +19,7 @@ to notify us to merge your work. [b]Translations[/b] -Our translations are managed through Transifex. If you wish to help out translating the $Projectname 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. +Our translations are managed through Transifex. If you wish to help out translating $Projectname 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=[baseurl]/help/Translations]Translations - More Info[/zrl] diff --git a/doc/extra_features.bb b/doc/extra_features.bb index 9fb43d9a1..0044a06a7 100644 --- a/doc/extra_features.bb +++ b/doc/extra_features.bb @@ -1,7 +1,7 @@ // multiple of these have been enabled by default. should we note this here somewhere, move it or remove them from this file? [b]Features[/b] -The default interface of the $Projectname was designed to be uncluttered. There are a huge number of extra features (some of which are extremely useful) which you can turn on and get the most of the application. These are found under the Extra Features link of your Settings page. +The default interface of $Projectname was designed to be uncluttered. There are a huge number of extra features (some of which are extremely useful) which you can turn on and get the most of the application. These are found under the Extra Features link of your Settings page. [b]Content Expiration[/b] diff --git a/doc/faq_admins.bb b/doc/faq_admins.bb index 63418c1dc..0b54a41de 100644 --- a/doc/faq_admins.bb +++ b/doc/faq_admins.bb @@ -1,4 +1,4 @@ -[size=large][b]The $Projectname FAQ[/b][/size] +[size=large][b]$Projectname FAQ[/b][/size] [toc] diff --git a/doc/faq_members.bb b/doc/faq_members.bb index 7af61df9b..c7f50314d 100644 --- a/doc/faq_members.bb +++ b/doc/faq_members.bb @@ -1,11 +1,11 @@ -[size=large][b]The $Projectname FAQ[/b][/size] +[size=large][b]$Projectname FAQ[/b][/size] [toc] [h3]I am able to edit a post's text after I saved it, but is there a way to change the permissions?[/h3] Short anser: No, there isn't. There are reasons. You are able to change permissons to your files, photos and the likes, but not to posts after you have saved them. The main reason is: Once you have saved a post it is being distributed either to the public channel and from there to other $Projectname servers or to those you intended it to go. Just like you cannot reclaim something you gave to another person, you cannot change permissions to $Projectname posts. We would need to track everywhere your posting goes, keep track of everyone you allowed to see it and then keep track of from whom to delete it. -If a posting is public this is even harder, as the $Projectname is a global network and there is no way to follow a post, let alone reclaim it reliably. Other networks that may receive your post have no reliable way to delete or reclaim the post. +If a posting is public this is even harder, as $Projectname is a global network and there is no way to follow a post, let alone reclaim it reliably. Other networks that may receive your post have no reliable way to delete or reclaim the post. [h3]I downloaded my channel and imported it (cloned my identity) to another site but there is no content, no posts, no photos. What is wrong???[/h3] Posts and photos/files are provided separately from the channel basic information. This is due to memory limitations dealing with years of conversations and photo archives. Posts and conversations can be synced separately from the basic channel information. Photos and file archives can be transferred using a plugin tool such as 'redfiles', which is currently listed as "experimental". When creating this feature we thought that keeping all your contacts was the most important task. Your friends have already seen your old content. Posts/conversations were next in priority and these may now be synced. Files and photos are the last bit to get completely working. Once we find someone willing to finish implementing this, it will be done. :) diff --git a/doc/permissions.bb b/doc/permissions.bb index cc831dd61..0721c763d 100644 --- a/doc/permissions.bb +++ b/doc/permissions.bb @@ -28,7 +28,7 @@ We highly recommend that you use the "typical social network" settings when you [*= Anybody On This Hub ] Anybody with a channel on the same hub/website as you will have permission approved. Anybody who is registered at a different hub will have this permission denied. - [*= Anybody in this network ] Anybody in the $Projectname will have this permission approved. Even complete strangers. However, anybody not logged in/authenticated will have this permission denied. + [*= Anybody in this network ] Anybody in $Projectname will have this permission approved. Even complete strangers. However, anybody not logged in/authenticated will have this permission denied. [*= Anybody authenticated ] This is similar to "anybody in this network" except that it can include anybody who can authenticate by any means - and therefore [i]may[/i] include visitors from other networks. diff --git a/doc/plugins.bb b/doc/plugins.bb index f2f0b04e8..a320de790 100644 --- a/doc/plugins.bb +++ b/doc/plugins.bb @@ -45,7 +45,7 @@ In our case, we'll call them randplace_load() and randplace_unload(), as that is pluginname_uninstall() [/code] -Next we'll talk about [b]hooks[/b]. Hooks are places in the $Projectname code where we allow plugins to do stuff. There are a [url=[baseurl]/help/hooklist]lot of these[/url], and they each have a name. What we normally do is use the pluginname_load() function to register a "handler function" for any hooks you are interested in. Then when any of these hooks are triggered, your code will be called. +Next we'll talk about [b]hooks[/b]. Hooks are places in $Projectname code where we allow plugins to do stuff. There are a [url=[baseurl]/help/hooklist]lot of these[/url], and they each have a name. What we normally do is use the pluginname_load() function to register a "handler function" for any hooks you are interested in. Then when any of these hooks are triggered, your code will be called. We register hook handlers with the 'Zotlabs\Extend\Hook::register()' function. It typically takes 3 arguments. The first is the hook we wish to catch, the second is the filename of the file to find our handler function (relative to the base of your $Projectname installation), and the third is the function name of your handler function. So let's create our randplace_load() function right now. @@ -295,13 +295,13 @@ If you want to keep your plugin hidden from the siteinfo page, simply create a f ***Porting Friendica Plugins*** -The $Projectname uses a similar plugin architecture to the Friendica project. The authentication, identity, and permissions systems are completely different. Many Friendica can be ported reasonably easily by renaming a few functions - and then ensuring that the permissions model is adhered to. The functions which need to be renamed are: +$Projectname uses a similar plugin architecture to the Friendica project. The authentication, identity, and permissions systems are completely different. Many Friendica can be ported reasonably easily by renaming a few functions - and then ensuring that the permissions model is adhered to. The functions which need to be renamed are: [li] Friendica's pluginname_install() is pluginname_load()[/li] [li] Friendica's pluginname_uninstall() is pluginname_unload()[/li] -The $Projectname has _install and _uninstall functions but these are used differently. +$Projectname has _install and _uninstall functions but these are used differently. [li] Friendica's "plugin_settings" hook is called "feature_settings"[/li] diff --git a/doc/problems-following-an-update.bb b/doc/problems-following-an-update.bb index 3bc7e9a51..2d1fefc5b 100644 --- a/doc/problems-following-an-update.bb +++ b/doc/problems-following-an-update.bb @@ -28,7 +28,7 @@ We use the Smarty3 template engine to generate pages. These templates are compi [b]Theme Issues[/b] -There are many themes for The $Projectname. Only Redbasic is officialy supported by the core developers. This applies [i]even if a core developer happens to support an additional theme[/i]. This means new features are only guaranteed to work in Redbasic. +There are many themes for $Projectname. Only Redbasic is officialy supported by the core developers. This applies [i]even if a core developer happens to support an additional theme[/i]. This means new features are only guaranteed to work in Redbasic. Redbasic uses a few javascript libraries that are done differently, or entirely absent in other themes. This means new features may only work properly in Redbasic. Before reporting an issue, therefore, you should switch to Redbasic to see if it exists there. If the issue goes away, this is not a bug - it's a theme that isn't up to date. diff --git a/doc/red2pi.bb b/doc/red2pi.bb index 18e7d325a..28db7dc70 100644 --- a/doc/red2pi.bb +++ b/doc/red2pi.bb @@ -1,4 +1,4 @@ -[b]How to install the $Projectname on a Raspberry Pi[/b] +[b]How to install $Projectname on a Raspberry Pi[/b] You just bought a Raspberry Pi and want to run the RED Matrix with your own domain name? diff --git a/doc/sv/main.bb b/doc/sv/main.bb index a5c1d4f7a..1ab77a499 100644 --- a/doc/sv/main.bb +++ b/doc/sv/main.bb @@ -13,7 +13,7 @@ Zot är en fantastisk ny kommunikationsprotokoll uppfunnit speciellt för $Proje [h3]Kom igång[/h3] [zrl=[baseurl]/help/Privacy]Privacy Policy[/zrl] [zrl=[baseurl]/help/registration]Account Registration[/zrl] -[zrl=[baseurl]/help/accounts_profiles_channels_basics]You at the $Projectname: accounts, profiles and channels in short[/zrl] +[zrl=[baseurl]/help/accounts_profiles_channels_basics]You at $Projectname: accounts, profiles and channels in short[/zrl] [zrl=[baseurl]/help/profiles]Profiles[/zrl] [zrl=[baseurl]/help/channels]Channels[/zrl] [zrl=[baseurl]/help/sv/roles]Behörighetsförval för kanaler[/zrl] diff --git a/doc/zot.md b/doc/zot.md index 1e454e495..06c4d6083 100644 --- a/doc/zot.md +++ b/doc/zot.md @@ -57,7 +57,7 @@ In order to implement high performance communications, the data transfer format 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 $Projectname 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. +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. $Projectname 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. -- cgit v1.2.3 From 8931adc0487ef95da1d52f4133dfa63696ccdb2b Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 28 Aug 2016 16:17:58 -0700 Subject: fix aconfig --- Zotlabs/Lib/AConfig.php | 2 +- Zotlabs/Module/Register.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Lib/AConfig.php b/Zotlabs/Lib/AConfig.php index 24ec97dfa..ab8648a18 100644 --- a/Zotlabs/Lib/AConfig.php +++ b/Zotlabs/Lib/AConfig.php @@ -15,7 +15,7 @@ class AConfig { } static public function Set($account_id,$family,$key,$value) { - return XConfig::Get('a_' . $account_id,$family,$key,$value); + return XConfig::Set('a_' . $account_id,$family,$key,$value); } static public function Delete($account_id,$family,$key) { diff --git a/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php index 4cdd27001..0b16d4a66 100644 --- a/Zotlabs/Module/Register.php +++ b/Zotlabs/Module/Register.php @@ -38,7 +38,7 @@ class Register extends \Zotlabs\Web\Controller { } - function post() { + function post() { $max_dailies = intval(get_config('system','max_daily_registrations')); if($max_dailies) { -- cgit v1.2.3 From 689f232243c11dc4211d1daed353032ced0e7229 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 28 Aug 2016 19:36:14 -0700 Subject: move allowed email domains to admin->security page --- Zotlabs/Module/Admin.php | 16 ++++++++-------- view/tpl/admin_security.tpl | 3 +++ view/tpl/admin_site.tpl | 2 -- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php index 15edbd407..4c1d56f02 100644 --- a/Zotlabs/Module/Admin.php +++ b/Zotlabs/Module/Admin.php @@ -289,8 +289,6 @@ class Admin extends \Zotlabs\Web\Controller { $mirror_frontpage = ((x($_POST,'mirror_frontpage')) ? intval(trim($_POST['mirror_frontpage'])) : 0); $directory_server = ((x($_POST,'directory_server')) ? trim($_POST['directory_server']) : ''); $allowed_sites = ((x($_POST,'allowed_sites')) ? notags(trim($_POST['allowed_sites'])) : ''); - $allowed_email = ((x($_POST,'allowed_email')) ? notags(trim($_POST['allowed_email'])) : ''); - $not_allowed_email = ((x($_POST,'not_allowed_email')) ? notags(trim($_POST['not_allowed_email'])) : ''); $force_publish = ((x($_POST,'publish_all')) ? True : False); $disable_discover_tab = ((x($_POST,'disable_discover_tab')) ? False : True); $login_on_homepage = ((x($_POST,'login_on_homepage')) ? True : False); @@ -357,8 +355,6 @@ class Admin extends \Zotlabs\Web\Controller { set_config('system','account_abandon_days', $abandon_days); set_config('system','register_text', $register_text); set_config('system','allowed_sites', $allowed_sites); - set_config('system','allowed_email', $allowed_email); - set_config('system','not_allowed_email', $not_allowed_email); set_config('system','publish_all', $force_publish); set_config('system','disable_discover_tab', $disable_discover_tab); if ($global_directory == '') { @@ -527,8 +523,6 @@ class Admin extends \Zotlabs\Web\Controller { '$mirror_frontpage' => array('mirror_frontpage', t("Preserve site homepage URL"), get_config('system','mirror_frontpage'), t('Present the site homepage in a frame at the original location instead of redirecting')), '$abandon_days' => array('abandon_days', t('Accounts abandoned after x days'), get_config('system','account_abandon_days'), t('Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.')), '$allowed_sites' => array('allowed_sites', t("Allowed friend domains"), get_config('system','allowed_sites'), t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")), - '$allowed_email' => array('allowed_email', t("Allowed email domains"), get_config('system','allowed_email'), t("Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains")), - '$not_allowed_email' => array('not_allowed_email', t("Not allowed email domains"), get_config('system','not_allowed_email'), t("Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined.")), '$verify_email' => array('verify_email', t("Verify Email Addresses"), get_config('system','verify_email'), t("Check to verify email addresses used in account registration (recommended).")), '$force_publish' => array('publish_all', t("Force publish"), get_config('system','publish_all'), t("Check to force all profiles on this site to be listed in the site directory.")), '$disable_discover_tab' => array('disable_discover_tab', t('Import Public Streams'), $discover_tab, t('Import and allow access to public content pulled from other sites. Warning: this content is unmoderated.')), @@ -604,8 +598,12 @@ class Admin extends \Zotlabs\Web\Controller { function admin_page_security_post(&$a){ check_form_security_token_redirectOnErr('/admin/security', 'admin_security'); - logger('post: ' . print_r($_POST,true)); - + $allowed_email = ((x($_POST,'allowed_email')) ? notags(trim($_POST['allowed_email'])) : ''); + $not_allowed_email = ((x($_POST,'not_allowed_email')) ? notags(trim($_POST['not_allowed_email'])) : ''); + + set_config('system','allowed_email', $allowed_email); + set_config('system','not_allowed_email', $not_allowed_email); + $block_public = ((x($_POST,'block_public')) ? True : False); set_config('system','block_public',$block_public); @@ -771,6 +769,8 @@ class Admin extends \Zotlabs\Web\Controller { '$block_public' => array('block_public', t("Block public"), get_config('system','block_public'), t("Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated.")), '$transport_security' => array('transport_security', t('Set "Transport Security" HTTP header'),intval(get_config('system','transport_security_header')),''), '$content_security' => array('content_security', t('Set "Content Security Policy" HTTP header'),intval(get_config('system','content_security_policy')),''), + '$allowed_email' => array('allowed_email', t("Allowed email domains"), get_config('system','allowed_email'), t("Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains")), + '$not_allowed_email' => array('not_allowed_email', t("Not allowed email domains"), get_config('system','not_allowed_email'), t("Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined.")), '$whitelisted_sites' => array('whitelisted_sites', t('Allow communications only from these sites'), $whitesites_str, t('One site per line. Leave empty to allow communication from anywhere by default')), '$blacklisted_sites' => array('blacklisted_sites', t('Block communications from these sites'), $blacksites_str, ''), '$whitelisted_channels' => array('whitelisted_channels', t('Allow communications only from these channels'), $whitechannels_str, t('One channel (hash) per line. Leave empty to allow from any channel by default')), diff --git a/view/tpl/admin_security.tpl b/view/tpl/admin_security.tpl index 721b5f38f..409e9fc7d 100755 --- a/view/tpl/admin_security.tpl +++ b/view/tpl/admin_security.tpl @@ -11,6 +11,9 @@ {{include file="field_checkbox.tpl" field=$content_security}} {{include file="field_checkbox.tpl" field=$embed_sslonly}} + {{include file="field_textarea.tpl" field=$allowed_email}} + {{include file="field_textarea.tpl" field=$not_allowed_email}} + {{include file="field_textarea.tpl" field=$whitelisted_sites}} {{include file="field_textarea.tpl" field=$blacklisted_sites}} diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index d810e69f7..56e6087d6 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -62,8 +62,6 @@ {{include file="field_select.tpl" field=$register_policy}} {{include file="field_checkbox.tpl" field=$invite_only}} {{include file="field_select.tpl" field=$access_policy}} - {{include file="field_textarea.tpl" field=$allowed_email}} - {{include file="field_textarea.tpl" field=$not_allowed_email}}

    {{$upload}}

    -- cgit v1.2.3 From fb13e69b8e6fcb05e17be6a6bff79491a9639152 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 28 Aug 2016 21:48:17 -0700 Subject: supercedes pull request #503 --- Zotlabs/Module/Admin.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php index 4c1d56f02..fa4f32c8c 100644 --- a/Zotlabs/Module/Admin.php +++ b/Zotlabs/Module/Admin.php @@ -1288,19 +1288,27 @@ class Admin extends \Zotlabs\Web\Controller { if (x($_GET,"a") && $_GET['a']=="t"){ check_form_security_token_redirectOnErr('/admin/plugins', 'admin_plugins', 't'); - + $pinstalled = false; // Toggle plugin status $idx = array_search($plugin, \App::$plugins); if ($idx !== false){ unset(\App::$plugins[$idx]); uninstall_plugin($plugin); + $pinstalled = false; info( sprintf( t("Plugin %s disabled."), $plugin ) ); } else { \App::$plugins[] = $plugin; install_plugin($plugin); + $pinstalled = true; info( sprintf( t("Plugin %s enabled."), $plugin ) ); } set_config("system","addon", implode(", ",\App::$plugins)); + + if($pinstalled) { + @require_once("addon/$plugin/$plugin.php"); + if(function_exists($plugin.'_plugin_admin')) + goaway(z_root() . '/admin/plugins/' . $plugin); + } goaway(z_root() . '/admin/plugins' ); } // display plugin details -- cgit v1.2.3 From 810d9fefd9778445994d1b88f18996193005f4c2 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 28 Aug 2016 22:18:51 -0700 Subject: create smarty dir before any templates can be initialised --- Zotlabs/Module/Setup.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index f8e210410..8be0dc7e7 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -45,9 +45,10 @@ class Setup extends \Zotlabs\Web\Controller { if (x($_POST, 'pass')) $this->install_wizard_pass = intval($_POST['pass']); - else + else { $this->install_wizard_pass = 1; - + @os_mkdir(TEMPLATE_BUILD_PATH, STORAGE_DEFAULT_PERMISSIONS, true); + } } /** -- cgit v1.2.3 From 6b4cfe4f180a10e3008356c3a4590ad313fa88dd Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 28 Aug 2016 22:24:27 -0700 Subject: Before throwing a 'smarty3 dir does not exist' fatal error, try and create it. We did try and create it during install, but the template processor is initalised long before we get to that code (and throws that ugly error). --- Zotlabs/Module/Setup.php | 4 ++-- Zotlabs/Render/SmartyTemplate.php | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index 8be0dc7e7..610f3c4f4 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -43,11 +43,11 @@ class Setup extends \Zotlabs\Web\Controller { killme(); } - if (x($_POST, 'pass')) + if (x($_POST, 'pass')) { $this->install_wizard_pass = intval($_POST['pass']); + } else { $this->install_wizard_pass = 1; - @os_mkdir(TEMPLATE_BUILD_PATH, STORAGE_DEFAULT_PERMISSIONS, true); } } diff --git a/Zotlabs/Render/SmartyTemplate.php b/Zotlabs/Render/SmartyTemplate.php index b7e68c1bc..7abe0731c 100755 --- a/Zotlabs/Render/SmartyTemplate.php +++ b/Zotlabs/Render/SmartyTemplate.php @@ -15,7 +15,10 @@ class SmartyTemplate implements TemplateEngine { ? \App::$config['system']['smarty3_folder'] : ''); if (!$basecompiledir) $basecompiledir = str_replace('Zotlabs','',dirname(__dir__)) . "/" . TEMPLATE_BUILD_PATH; if (!is_dir($basecompiledir)) { - echo "ERROR: folder $basecompiledir does not exist."; killme(); + @os_mkdir(TEMPLATE_BUILD_PATH, STORAGE_DEFAULT_PERMISSIONS, true); + if (!is_dir($basecompiledir)) { + echo "ERROR: folder $basecompiledir does not exist."; killme(); + } } if(!is_writable($basecompiledir)){ echo "ERROR: folder $basecompiledir must be writable by webserver."; killme(); -- cgit v1.2.3 From 4050ff7c1f5a1acd34f58af3d41d12be49331ac7 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Aug 2016 12:48:16 +0200 Subject: make lock switching actually work with multiple acl forms --- view/js/acl.js | 12 ++++++------ view/tpl/cloud_actionspanel.tpl | 1 - 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/view/js/acl.js b/view/js/acl.js index c1685e137..c11997c43 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -68,7 +68,7 @@ function ACL(backend_url) { } -ACL.prototype.get_form_data = function(event) { +ACL.prototype.get_form_data = function(event) { form_id = $(this).data('form_id'); that.form_id = $('#' + form_id); @@ -275,7 +275,7 @@ ACL.prototype.update_view = function(value) { that.update_select('public'); /* jot acl */ - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('#jot-perms-icon, #dialog-perms-icon, #' + that.form_id[0].id + ' .jot-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); $('#dbtn-jotnets').show(); $('.profile-jot-net input').attr('disabled', false); @@ -288,7 +288,7 @@ ACL.prototype.update_view = function(value) { that.update_select(that.selected_id); /* jot acl */ - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#jot-perms-icon, #dialog-perms-icon, #' + that.form_id[0].id + ' .jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } @@ -300,7 +300,7 @@ ACL.prototype.update_view = function(value) { that.update_select('onlyme'); /* jot acl */ - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#jot-perms-icon, #dialog-perms-icon, #' + that.form_id[0].id + ' .jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } @@ -312,12 +312,12 @@ ACL.prototype.update_view = function(value) { /* jot acl */ if(that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value === 'custom') { - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('#jot-perms-icon, #dialog-perms-icon, #' + that.form_id[0].id + ' .jot-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); $('#dbtn-jotnets').show(); $('.profile-jot-net input').attr('disabled', false); } else { - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#jot-perms-icon, #dialog-perms-icon, #' + that.form_id[0].id + ' .jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } diff --git a/view/tpl/cloud_actionspanel.tpl b/view/tpl/cloud_actionspanel.tpl index b851e391e..36edc3b44 100644 --- a/view/tpl/cloud_actionspanel.tpl +++ b/view/tpl/cloud_actionspanel.tpl @@ -1,7 +1,6 @@
    - -- cgit v1.2.3 From 8b6230726fac986b96f0dc8405d30afe456605df Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 29 Aug 2016 18:06:39 -0700 Subject: add authors to post distribution; case insensitive sort apps --- Zotlabs/Lib/Apps.php | 2 +- include/items.php | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index 19ed1b612..a646d8a30 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -112,7 +112,7 @@ class Apps { static public function app_name_compare($a,$b) { - return strcmp($a['name'],$b['name']); + return strcasecmp($a['name'],$b['name']); } diff --git a/include/items.php b/include/items.php index ac746c189..53a7b7927 100755 --- a/include/items.php +++ b/include/items.php @@ -113,6 +113,26 @@ function collect_recipients($item, &$private_envelope) { // if($policy === 'pub') // $recipients[] = $sys['xchan_hash']; } + + // Add the authors of any posts in this thread, if they are known to us. + // This is specifically designed to forward wall-to-wall posts to the original author, + // in case they aren't a connection but have permission to write on our wall. + // This is important for issue tracker channels. It should be a no-op for most channels. + // Whether or not they will accept the delivery is not determined here, but should + // be taken into account by zot:process_delivery() + + $r = q("select author_xchan from item where parent = %d", + intval($item['parent']) + ); + if($r) { + foreach($r as $rv) { + if(! in_array($rv['author_xchan'],$recipients)) { + $recipients[] = $rv['author_xchan']; + } + } + } + + } // This is a somewhat expensive operation but important. -- cgit v1.2.3 From 52b80711f64c6108f11a2a49076a09564a5ae0ff Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 29 Aug 2016 21:21:09 -0700 Subject: remove duplicated include --- Zotlabs/Module/Apps.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Zotlabs/Module/Apps.php b/Zotlabs/Module/Apps.php index 4bdec4573..4dab621b2 100644 --- a/Zotlabs/Module/Apps.php +++ b/Zotlabs/Module/Apps.php @@ -1,7 +1,6 @@ Date: Tue, 30 Aug 2016 10:29:59 +0200 Subject: Updated Italian strings --- view/it/hmessages.po | 14418 +++++++++++++++++++++++++------------------------ view/it/hstrings.php | 2369 ++++---- 2 files changed, 8409 insertions(+), 8378 deletions(-) diff --git a/view/it/hmessages.po b/view/it/hmessages.po index da04ba81e..4daed02fe 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-12 00:02-0700\n" -"PO-Revision-Date: 2016-08-16 08:26+0000\n" +"POT-Creation-Date: 2016-08-26 00:02-0700\n" +"PO-Revision-Date: 2016-08-30 08:22+0000\n" "Last-Translator: Paolo Wave \n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -90,9 +90,10 @@ msgstr "Speciale - Pagina per fan" msgid "Special - Group Repository" msgstr "Speciale - Repository di gruppo" -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../Zotlabs/Access/PermissionRoles.php:204 +#: ../../include/permissions.php:943 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:943 +#: ../../include/selectors.php:140 msgid "Other" msgstr "Altro" @@ -196,14 +197,14 @@ msgstr "Appuntamenti inviati" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1036 -#: ../../include/widgets.php:1613 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1613 +#: ../../include/conversation.php:1033 msgid "Unknown" msgstr "Sconosciuto" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:95 -#: ../../include/conversation.php:1659 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1672 +#: ../../include/nav.php:95 msgid "Files" msgstr "Archivio file" @@ -216,7 +217,7 @@ msgid "Shared" msgstr "Condiviso" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Webpages.php:216 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:216 #: ../../Zotlabs/Module/New_channel.php:142 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 msgid "Create" @@ -230,10 +231,9 @@ msgstr "Crea" msgid "Upload" msgstr "Carica" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:250 -#: ../../Zotlabs/Module/Settings.php:662 ../../Zotlabs/Module/Settings.php:688 -#: ../../Zotlabs/Module/Admin.php:1223 -#: ../../Zotlabs/Module/Sharedwithme.php:99 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:684 +#: ../../Zotlabs/Module/Settings.php:710 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 msgid "Name" msgstr "Nome" @@ -251,33 +251,34 @@ msgstr "Dimensione" msgid "Last Modified" msgstr "Ultima modifica" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Webpages.php:217 +#: ../../Zotlabs/Storage/Browser.php:240 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Editpost.php:84 ../../Zotlabs/Module/Settings.php:722 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Lib/Apps.php:341 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/menu.php:113 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:959 -#: ../../include/channel.php:963 +#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Admin.php:2127 +#: ../../Zotlabs/Module/Webpages.php:217 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/menu.php:113 msgid "Edit" msgstr "Modifica" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Webpages.php:219 +#: ../../Zotlabs/Storage/Browser.php:241 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 #: ../../Zotlabs/Module/Editwebpage.php:170 -#: ../../Zotlabs/Module/Connedit.php:610 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Settings.php:723 -#: ../../Zotlabs/Module/Admin.php:1039 ../../Zotlabs/Module/Admin.php:1213 -#: ../../Zotlabs/Module/Admin.php:2114 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1226 ../../Zotlabs/Module/Admin.php:2128 +#: ../../Zotlabs/Module/Webpages.php:219 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../include/conversation.php:660 msgid "Delete" msgstr "Elimina" @@ -308,57 +309,57 @@ msgid "Drop files here to immediately upload" msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Webpages.php:95 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Item.php:213 -#: ../../Zotlabs/Module/Item.php:221 ../../Zotlabs/Module/Item.php:1071 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Bookmarks.php:61 #: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:226 -#: ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Setup.php:219 #: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Pdledit.php:26 ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 -#: ../../Zotlabs/Module/Connedit.php:398 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Settings.php:642 -#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Webpages.php:95 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 #: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 +#: ../../Zotlabs/Module/Channel.php:268 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Network.php:15 -#: ../../Zotlabs/Module/Regmod.php:21 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Api.php:12 ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/items.php:3448 ../../include/photos.php:27 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/items.php:3477 ../../include/photos.php:27 #: ../../include/attach.php:142 ../../include/attach.php:190 #: ../../include/attach.php:253 ../../include/attach.php:267 #: ../../include/attach.php:274 ../../include/attach.php:339 @@ -372,15 +373,15 @@ msgstr "Permesso negato." msgid "Not Found" msgstr "Non disponibile" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 -#: ../../Zotlabs/Module/Help.php:97 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:119 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Pagina non trovata." #: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Like.php:283 -#: ../../Zotlabs/Module/Group.php:72 ../../Zotlabs/Module/Import_items.php:114 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 #: ../../include/items.php:384 msgid "Permission denied" @@ -398,10 +399,11 @@ msgid "Welcome %s. Remote authentication successful." msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." #: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 +#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 #: ../../include/channel.php:859 @@ -420,2272 +422,2754 @@ msgstr "Assente" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "Server $Projectname - Installazione" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Messaggio non valido" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "nessun risultato" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "sincronizzazione del canale effettuata" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "in coda" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "inviato" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "accettato per la spedizione" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "aggiornato" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Verifica del sistema" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "aggiornamento ignorato" -#: ../../Zotlabs/Module/Setup.php:267 ../../Zotlabs/Module/Events.php:676 -#: ../../Zotlabs/Module/Events.php:685 ../../Zotlabs/Module/Photos.php:960 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" -msgstr "Successivo" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permessi non sufficienti" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Verifica di nuovo" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "Destinatario non trovato" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Connessione al database" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "messaggio richiamato dal mittente" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "ricevuto messaggio duplicato" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "messaggio recapitato" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Rapporto di consegna - %1$s" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Server del database" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opzioni" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Il valore predefinito è 127.0.0.1" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Reinvia" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Port del database" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Autorizza la app" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Utente database" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Ritorna alla tua app e inserisci questo Security Code:" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Password database" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Nome database" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Tipo database" +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "Yes" +msgstr "Sì" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del hub" +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:463 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "No" +msgstr "No" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "URL completo del sito" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Sito web:" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Se disponibile, usa l'indirizzo SSL (https)." +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo hub" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" -#: ../../Zotlabs/Module/Setup.php:312 ../../Zotlabs/Module/Setup.php:353 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Setup.php:316 +#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:126 #: ../../Zotlabs/Module/Pdledit.php:66 #: ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Connedit.php:786 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Settings.php:682 ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:886 ../../Zotlabs/Module/Settings.php:912 +#: ../../Zotlabs/Module/Settings.php:935 +#: ../../Zotlabs/Module/Settings.php:1040 +#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 #: ../../Zotlabs/Module/Import_items.php:122 #: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Mail.php:370 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:679 -#: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098 -#: ../../Zotlabs/Module/Photos.php:1216 ../../Zotlabs/Module/Settings.php:660 -#: ../../Zotlabs/Module/Settings.php:773 ../../Zotlabs/Module/Settings.php:864 -#: ../../Zotlabs/Module/Settings.php:890 ../../Zotlabs/Module/Settings.php:913 -#: ../../Zotlabs/Module/Settings.php:1001 -#: ../../Zotlabs/Module/Settings.php:1187 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:701 ../../Zotlabs/Module/Admin.php:784 +#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Admin.php:1662 +#: ../../Zotlabs/Module/Admin.php:1747 ../../Zotlabs/Module/Admin.php:2130 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 #: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mitem.php:243 -#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Thing.php:320 -#: ../../Zotlabs/Module/Thing.php:370 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:22 -#: ../../include/widgets.php:763 ../../view/theme/redbasic/php/config.php:99 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:711 +#: ../../include/widgets.php:763 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Submit" msgstr "Salva" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Impostazioni del hub" - -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Vuoi attivare le funzionalità avanzate di $Projectname?" +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1351 +msgid "Public Hubs" +msgstr "Hub pubblici" -#: ../../Zotlabs/Module/Setup.php:347 +#: ../../Zotlabs/Module/Pubsites.php:27 msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Alcune funzionalità avanzate, per quanto utili, potrebbero essere adatte solo a un pubblico tecnicamente preparato." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "E' necessario PHP versione 5.5 o superiore." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "URL del hub" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "Versione PHP" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo di accesso" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Politica di registrazione" -#: ../../Zotlabs/Module/Setup.php:405 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiche" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "Path del comando PHP" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "PHP da riga di comando" +#: ../../Zotlabs/Module/Pubsites.php:43 +msgid "Rate" +msgstr "Valuta" -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." +#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Posizione geografica" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "E' necessario perché funzioni la consegna dei messaggi." +#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Webpages.php:223 +#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Guarda" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format +#: ../../Zotlabs/Module/Register.php:55 msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." - -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puoi regolare queste impostazioni sul server in php.ini" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "Limiti PHP in upload" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." -#: ../../Zotlabs/Module/Setup.php:475 +#: ../../Zotlabs/Module/Register.php:131 msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Genera chiavi di cifratura" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere processata." -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Su questo hub la registrazione non è permessa." -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "La registrazione su questo hub è soggetta ad approvazione." -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrati su un altro server hubzilla." -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "modulo PHP per mysqli oppure prostgres" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" -msgstr "modulo xml PHP" +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" +#: ../../Zotlabs/Module/Register.php:223 +#, 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" -#: ../../Zotlabs/Module/Setup.php:500 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Il tuo indirizzo email" -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Scegli una password" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Name or caption" +msgstr "Nome o titolo" -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" -#: ../../Zotlabs/Module/Setup.php:552 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Select a channel role with your privacy requirements." +msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." -#: ../../Zotlabs/Module/Setup.php:553 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" -#: ../../Zotlabs/Module/Setup.php:554 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Setup.php:555 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "sì" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" +#: ../../Zotlabs/Module/Register.php:248 ../../Zotlabs/Module/Admin.php:503 +msgid "Registration" +msgstr "Registrazione" -#: ../../Zotlabs/Module/Setup.php:572 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." +#: ../../Zotlabs/Module/Register.php:253 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo hub è necessario un invito." -#: ../../Zotlabs/Module/Setup.php:573 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." -msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" +#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 +#: ../../boot.php:1720 +msgid "Register" +msgstr "Registrati" -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +#: ../../Zotlabs/Module/Register.php:266 msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." -#: ../../Zotlabs/Module/Setup.php:575 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "I miei segnalibri" -#: ../../Zotlabs/Module/Setup.php:594 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" -msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" -#: ../../Zotlabs/Module/Setup.php:598 -msgid "store is writable" -msgstr "l'archivio è scrivibile" +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../Zotlabs/Module/Setup.php:631 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 +#: ../../Zotlabs/Module/Admin.php:1575 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3398 +msgid "Item not found." +msgstr "Elemento non trovato." -#: ../../Zotlabs/Module/Setup.php:632 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/conversation.php:1665 ../../include/nav.php:94 +msgid "Photos" +msgstr "Foto" -#: ../../Zotlabs/Module/Setup.php:633 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Settings.php:683 ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Admin.php:1420 ../../Zotlabs/Module/Wiki.php:171 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 +#: ../../include/conversation.php:1292 +msgid "Cancel" +msgstr "Annulla" -#: ../../Zotlabs/Module/Setup.php:634 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Elemento non valido." -#: ../../Zotlabs/Module/Setup.php:635 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Page.php:131 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." +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" -#: ../../Zotlabs/Module/Setup.php:641 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- scegli -" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2047 +#: ../../Zotlabs/Module/Admin.php:2067 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Salva" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "Impossibile trovare il gruppo di canali" -#: ../../Zotlabs/Module/Setup.php:659 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "Canale sconosciuto" -#: ../../Zotlabs/Module/Setup.php:683 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Setup.php:720 -msgid "

    What next

    " -msgstr "

    I prossimi passi

    " +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Cerca risultati con:" -#: ../../Zotlabs/Module/Setup.php:721 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Il gruppo di canali è vuoto" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" -msgstr "Messaggio non valido" +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Gruppo di canali:" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" -msgstr "nessun risultato" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Contatto non valido." -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "sincronizzazione del canale effettuata" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloccati" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in coda" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignorati" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "inviato" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Nascosti" -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "accettato per la spedizione" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archiviati" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "aggiornato" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1568 +msgid "New" +msgstr "Novità" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "aggiornamento ignorato" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:497 +msgid "All" +msgstr "Tutti" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permessi non sufficienti" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Destinatario non trovato" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "messaggio richiamato dal mittente" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "ricevuto messaggio duplicato" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "messaggio recapitato" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Rapporto di consegna - %1$s" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opzioni" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Reinvia" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import Webpage Elements" -msgstr "Importa gli elementi della pagina web" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "In attesa di conferma" -#: ../../Zotlabs/Module/Webpages.php:54 -msgid "Import selected" -msgstr "Importa i selezionati" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:108 ../../include/conversation.php:1705 -msgid "Webpages" -msgstr "Pagine web" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Modifica il contatto" -#: ../../Zotlabs/Module/Webpages.php:218 ../../Zotlabs/Module/Photos.php:1078 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../include/conversation.php:1220 -msgid "Share" -msgstr "Condividi" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Elimina il contatto" -#: ../../Zotlabs/Module/Webpages.php:223 ../../Zotlabs/Module/Events.php:680 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Guarda" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Indirizzo del canale" -#: ../../Zotlabs/Module/Webpages.php:224 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:720 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1199 -msgid "Preview" -msgstr "Anteprima" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Network" -#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Azioni" +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:723 +msgid "Status" +msgstr "Stato" -#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "In contatto" -#: ../../Zotlabs/Module/Webpages.php:227 -msgid "Page Title" -msgstr "Titolo della pagina" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Webpages.php:228 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creato" +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Approve" +msgstr "Approva" -#: ../../Zotlabs/Module/Webpages.php:229 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Modificato" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Ignora il contatto" -#: ../../Zotlabs/Module/Webpages.php:258 -msgid "Invalid file type." -msgstr "Tipo di file non valido." +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Ignora" -#: ../../Zotlabs/Module/Webpages.php:270 -msgid "Error opening zip file" -msgstr "Errore nell'apertura del file zip" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/Webpages.php:281 -msgid "Invalid folder path." -msgstr "La cartella indicata non è valida." +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:855 ../../include/nav.php:190 +msgid "Connections" +msgstr "Contatti" -#: ../../Zotlabs/Module/Webpages.php:308 -msgid "No webpage elements detected." -msgstr "Nella pagina web non sono presenti elementi." +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:925 +#: ../../include/text.php:937 ../../include/acl_selectors.php:174 +#: ../../include/nav.php:169 +msgid "Search" +msgstr "Cerca" -#: ../../Zotlabs/Module/Webpages.php:382 -msgid "Import complete." -msgstr "Importazione completata." +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Cerca tra i contatti" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Accesso pubblico negato." +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Ricerca tra i contatti" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Sesso:" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Cerca" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Stato:" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage:" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Copertine del canale" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" -msgstr "Età:" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "Il ridimensionamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1049 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Luogo:" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "Il caricamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" -msgstr "Città dove vivo:" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" -msgstr "Informazioni:" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4312 +msgid "female" +msgstr "femmina" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 -#: ../../include/conversation.php:960 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -msgid "Connect" -msgstr "Aggiungi" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4313 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Forum pubblico:" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4314 +msgid "male" +msgstr "maschio" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Parole chiave:" +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4315 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Non fornire suggerimenti" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4317 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Contatti in comune:" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 +msgid "cover photo" +msgstr "Copertina del canale" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Elenchi pubblici globali" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto non disponibile." -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Elenco canali su questo hub" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Carica un file:" -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Cerca" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Ricerca:" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Carica una copertina" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "or" +msgstr "o" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "pagina successiva" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "salta questo passaggio" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "pagina precedente" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Opzioni di ordinamento" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Ritaglia immagine" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetico" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Modifica terminata" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Setup.php:183 +msgid "$Projectname Server - Setup" +msgstr "Server $Projectname - Installazione" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Setup.php:187 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." +#: ../../Zotlabs/Module/Setup.php:191 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profilo non trovato." +#: ../../Zotlabs/Module/Setup.php:198 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilo eliminato." +#: ../../Zotlabs/Module/Setup.php:203 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profilo-" +#: ../../Zotlabs/Module/Setup.php:207 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." +#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:270 +#: ../../Zotlabs/Module/Setup.php:733 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." +#: ../../Zotlabs/Module/Setup.php:267 +msgid "System check" +msgstr "Verifica del sistema" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Il profilo non è disponibile per l'export." +#: ../../Zotlabs/Module/Setup.php:271 ../../Zotlabs/Module/Photos.php:960 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +msgid "Next" +msgstr "Successivo" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio." +#: ../../Zotlabs/Module/Setup.php:272 +msgid "Check again" +msgstr "Verifica di nuovo" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Stato sentimentale" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database connection" +msgstr "Connessione al database" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Partner affettivo" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Lavoro/impiego" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Server Name" +msgstr "Server del database" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religione" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Default is 127.0.0.1" +msgstr "Il valore predefinito è 127.0.0.1" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Port" +msgstr "Port del database" -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Sesso" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Login Name" +msgstr "Utente database" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Home page" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Password" +msgstr "Password database" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interessi" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Name" +msgstr "Nome database" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Indirizzo" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Type" +msgstr "Tipo database" -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Events.php:467 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Posizione geografica" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del hub" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilo aggiornato." +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Website URL" +msgstr "URL completo del sito" -#: ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Connedit.php:411 ../../Zotlabs/Module/Connedit.php:693 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Settings.php:651 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Api.php:85 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1717 -msgid "No" -msgstr "No" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." -#: ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Connedit.php:411 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Settings.php:651 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Api.php:84 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1717 -msgid "Yes" -msgstr "Sì" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:360 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo hub" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" +#: ../../Zotlabs/Module/Setup.php:335 ../../Zotlabs/Module/Admin.php:489 +msgid "Basic/Minimal Social Networking" +msgstr "Social network basilare" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Guarda questo profilo" +#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:490 +msgid "Standard Configuration (default)" +msgstr "Configurazione standard (predefinita)" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" -msgstr "Cambia la visibilità" +#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:491 +msgid "Professional" +msgstr "Professionale" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Gestione del profilo" +#: ../../Zotlabs/Module/Setup.php:343 +msgid "Site settings" +msgstr "Impostazioni del hub" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Cambia la copertina del canale" +#: ../../Zotlabs/Module/Setup.php:358 ../../Zotlabs/Module/Admin.php:512 +msgid "Server Configuration/Role" +msgstr "Configurazione del server" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../Zotlabs/Module/Setup.php:399 +msgid "PHP version 5.5 or greater is required." +msgstr "E' necessario PHP versione 5.5 o superiore." -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version" +msgstr "Versione PHP" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clona questo profilo" +#: ../../Zotlabs/Module/Setup.php:415 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Elimina questo profilo" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Aggiungi oggetti al profilo" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "PHP executable path" +msgstr "Path del comando PHP" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1546 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personali" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relazione" +#: ../../Zotlabs/Module/Setup.php:425 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Altro" +#: ../../Zotlabs/Module/Setup.php:434 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importa il profilo da un file" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Esporta il profilo in un file" +#: ../../Zotlabs/Module/Setup.php:438 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Sesso" +#: ../../Zotlabs/Module/Setup.php:456 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Stato civile" +#: ../../Zotlabs/Module/Setup.php:461 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puoi regolare queste impostazioni sul server in php.ini" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Setup.php:463 +msgid "PHP upload limits" +msgstr "Limiti PHP in upload" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nome del profilo" +#: ../../Zotlabs/Module/Setup.php:486 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obbligatorio" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Questo è il tuo profilo predefinito." +#: ../../Zotlabs/Module/Setup.php:490 +msgid "Generate encryption keys" +msgstr "Genera chiavi di cifratura" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Il tuo nome completo" +#: ../../Zotlabs/Module/Setup.php:502 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Titolo/descrizione" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Indirizzo (via/piazza)" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Località" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "mysqli or postgres PHP module" +msgstr "modulo PHP per mysqli oppure prostgres" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Regione/stato" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "CAP" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "xml PHP module" +msgstr "modulo xml PHP" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Nazione" +#: ../../Zotlabs/Module/Setup.php:511 ../../Zotlabs/Module/Setup.php:513 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Con chi (se possibile)" +#: ../../Zotlabs/Module/Setup.php:511 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Setup.php:517 ../../Zotlabs/Module/Setup.php:520 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "dal (data)" +#: ../../Zotlabs/Module/Setup.php:517 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Raccontaci di te..." +#: ../../Zotlabs/Module/Setup.php:525 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Indirizzo home page" +#: ../../Zotlabs/Module/Setup.php:529 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Città dove vivo" +#: ../../Zotlabs/Module/Setup.php:533 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Setup.php:537 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Orientamento religioso" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Parole chiavi mostrate nell'elenco dei canali" +#: ../../Zotlabs/Module/Setup.php:541 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" +#: ../../Zotlabs/Module/Setup.php:545 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Interessi musicali" +#: ../../Zotlabs/Module/Setup.php:563 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Libri, letteratura" +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisione" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film, danza, cultura, intrattenimento" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../Zotlabs/Module/Setup.php:569 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Amore" +#: ../../Zotlabs/Module/Setup.php:583 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Scuola/educazione" +#: ../../Zotlabs/Module/Setup.php:584 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Contatti e social network" +#: ../../Zotlabs/Module/Setup.php:585 ../../Zotlabs/Module/Setup.php:606 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "I miei altri canali" +#: ../../Zotlabs/Module/Setup.php:586 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" -msgstr "Immagine del profilo" +#: ../../Zotlabs/Module/Setup.php:589 +#, php-format +msgid "%s is writable" +msgstr "%s è scrivibile" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:90 -#: ../../include/channel.php:959 -msgid "Edit Profiles" -msgstr "Modifica i tuoi profili" +#: ../../Zotlabs/Module/Setup.php:605 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" -#: ../../Zotlabs/Module/Profiles.php:778 ../../Zotlabs/Module/Chat.php:255 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Crea nuova" +#: ../../Zotlabs/Module/Setup.php:609 +msgid "store is writable" +msgstr "l'archivio è scrivibile" -#: ../../Zotlabs/Module/Rpost.php:135 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" -msgstr "Modifica post" +#: ../../Zotlabs/Module/Setup.php:642 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "I miei segnalibri" +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Il post vuoto è stato ignorato." +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "I post duplicati sono scartati." +#: ../../Zotlabs/Module/Setup.php:652 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Post non salvato." +#: ../../Zotlabs/Module/Setup.php:658 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare il post dal database." +#: ../../Zotlabs/Module/Setup.php:661 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" -#: ../../Zotlabs/Module/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 post sulla pagina principale." +#: ../../Zotlabs/Module/Setup.php:670 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." +#: ../../Zotlabs/Module/Setup.php:694 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:94 ../../include/conversation.php:1652 -msgid "Photos" -msgstr "Foto" +#: ../../Zotlabs/Module/Setup.php:731 +msgid "

    What next

    " +msgstr "

    I prossimi passi

    " -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Settings.php:661 ../../Zotlabs/Module/Settings.php:687 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1279 -msgid "Cancel" -msgstr "Annulla" +#: ../../Zotlabs/Module/Setup.php:732 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento non valido." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Sesso:" -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Stato:" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage:" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- scegli -" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Età:" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Salva" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../include/bb2diaspora.php:507 +msgid "Location:" +msgstr "Luogo:" -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Chat.php:25 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Post e commenti" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Città dove vivo:" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo post" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Informazioni:" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/channel.php:1034 ../../include/conversation.php:957 +msgid "Connect" +msgstr "Aggiungi" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloccati" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Forum pubblico:" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorati" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Parole chiave:" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Nascosti" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Non fornire suggerimenti" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archiviati" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Contatti in comune:" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1555 -msgid "New" -msgstr "Novità" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Elenchi pubblici globali" -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:632 ../../include/widgets.php:497 -msgid "All" -msgstr "Tutti" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Elenco canali su questo hub" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Ricerca:" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "pagina successiva" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "pagina precedente" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Opzioni di ordinamento" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetico" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "In attesa di conferma" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Modifica il contatto" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Questo non è un directory server" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Elimina il contatto" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Questo directory server necessita di un token di autenticazione" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Indirizzo del canale" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Network" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Nome del block" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" -msgstr "Stato" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "In contatto" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifica il block" -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" -msgstr "Approva" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "Nome layout" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignora il contatto" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "Descrizione del layout (facoltativa)" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Connedit.php:586 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignora" +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "Modifica il layout" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:855 ../../include/nav.php:190 -msgid "Connections" -msgstr "Contatti" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:274 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/nav.php:169 -msgid "Search" -msgstr "Cerca" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Cerca tra i contatti" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Ricerca tra i contatti" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Copertine del canale" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." -msgstr "Il ridimensionamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." -msgstr "Il caricamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 -msgid "female" -msgstr "femmina" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 +msgid "Menus" +msgstr "Menù" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Elimina" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 -msgid "male" -msgstr "maschio" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:228 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creato" + +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:229 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Modificato" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifica questo menù" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menù non trovato." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifica menù" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nome del menù" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titolo del menù" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." + +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installata" + +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "L'app contiene errori" + +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Inserisci il codice" + +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifica app" + +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea una app" + +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nome app" + +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Obbligatorio" + +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" + +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descrizione" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL icona" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" + +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" + +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "ID versione" + +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prezzo app" + +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" + +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Ricerca nella guida" + +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" +msgstr "Guida:" + +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:163 +msgid "Help" +msgstr "Guida" + +#: ../../Zotlabs/Module/Help.php:120 +msgid "$Projectname Documentation" +msgstr "Guida di $Projectname" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento non disponibile." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout aggiornato." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layout non trovato." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nome del modulo:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Guida al layout" + +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Condividi i contenuti su $Projectname da Firefox" + +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visibile a:" + +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Permesso negato." + +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "File non trovato." + +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" + +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permessi" + +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" + +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" + +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" + +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/incolla questo codice per far comparire il file in un post" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" + +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Condividi questo file" + +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" + +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Notifica ai contatti che hai caricato questo file" + +#: ../../Zotlabs/Module/Settings.php:64 +msgid "Name is required" +msgstr "Il nome è obbligatorio" + +#: ../../Zotlabs/Module/Settings.php:68 +msgid "Key and Secret are required" +msgstr "Key e Secret sono richiesti" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Admin.php:1449 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "Aggiorna" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Settings.php:138 #, php-format -msgid "%1$s updated their %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +msgid "This channel is limited to %d tokens" +msgstr "Questo canale è limitato a %d token" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1710 -msgid "cover photo" -msgstr "Copertina del canale" +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "Nome e password sono obbligatori." -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." -msgstr "Foto non disponibile." +#: ../../Zotlabs/Module/Settings.php:184 +msgid "Token saved." +msgstr "Token salvato." -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" -msgstr "Carica un file:" +#: ../../Zotlabs/Module/Settings.php:312 +msgid "Not valid email." +msgstr "Email non valida." -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" +#: ../../Zotlabs/Module/Settings.php:315 +msgid "Protected email address. Cannot change to that email." +msgstr "È un indirizzo email riservato. Non puoi sceglierlo." -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Carica una copertina" +#: ../../Zotlabs/Module/Settings.php:324 +msgid "System failure storing new email. Please try again." +msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Settings.php:1138 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "or" -msgstr "o" +#: ../../Zotlabs/Module/Settings.php:341 +msgid "Password verification failed." +msgstr "Verifica della password fallita." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" -msgstr "salta questo passaggio" +#: ../../Zotlabs/Module/Settings.php:348 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" +#: ../../Zotlabs/Module/Settings.php:352 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" -msgstr "Ritaglia immagine" +#: ../../Zotlabs/Module/Settings.php:366 +msgid "Password changed." +msgstr "Password cambiata." -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." +#: ../../Zotlabs/Module/Settings.php:368 +msgid "Password update failed. Please try again." +msgstr "Modifica password fallita. Prova ancora." -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "Modifica terminata" +#: ../../Zotlabs/Module/Settings.php:429 ../../Zotlabs/Module/Settings.php:433 +#: ../../Zotlabs/Module/Settings.php:434 ../../Zotlabs/Module/Settings.php:437 +#: ../../Zotlabs/Module/Settings.php:448 ../../Zotlabs/Module/Connedit.php:627 +#: ../../include/widgets.php:495 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/selectors.php:123 +msgid "Friends" +msgstr "Amici" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pagina web" +#: ../../Zotlabs/Module/Settings.php:617 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "block" +#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 +#: ../../Zotlabs/Module/Settings.php:743 +msgid "Add application" +msgstr "Aggiungi una app" + +#: ../../Zotlabs/Module/Settings.php:684 +msgid "Name of application" +msgstr "Nome dell'applicazione" + +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" + +#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 +msgid "Redirect" +msgstr "Redirect" + +#: ../../Zotlabs/Module/Settings.php:687 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" + +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 +msgid "Icon url" +msgstr "Url icona" + +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Facoltativo" + +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Application not found." +msgstr "Applicazione non trovata." + +#: ../../Zotlabs/Module/Settings.php:742 +msgid "Connected Apps" +msgstr "App connesse" + +#: ../../Zotlabs/Module/Settings.php:746 +msgid "Client key starts with" +msgstr "La client key inizia con" + +#: ../../Zotlabs/Module/Settings.php:747 +msgid "No name" +msgstr "Nessun nome" + +#: ../../Zotlabs/Module/Settings.php:748 +msgid "Remove authorization" +msgstr "Revoca l'autorizzazione" + +#: ../../Zotlabs/Module/Settings.php:761 +msgid "No feature settings configured" +msgstr "Non hai componenti aggiuntivi da personalizzare" + +#: ../../Zotlabs/Module/Settings.php:768 +msgid "Feature/Addon Settings" +msgstr "Impostazioni dei componenti aggiuntivi" + +#: ../../Zotlabs/Module/Settings.php:791 +msgid "Account Settings" +msgstr "Il tuo account" + +#: ../../Zotlabs/Module/Settings.php:792 +msgid "Current Password" +msgstr "Password attuale" + +#: ../../Zotlabs/Module/Settings.php:793 +msgid "Enter New Password" +msgstr "Nuova password" + +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Confirm New Password" +msgstr "Conferma la nuova password" + +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Leave password fields blank unless changing" +msgstr "Lascia vuoti questi campi per non cambiare la password" + +#: ../../Zotlabs/Module/Settings.php:796 +#: ../../Zotlabs/Module/Settings.php:1236 +msgid "Email Address:" +msgstr "Indirizzo email:" + +#: ../../Zotlabs/Module/Settings.php:797 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Elimina l'account" + +#: ../../Zotlabs/Module/Settings.php:798 +msgid "Remove this account including all its channels" +msgstr "Elimina questo account e tutti i suoi canali" + +#: ../../Zotlabs/Module/Settings.php:832 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." +msgstr "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." + +#: ../../Zotlabs/Module/Settings.php:834 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" + +#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "Token di accesso ospite" + +#: ../../Zotlabs/Module/Settings.php:876 +msgid "Login Name" +msgstr "Nome utente" + +#: ../../Zotlabs/Module/Settings.php:877 +msgid "Login Password" +msgstr "Password" + +#: ../../Zotlabs/Module/Settings.php:878 +msgid "Expires (yyyy-mm-dd)" +msgstr "Con scadenza (aaaa-mm-gg)" + +#: ../../Zotlabs/Module/Settings.php:879 ../../Zotlabs/Module/Connedit.php:782 +msgid "Their Settings" +msgstr "Permessi concessi a te" + +#: ../../Zotlabs/Module/Settings.php:880 ../../Zotlabs/Module/Connedit.php:783 +msgid "My Settings" +msgstr "Permessi che concedo" + +#: ../../Zotlabs/Module/Settings.php:882 ../../Zotlabs/Module/Connedit.php:778 +msgid "inherited" +msgstr "derivato" + +#: ../../Zotlabs/Module/Settings.php:884 ../../Zotlabs/Module/Connedit.php:785 +msgid "Individual Permissions" +msgstr "Permessi individuali" + +#: ../../Zotlabs/Module/Settings.php:885 ../../Zotlabs/Module/Connedit.php:786 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." + +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "Off" +msgstr "Off" + +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "On" +msgstr "On" + +#: ../../Zotlabs/Module/Settings.php:910 +msgid "Additional Features" +msgstr "Funzionalità opzionali" + +#: ../../Zotlabs/Module/Settings.php:934 +msgid "Connector Settings" +msgstr "Impostazioni del connettore" + +#: ../../Zotlabs/Module/Settings.php:981 +msgid "No special theme for mobile devices" +msgstr "Nessun tema per dispositivi mobili" + +#: ../../Zotlabs/Module/Settings.php:984 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Sperimentale)" + +#: ../../Zotlabs/Module/Settings.php:987 ../../Zotlabs/Module/Admin.php:414 +msgid "mobile" +msgstr "mobile" + +#: ../../Zotlabs/Module/Settings.php:1035 +msgid "Display Settings" +msgstr "Aspetto" + +#: ../../Zotlabs/Module/Settings.php:1036 +msgid "Theme Settings" +msgstr "Impostazioni del tema" + +#: ../../Zotlabs/Module/Settings.php:1037 +msgid "Custom Theme Settings" +msgstr "Personalizzazione del tema" + +#: ../../Zotlabs/Module/Settings.php:1038 +msgid "Content Settings" +msgstr "Impostazioni dei contenuti" + +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Display Theme:" +msgstr "Tema per schermi medio grandi:" + +#: ../../Zotlabs/Module/Settings.php:1045 +msgid "Select scheme" +msgstr "Scegli uno schema" + +#: ../../Zotlabs/Module/Settings.php:1047 +msgid "Mobile Theme:" +msgstr "Tema per dispositivi mobili:" + +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Preload images before rendering the page" +msgstr "Carica le immagini prima del rendering della pagina" + +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "" +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" +#: ../../Zotlabs/Module/Settings.php:1049 +msgid "Enable user zoom on mobile devices" +msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "%s elemento installato" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "Elementi con installazione fallita: %s" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum number of conversations to load at any time:" +msgstr "Massimo numero di conversazioni da mostrare ogni volta:" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Mi piace/Non mi piace" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum of 100 items" +msgstr "Massimo 100" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Questa funzionalità è riservata agli iscritti." +#: ../../Zotlabs/Module/Settings.php:1052 +msgid "Show emoticons (smilies) as images" +msgstr "Mostra le faccine (smilies) come immagini" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Link post titles to source" +msgstr "Il link del titolo di un post porta al sito originale" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Richiesta non valida." +#: ../../Zotlabs/Module/Settings.php:1054 +msgid "System Page Layout Editor - (advanced)" +msgstr "Modifica i layout di sistema (avanzato)" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "il canale" +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Use blog/list mode on channel page" +msgstr "Mostra il canale nella modalità blog" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "Oggetto" +#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "(comments displayed separately)" +msgstr "(i commenti sono mostrati separatamente)" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Use blog/list mode on grid page" +msgstr "Mostra la tua rete in modalità blog" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Il comando precedente è stato annullato." +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Channel page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti del canale (in pixel)" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "la foto" +#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "click to expand content exceeding this height" +msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1951 ../../include/conversation.php:148 -msgid "status" -msgstr "il messaggio di stato" +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "Grid page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti della tua rete (in pixel)" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 -#: ../../include/event.php:951 ../../include/conversation.php:123 -msgid "event" -msgstr "l'evento" +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Nobody except yourself" +msgstr "Nessuno tranne te" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "Only those you specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "Approved connections" +msgstr "Contatti approvati" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s è d'accordo" +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "Any connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non è d'accordo" +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "Anybody on this website" +msgstr "Chiunque su questo hub" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non si esprime" +#: ../../Zotlabs/Module/Settings.php:1095 +msgid "Anybody in this network" +msgstr "Chiunque su questa rete" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s partecipa" +#: ../../Zotlabs/Module/Settings.php:1096 +msgid "Anybody authenticated" +msgstr "Chiunque abbia effettuato l'accesso" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non partecipa" +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Anybody on the internet" +msgstr "Chiunque su internet" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s forse partecipa" +#: ../../Zotlabs/Module/Settings.php:1171 +msgid "Publish your default profile in the network directory" +msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." -msgstr "Comando completato." +#: ../../Zotlabs/Module/Settings.php:1176 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Vuoi essere suggerito come amico ai nuovi membri?" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." -msgstr "Grazie." +#: ../../Zotlabs/Module/Settings.php:1185 +msgid "Your channel address is" +msgstr "L'indirizzo del tuo canale è" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Questo non è un directory server" +#: ../../Zotlabs/Module/Settings.php:1227 +msgid "Channel Settings" +msgstr "Impostazioni del canale" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Questo directory server necessita di un token di autenticazione" +#: ../../Zotlabs/Module/Settings.php:1234 +msgid "Basic Settings" +msgstr "Impostazioni di base" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" -msgstr "Elemento non trovato" +#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Nome completo:" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "Nome del block" +#: ../../Zotlabs/Module/Settings.php:1237 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Chat.php:207 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../include/conversation.php:1147 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Default Post Location:" +msgstr "Località predefinita:" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1244 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Geographical location to display on your posts" +msgstr "La posizione geografica da mostrare sui tuoi post" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifica il block" +#: ../../Zotlabs/Module/Settings.php:1239 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "Nome layout" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "Adult Content" +msgstr "Contenuto per adulti" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "Descrizione del layout (facoltativa)" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "Modifica il layout" +#: ../../Zotlabs/Module/Settings.php:1243 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Settings.php:1246 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Hide my online presence" +msgstr "Nascondi la mia presenza online" -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "rete" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Prevents displaying in your profile that you are online" +msgstr "Non mostrare sul tuo profilo quando sei online" -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Settings.php:1250 +msgid "Simple Privacy Settings:" +msgstr "Impostazioni di privacy semplificate" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installata" +#: ../../Zotlabs/Module/Settings.php:1251 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "L'app contiene errori" +#: ../../Zotlabs/Module/Settings.php:1252 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Inserisci il codice" +#: ../../Zotlabs/Module/Settings.php:1253 +msgid "Private - default private, never open or public" +msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifica app" +#: ../../Zotlabs/Module/Settings.php:1254 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crea una app" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "Allow others to tag your posts" +msgstr "Permetti ad altri di taggare i tuoi post" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nome app" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" +#: ../../Zotlabs/Module/Settings.php:1258 +msgid "Advanced Privacy Settings" +msgstr "Impostazioni di privacy avanzate" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descrizione" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "Expire other channel content after this many days" +msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL icona" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "0 or blank to use the website limit." +msgstr "0 o vuoto per usare i valori predefiniti." -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" +#: ../../Zotlabs/Module/Settings.php:1260 +#, php-format +msgid "This website expires after %d days." +msgstr "Per questo sito la scadenza è %d giorni. " -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "This website does not expire imported content." +msgstr "I contenuti di questo sito non hanno scadenza." -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "ID versione" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prezzo app" +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo giornaliero di richieste di amicizia:" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "May reduce spam activity" +msgstr "Serve a ridurre lo spam" -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Ricerca nella guida" +#: ../../Zotlabs/Module/Settings.php:1262 +msgid "Default Post and Publish Permissions" +msgstr "Permessi predefiniti per postare e pubblicare" -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Guida:" +#: ../../Zotlabs/Module/Settings.php:1263 ../../Zotlabs/Module/Mitem.php:154 +#: ../../Zotlabs/Module/Mitem.php:231 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:163 -msgid "Help" -msgstr "Guida" +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "Use my default audience setting for the type of object published" +msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "Guida di $Projectname" +#: ../../Zotlabs/Module/Settings.php:1271 +msgid "Channel permissions category:" +msgstr "Categorie di permessi dei canali:" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento non disponibile." +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout aggiornato." +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Useful to reduce spamming" +msgstr "Serve e ridurre lo spam" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" +#: ../../Zotlabs/Module/Settings.php:1280 +msgid "Notification Settings" +msgstr "Impostazioni di notifica" -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout non trovato." +#: ../../Zotlabs/Module/Settings.php:1281 +msgid "By default post a status message when:" +msgstr "Pubblica un messaggio di stato quando:" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nome del modulo:" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "accepting a friend request" +msgstr "accetto una nuova amicizia" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Guida al layout" +#: ../../Zotlabs/Module/Settings.php:1283 +msgid "joining a forum/community" +msgstr "entro a far parte di un forum" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Condividi i contenuti su $Projectname da Firefox" +#: ../../Zotlabs/Module/Settings.php:1284 +msgid "making an interesting profile change" +msgstr "faccio un cambiamento interessante al mio profilo" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Settings.php:1285 +msgid "Send a notification email when:" +msgstr "Invia una email di notifica quando:" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "You receive a connection request" +msgstr "Ricevi una richiesta di entrare in contatto" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "Your connections are confirmed" +msgstr "I tuoi contatti sono confermati" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." +#: ../../Zotlabs/Module/Settings.php:1288 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla tua bacheca" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../Zotlabs/Module/Settings.php:1289 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento dopo di te" -#: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Display.php:40 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 -msgid "Item not found." -msgstr "Elemento non trovato." +#: ../../Zotlabs/Module/Settings.php:1290 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Settings.php:1291 +msgid "You receive a friend suggestion" +msgstr "Ti viene suggerito un amico" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "File non trovato." +#: ../../Zotlabs/Module/Settings.php:1292 +msgid "You are tagged in a post" +msgstr "Sei taggato in un post" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" +#: ../../Zotlabs/Module/Settings.php:1293 +msgid "You are poked/prodded/etc. in a post" +msgstr "Ricevi un poke in un post" -#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Chat.php:234 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "Permessi" +#: ../../Zotlabs/Module/Settings.php:1296 +msgid "Show visual notifications including:" +msgstr "Mostra queste notifiche a schermo:" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Settings.php:1298 +msgid "Unseen grid activity" +msgstr "Nuove attività nella rete" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" +#: ../../Zotlabs/Module/Settings.php:1299 +msgid "Unseen channel activity" +msgstr "Novità nei canali" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" +#: ../../Zotlabs/Module/Settings.php:1300 +msgid "Unseen private messages" +msgstr "Nuovi messaggi privati" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un post" +#: ../../Zotlabs/Module/Settings.php:1300 +#: ../../Zotlabs/Module/Settings.php:1305 +#: ../../Zotlabs/Module/Settings.php:1306 +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "Recommended" +msgstr "Consigliato" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" +#: ../../Zotlabs/Module/Settings.php:1301 +msgid "Upcoming events" +msgstr "Prossimi eventi" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" -msgstr "Condividi questo file" +#: ../../Zotlabs/Module/Settings.php:1302 +msgid "Events today" +msgstr "Eventi di oggi" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Upcoming birthdays" +msgstr "Prossimi compleanni" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" -msgstr "Notifica ai contatti che hai caricato questo file" +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Not available in all themes" +msgstr "Non disponibile in tutti i temi" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" +#: ../../Zotlabs/Module/Settings.php:1304 +msgid "System (personal) notifications" +msgstr "Notifiche personali dal sistema" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Non è possibile accedere alle informazioni sul contatto." +#: ../../Zotlabs/Module/Settings.php:1305 +msgid "System info messages" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." +#: ../../Zotlabs/Module/Settings.php:1306 +msgid "System critical alerts" +msgstr "Avvisi critici di sistema" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." -msgstr "Contatto aggiornato." +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "New connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." -msgstr "Impossibile aggiornare le informazioni del contatto." +#: ../../Zotlabs/Module/Settings.php:1308 +msgid "System Registrations" +msgstr "Registrazioni" -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" -msgstr "ha come nuovo contatto" +#: ../../Zotlabs/Module/Settings.php:1309 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" -#: ../../Zotlabs/Module/Connedit.php:443 -msgid "Could not access address book record." -msgstr "Impossibile accedere alle informazioni della rubrica." +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Notify me of events this many days in advance" +msgstr "Giorni di anticipo per notificare gli eventi" -#: ../../Zotlabs/Module/Connedit.php:463 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Il canale non è disponibile - impossibile aggiornare." +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Must be greater than 0" +msgstr "Maggiore di 0" -#: ../../Zotlabs/Module/Connedit.php:478 ../../Zotlabs/Module/Connedit.php:487 -#: ../../Zotlabs/Module/Connedit.php:496 ../../Zotlabs/Module/Connedit.php:505 -#: ../../Zotlabs/Module/Connedit.php:518 -msgid "Unable to set address book parameters." -msgstr "Impossibile impostare i parametri della rubrica." +#: ../../Zotlabs/Module/Settings.php:1313 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate" -#: ../../Zotlabs/Module/Connedit.php:541 -msgid "Connection has been removed." -msgstr "Il contatto è stato rimosso." +#: ../../Zotlabs/Module/Settings.php:1314 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambia il funzionamento di questo account per necessità particolari" -#: ../../Zotlabs/Module/Connedit.php:557 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:88 ../../include/conversation.php:958 -msgid "View Profile" -msgstr "Profilo" +#: ../../Zotlabs/Module/Settings.php:1317 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" -#: ../../Zotlabs/Module/Connedit.php:560 -#, php-format -msgid "View %s's profile" -msgstr "Guarda il profilo di %s" +#: ../../Zotlabs/Module/Settings.php:1318 +msgid "Miscellaneous Settings" +msgstr "Impostazioni varie" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Refresh Permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Settings.php:1319 +msgid "Default photo upload folder" +msgstr "Cartella predefinita per le foto caricate" -#: ../../Zotlabs/Module/Connedit.php:567 -msgid "Fetch updated permissions" -msgstr "Guarda e modifica i permessi assegnati" +#: ../../Zotlabs/Module/Settings.php:1319 +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "%Y - current year, %m - current month" +msgstr "%Y - anno corrente, %m - mese corrente" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "Recent Activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "Default file upload folder" +msgstr "Cartella predefinita per i file caricati" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "View recent posts and comments" -msgstr "Leggi i post recenti e i commenti" +#: ../../Zotlabs/Module/Settings.php:1322 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personale da mostrare sulle pagine del tuo canale" -#: ../../Zotlabs/Module/Connedit.php:578 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Sblocca" +#: ../../Zotlabs/Module/Settings.php:1323 ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Connedit.php:578 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Blocca" +#: ../../Zotlabs/Module/Settings.php:1324 +msgid "Remove this channel." +msgstr "Elimina questo canale." -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Settings.php:1325 +msgid "Firefox Share $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is blocked!" -msgstr "Questa connessione è tra quelle bloccate!" +#: ../../Zotlabs/Module/Settings.php:1326 +msgid "Start calendar week on monday" +msgstr "La settimana inizia il lunedì" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unignore" -msgstr "Non ignorare" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "rete" -#: ../../Zotlabs/Module/Connedit.php:589 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "This connection is ignored!" -msgstr "Questa connessione è tra quelle ignorate!" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppo di canali creato." -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Unarchive" -msgstr "Non archiviare" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Impossibile creare il gruppo di canali." -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Archive" -msgstr "Archivia" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3931 +msgid "Privacy group not found." +msgstr "Gruppo di canali non trovato." -#: ../../Zotlabs/Module/Connedit.php:597 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Gruppo di canali aggiornato." -#: ../../Zotlabs/Module/Connedit.php:598 -msgid "This connection is archived!" -msgstr "Questa connessione è tra quelle archiviate!" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Crea un gruppo di canali." -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Unhide" -msgstr "Non nascondere" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Nome del gruppo di canali:" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide" -msgstr "Nascondi" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "I membri potranno vedere gli altri canali del gruppo" -#: ../../Zotlabs/Module/Connedit.php:605 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Gruppo di canali rimosso." -#: ../../Zotlabs/Module/Connedit.php:606 -msgid "This connection is hidden!" -msgstr "Questa connessione è tra quelle nascoste!" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Impossibile rimuovere il gruppo di canali." -#: ../../Zotlabs/Module/Connedit.php:613 -msgid "Delete this connection" -msgstr "Elimina questo contatto" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Editor dei gruppi di canali" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:493 -msgid "Me" -msgstr "Me" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Membri" -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:494 -msgid "Family" -msgstr "Famiglia" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" -#: ../../Zotlabs/Module/Connedit.php:630 ../../Zotlabs/Module/Settings.php:407 -#: ../../Zotlabs/Module/Settings.php:411 ../../Zotlabs/Module/Settings.php:412 -#: ../../Zotlabs/Module/Settings.php:415 ../../Zotlabs/Module/Settings.php:426 -#: ../../include/selectors.php:123 ../../include/channel.php:402 -#: ../../include/channel.php:403 ../../include/channel.php:410 -#: ../../include/widgets.php:495 -msgid "Friends" -msgstr "Amici" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Connedit.php:631 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "Conoscenti" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." -#: ../../Zotlabs/Module/Connedit.php:693 -msgid "Approve this connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Foto del profilo" -#: ../../Zotlabs/Module/Connedit.php:693 -msgid "Accept connection to allow communication" -msgstr "Entra in contatto per poter comunicare" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "Set Affinity" -msgstr "Scegli l'affinità" +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Elimina album" -#: ../../Zotlabs/Module/Connedit.php:701 -msgid "Set Profile" -msgstr "Scegli il profilo da mostrare" +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " -#: ../../Zotlabs/Module/Connedit.php:704 -msgid "Set Affinity & Profile" -msgstr "Affinità e profilo" +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "none" -msgstr "--" +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../Zotlabs/Module/Connedit.php:757 ../../include/widgets.php:623 -msgid "Connection Default Permissions" -msgstr "Permessi predefiniti dei nuovi contatti" +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." -#: ../../Zotlabs/Module/Connedit.php:757 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Photos.php:619 #, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" - -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "Apply these permissions automatically" -msgstr "Applica automaticamente questi permessi" +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "Connection requests will be approved without your interaction" -msgstr "Le richieste di entrare in contatto saranno approvate in automatico" +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." -#: ../../Zotlabs/Module/Connedit.php:760 -msgid "This connection's primary address is" -msgstr "Indirizzo primario di questo canale" +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Available locations:" -msgstr "Indirizzi disponibili" +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" -#: ../../Zotlabs/Module/Connedit.php:765 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Connection Tools" -msgstr "Gestione dei contatti" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Slide to adjust your degree of friendship" -msgstr "Trascina per restringere il grado di amicizia da mostrare" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" +msgstr "Titolo (facoltativo):" -#: ../../Zotlabs/Module/Connedit.php:769 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" +msgstr "Descrizione (facoltativa):" -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "Slide to adjust your rating" -msgstr "Trascina per cambiare la tua valutazione" +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" -#: ../../Zotlabs/Module/Connedit.php:771 ../../Zotlabs/Module/Connedit.php:776 -msgid "Optionally explain your rating" -msgstr "Commento facoltativo" +#: ../../Zotlabs/Module/Photos.php:745 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../Zotlabs/Module/Connedit.php:773 -msgid "Custom Filter" -msgstr "Filtro personalizzato" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Newest First" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Connedit.php:774 -msgid "Only import posts with this text" -msgstr "Importa solo i post che contengono queste parole chiave" +#: ../../Zotlabs/Module/Photos.php:770 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Connedit.php:774 ../../Zotlabs/Module/Connedit.php:775 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" +#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 +msgid "View Photo" +msgstr "Guarda la foto" -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Do not import posts with this text" -msgstr "Non importare i post con queste parole chiave" +#: ../../Zotlabs/Module/Photos.php:825 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../Zotlabs/Module/Connedit.php:777 -msgid "This information is public!" -msgstr "Questa informazione è pubblica!" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." -#: ../../Zotlabs/Module/Connedit.php:782 -msgid "Connection Pending Approval" -msgstr "Contatti in attesa di approvazione" +#: ../../Zotlabs/Module/Photos.php:874 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../Zotlabs/Module/Connedit.php:785 ../../Zotlabs/Module/Settings.php:860 -msgid "inherited" -msgstr "derivato" +#: ../../Zotlabs/Module/Photos.php:932 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../Zotlabs/Module/Connedit.php:787 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." +#: ../../Zotlabs/Module/Photos.php:933 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" -#: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Settings.php:857 -msgid "Their Settings" -msgstr "Permessi concessi a te" +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Private Photo" +msgstr "Foto privata" -#: ../../Zotlabs/Module/Connedit.php:790 ../../Zotlabs/Module/Settings.php:858 -msgid "My Settings" -msgstr "Permessi che concedo" +#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 +msgid "Previous" +msgstr "Precendente" -#: ../../Zotlabs/Module/Connedit.php:792 ../../Zotlabs/Module/Settings.php:862 -msgid "Individual Permissions" -msgstr "Permessi individuali" +#: ../../Zotlabs/Module/Photos.php:955 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" -#: ../../Zotlabs/Module/Connedit.php:793 ../../Zotlabs/Module/Settings.php:863 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." +#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1451 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Rimuovi" -#: ../../Zotlabs/Module/Connedit.php:794 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Edit photo" +msgstr "Modifica la foto" -#: ../../Zotlabs/Module/Connedit.php:795 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppo di canali creato." +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Impossibile creare il gruppo di canali." +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 -msgid "Privacy group not found." -msgstr "Gruppo di canali non trovato." +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Gruppo di canali aggiornato." +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "Didascalia" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Crea un gruppo di canali." +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Nome del gruppo di canali:" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "I membri potranno vedere gli altri canali del gruppo" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Gruppo di canali rimosso." +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Impossibile rimuovere il gruppo di canali." +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Editor dei gruppi di canali" +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../include/conversation.php:1227 +msgid "Share" +msgstr "Condividi" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Membri" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Attendere" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:708 +msgid "This is you" +msgstr "Questo sei tu" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:224 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:720 +#: ../../include/conversation.php:1200 ../../include/page_widgets.php:43 +msgid "Preview" +msgstr "Anteprima" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nome del menu" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titolo del menu" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Salva e procedi" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 -msgid "Menus" -msgstr "Menù" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1756 +msgid "View all" +msgstr "Vedi tutto" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "Elimina" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1780 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1783 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Elimina questo menù" +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "Gestione foto" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "In questa foto:" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifica questo menù" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "Mappa" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menù non trovato." +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifica menù" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "Chiudi" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "Guarda l'album" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nome del menù" +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pagina web" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titolo del menù" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "block" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Non trovato." +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "%s elemento installato" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" #: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 msgid "Nothing to import." @@ -2820,6 +3304,11 @@ msgstr "Nessun indirizzo trovato." msgid "Manage Channel Locations" msgstr "Modifica gli indirizzi del canale" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1237 +#: ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Indirizzo" + #: ../../Zotlabs/Module/Locs.php:119 msgid "Primary" msgstr "Primario" @@ -2846,5567 +3335,5358 @@ msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più fu msgid "Hub not found." msgstr "Hub non trovato." -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chat non trovata" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Lascia la chat" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Mi piace/Non mi piace" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Elimina questa chat" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Questa funzionalità è riservata agli iscritti." -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Non sono presente" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Sono online" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Richiesta non valida." -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Aggiungi questa chat ai segnalibri" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "il canale" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1182 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "Oggetto" -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:723 -#: ../../include/conversation.php:1276 -msgid "Encrypt text" -msgstr "Cifratura del messaggio" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funzionalità disattivata." +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Il comando precedente è stato annullato." -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" -msgstr "Nuova chat" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 +#: ../../include/conversation.php:120 +msgid "photo" +msgstr "la foto" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" -msgstr "Nome chat" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1951 ../../include/conversation.php:148 +msgid "status" +msgstr "il messaggio di stato" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" -msgstr "Scadenza dei messaggi della chat (minuti)" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 +#: ../../include/conversation.php:123 ../../include/event.php:958 +msgid "event" +msgstr "l'evento" -#: ../../Zotlabs/Module/Chat.php:249 +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 #, php-format -msgid "%1$s's Chatrooms" -msgstr "Le chat di %1$s" - -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" -msgstr "Nessuna chat disponibile" - -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" -msgstr "Scadenza" - -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Le voci del calendario sono state importate." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Non sono state trovate voci del calendario." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Un evento non può terminare prima del suo inizio." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Impossibile creare un'anteprima." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento non trovato." - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit event title" -msgstr "Modifica il titolo dell'evento" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Event title" -msgstr "Titolo dell'evento" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit Category" -msgstr "Modifica la categoria" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Category" -msgstr "Categoria" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit start date and time" -msgstr "Modifica data/ora di inizio" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Start date and time" -msgstr "Data e ora di inizio" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 -msgid "Finish date and time are not known or not relevant" -msgstr "La data e l'ora di fine non sono necessarie" - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit finish date and time" -msgstr "Modifica data/ora di fine" +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Finish date and time" -msgstr "Data e ora di fine" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s è d'accordo" -#: ../../Zotlabs/Module/Events.php:463 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non è d'accordo" -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Description" -msgstr "Modifica la descrizione" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non si esprime" -#: ../../Zotlabs/Module/Events.php:467 -msgid "Edit Location" -msgstr "Modifica il luogo" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s partecipa" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 -msgid "Share this event" -msgstr "Condividi questo evento" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non partecipa" -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1248 -msgid "Permission settings" -msgstr "Permessi dei tuoi contatti" +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s forse partecipa" -#: ../../Zotlabs/Module/Events.php:485 -msgid "Advanced Options" -msgstr "Opzioni avanzate" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Comando completato." -#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Grazie." -#: ../../Zotlabs/Module/Events.php:619 -msgid "Edit event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." -#: ../../Zotlabs/Module/Events.php:621 -msgid "Delete event" -msgstr "Elimina l'evento" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" -#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1716 -msgid "Link to Source" -msgstr "Link al sito d'origine" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Crea nuova" -#: ../../Zotlabs/Module/Events.php:655 -msgid "calendar" -msgstr "calendario" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:210 +msgid "Channel Manager" +msgstr "Gestione canali" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canale attuale" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crea un evento" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." -#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 -#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 -msgid "Previous" -msgstr "Precendente" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canale predefinito" -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Esporta" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Rendi predefinito" -#: ../../Zotlabs/Module/Events.php:681 -msgid "Month" -msgstr "Mese" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" -msgstr "Settimana" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" -msgstr "Giorno" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canale delegato" -#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Oggi" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossibile creare l'elemento." -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" -msgstr "Evento eliminato" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" -msgstr "Impossibile eliminare l'evento" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nome link" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Messaggi" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Messaggio revocato." +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Ordine dell'elenco" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti andranno in fondo all'elenco" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Il canale cercato non è in questa rete" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Salva e termina" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Salva e continua" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "A:" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menu:" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Oggetto:" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Destinazione link" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1232 -msgid "Attach file" -msgstr "Allega file" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Modifica il menù" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Invia" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Modifica l'elemento" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1271 -msgid "Set expiration date" -msgstr "Data di scadenza" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Elimina l'elemento" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina il messaggio" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nuovo elemento" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapporto di trasmissione" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revoca il messaggio" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Elimina la conversazione" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Invia la risposta" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Il tuo messaggio per %s (%s):" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Testo del link" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# account" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# account bloccati" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1721 -msgid "Password Reset" -msgstr "Reimposta la password" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "# account scaduti" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "# account in scadenza" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La tua nuova password è" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# canali" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# primari" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "clicca qui per accedere" +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# cloni" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "Coda messaggi in uscita" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "Il tuo software necessita di un aggiornamento" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:724 ../../Zotlabs/Module/Admin.php:768 +#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1342 ../../Zotlabs/Module/Admin.php:1433 +#: ../../Zotlabs/Module/Admin.php:1626 ../../Zotlabs/Module/Admin.php:1660 +#: ../../Zotlabs/Module/Admin.php:1745 +msgid "Administration" +msgstr "Amministrazione" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Riepilogo" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Indirizzo email" +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Account creati" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reimposta" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:728 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s è %2$s" +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Canali creati" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Umore" +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:729 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Versione" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "Versione del repository (master)" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "Versione del repository (dev)" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:210 -msgid "Channel Manager" -msgstr "Gestione canali" +#: ../../Zotlabs/Module/Admin.php:377 +msgid "Site settings updated." +msgstr "Impostazioni del sito salvate correttamente." -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canale attuale" +#: ../../Zotlabs/Module/Admin.php:404 ../../include/text.php:2888 +msgid "Default" +msgstr "Predefinito" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Seleziona l'altro canale a cui vuoi passare." +#: ../../Zotlabs/Module/Admin.php:416 +msgid "experimental" +msgstr "sperimentale" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canale predefinito" +#: ../../Zotlabs/Module/Admin.php:418 +msgid "unsupported" +msgstr "non supportato" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Rendi predefinito" +#: ../../Zotlabs/Module/Admin.php:464 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" +#: ../../Zotlabs/Module/Admin.php:470 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" +#: ../../Zotlabs/Module/Admin.php:471 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canale delegato" +#: ../../Zotlabs/Module/Admin.php:472 +msgid "My site has free access only" +msgstr "È un servizio gratuito" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." +#: ../../Zotlabs/Module/Admin.php:473 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Admin.php:501 ../../include/widgets.php:1490 +msgid "Site" +msgstr "Sito" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "File upload" +msgstr "Caricamento file" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Policies" +msgstr "Politiche" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessi personali:" +#: ../../Zotlabs/Module/Admin.php:506 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avanzate" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Site name" +msgstr "Nome del sito" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Banner/Logo" +msgstr "Banner o logo" -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Foto del profilo" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Administrator Information" +msgstr "Informazioni sull'amministratore" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album non trovato." +#: ../../Zotlabs/Module/Admin.php:515 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Elimina album" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "System language" +msgstr "Lingua di sistema" -#: ../../Zotlabs/Module/Photos.php:151 +#: ../../Zotlabs/Module/Admin.php:517 +msgid "System theme" +msgstr "Tema di sistema" + +#: ../../Zotlabs/Module/Admin.php:517 msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "Elimina foto" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Allow Feeds as Connections" +msgstr "Permetti di aggiungere i feed come contatti" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." +#: ../../Zotlabs/Module/Admin.php:520 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso delle risorse di sistema!)" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Invitation only" +msgstr "Solo con invito" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Titolo (facoltativo):" +#: ../../Zotlabs/Module/Admin.php:524 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descrizione (facoltativa):" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Register text" +msgstr "Testo di registrazione" -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../Zotlabs/Module/Photos.php:745 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../Zotlabs/Module/Admin.php:526 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Newest First" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Admin.php:526 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." -#: ../../Zotlabs/Module/Photos.php:770 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Preserve site homepage URL" +msgstr "Conserva l'URL della homepage" -#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 -msgid "View Photo" -msgstr "Guarda la foto" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." -#: ../../Zotlabs/Module/Photos.php:825 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." +#: ../../Zotlabs/Module/Admin.php:528 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" -#: ../../Zotlabs/Module/Photos.php:932 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." -#: ../../Zotlabs/Module/Photos.php:933 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Allowed email domains" +msgstr "Domini email consentiti" -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" -#: ../../Zotlabs/Module/Photos.php:955 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Not allowed email domains" +msgstr "Domini email non consentiti" -#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Rimuovi" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Edit photo" -msgstr "Modifica la foto" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Verify Email Addresses" +msgstr "Verifica l'indirizzo email" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Import Public Streams" +msgstr "Suggerisci contenuti pubblici della rete Hubzilla" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" -msgstr "Didascalia" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../Zotlabs/Module/Admin.php:535 +msgid "Login on Homepage" +msgstr "Login sulla homepage" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Admin.php:535 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" +#: ../../Zotlabs/Module/Admin.php:536 +msgid "Enable context help" +msgstr "Abilita la guida contestuale" + +#: ../../Zotlabs/Module/Admin.php:536 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" + +#: ../../Zotlabs/Module/Admin.php:538 +msgid "Directory Server URL" +msgstr "URL del directory server" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" +#: ../../Zotlabs/Module/Admin.php:538 +msgid "Default directory server" +msgstr "Directory server predefinito" -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" +#: ../../Zotlabs/Module/Admin.php:540 +msgid "Proxy user" +msgstr "Utente proxy" -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Attendere" +#: ../../Zotlabs/Module/Admin.php:541 +msgid "Proxy URL" +msgstr "URL proxy" -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:708 -msgid "This is you" -msgstr "Questo sei tu" +#: ../../Zotlabs/Module/Admin.php:542 +msgid "Network timeout" +msgstr "Timeout rete" -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commento" +#: ../../Zotlabs/Module/Admin.php:542 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Admin.php:543 +msgid "Delivery interval" +msgstr "Recapito ritardato" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Admin.php:543 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" +#: ../../Zotlabs/Module/Admin.php:544 +msgid "Deliveries per process" +msgstr "Tentativi di recapito per processo" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" +#: ../../Zotlabs/Module/Admin.php:544 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" +#: ../../Zotlabs/Module/Admin.php:545 +msgid "Poll interval" +msgstr "Intervallo di polling" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" +#: ../../Zotlabs/Module/Admin.php:545 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" +#: ../../Zotlabs/Module/Admin.php:546 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" +#: ../../Zotlabs/Module/Admin.php:546 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1743 -msgid "View all" -msgstr "Vedi tutto" +#: ../../Zotlabs/Module/Admin.php:547 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1767 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" +#: ../../Zotlabs/Module/Admin.php:547 +msgid "0 for no expiration of imported content" +msgstr "0 per non avere scadenza" -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1770 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" +#: ../../Zotlabs/Module/Admin.php:691 +#, php-format +msgid "Lock feature %s" +msgstr "Rendi non modificabile %s" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "Gestione foto" +#: ../../Zotlabs/Module/Admin.php:699 +msgid "Manage Additional Features" +msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" -msgstr "In questa foto:" +#: ../../Zotlabs/Module/Admin.php:716 +msgid "No server found" +msgstr "Server non trovato" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" -msgstr "Mappa" +#: ../../Zotlabs/Module/Admin.php:723 ../../Zotlabs/Module/Admin.php:1059 +msgid "ID" +msgstr "ID" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Admin.php:723 +msgid "for channel" +msgstr "per il canale" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Admin.php:723 +msgid "on server" +msgstr "sul server" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Chiudi" +#: ../../Zotlabs/Module/Admin.php:725 +msgid "Server" +msgstr "Server" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" -msgstr "Guarda l'album" +#: ../../Zotlabs/Module/Admin.php:759 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "Il nome è obbligatorio" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "" +"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/https://vimeo.com/
    https://soundcloud.com/
    " +msgstr "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    " -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "Key e Secret sono richiesti" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." -#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:686 -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Aggiorna" +#: ../../Zotlabs/Module/Admin.php:769 ../../include/widgets.php:1493 +msgid "Security" +msgstr "Sicurezza" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Questo canale è limitato a %d token" +#: ../../Zotlabs/Module/Admin.php:771 +msgid "Block public" +msgstr "Blocca pagine pubbliche" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Nome e password sono obbligatori." +#: ../../Zotlabs/Module/Admin.php:771 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." -msgstr "Token salvato." +#: ../../Zotlabs/Module/Admin.php:772 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Imposta il \"Transport Security\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:290 -msgid "Not valid email." -msgstr "Email non valida." +#: ../../Zotlabs/Module/Admin.php:773 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Imposta il \"Content Security Policy\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:293 -msgid "Protected email address. Cannot change to that email." -msgstr "È un indirizzo email riservato. Non puoi sceglierlo." +#: ../../Zotlabs/Module/Admin.php:774 +msgid "Allow communications only from these sites" +msgstr "Permetti la comunicazione solo da questi siti" -#: ../../Zotlabs/Module/Settings.php:302 -msgid "System failure storing new email. Please try again." -msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." +#: ../../Zotlabs/Module/Admin.php:774 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" -#: ../../Zotlabs/Module/Settings.php:319 -msgid "Password verification failed." -msgstr "Verifica della password fallita." +#: ../../Zotlabs/Module/Admin.php:775 +msgid "Block communications from these sites" +msgstr "Blocca la comunicazione da questi siti" -#: ../../Zotlabs/Module/Settings.php:326 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." +#: ../../Zotlabs/Module/Admin.php:776 +msgid "Allow communications only from these channels" +msgstr "Permetti la comunicazione solo da questi canali" -#: ../../Zotlabs/Module/Settings.php:330 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." +#: ../../Zotlabs/Module/Admin.php:776 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" -#: ../../Zotlabs/Module/Settings.php:344 -msgid "Password changed." -msgstr "Password cambiata." +#: ../../Zotlabs/Module/Admin.php:777 +msgid "Block communications from these channels" +msgstr "Blocca la comunicazione da questi canali" -#: ../../Zotlabs/Module/Settings.php:346 -msgid "Password update failed. Please try again." -msgstr "Modifica password fallita. Prova ancora." +#: ../../Zotlabs/Module/Admin.php:778 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." -#: ../../Zotlabs/Module/Settings.php:595 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." +#: ../../Zotlabs/Module/Admin.php:779 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" -#: ../../Zotlabs/Module/Settings.php:659 ../../Zotlabs/Module/Settings.php:685 -#: ../../Zotlabs/Module/Settings.php:721 -msgid "Add application" -msgstr "Aggiungi una app" +#: ../../Zotlabs/Module/Admin.php:779 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." -#: ../../Zotlabs/Module/Settings.php:662 -msgid "Name of application" -msgstr "Nome dell'applicazione" +#: ../../Zotlabs/Module/Admin.php:780 +msgid "Block embedded HTML from these domains" +msgstr "Blocca i contenuti incorporati HTML da questi domini" -#: ../../Zotlabs/Module/Settings.php:663 ../../Zotlabs/Module/Settings.php:689 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Admin.php:798 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." -#: ../../Zotlabs/Module/Settings.php:663 ../../Zotlabs/Module/Settings.php:664 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" +#: ../../Zotlabs/Module/Admin.php:808 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." -#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Settings.php:690 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Admin.php:811 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." -#: ../../Zotlabs/Module/Settings.php:665 ../../Zotlabs/Module/Settings.php:691 -msgid "Redirect" -msgstr "Redirect" +#: ../../Zotlabs/Module/Admin.php:815 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." -#: ../../Zotlabs/Module/Settings.php:665 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" +#: ../../Zotlabs/Module/Admin.php:818 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" -#: ../../Zotlabs/Module/Settings.php:666 ../../Zotlabs/Module/Settings.php:692 -msgid "Icon url" -msgstr "Url icona" +#: ../../Zotlabs/Module/Admin.php:834 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." -#: ../../Zotlabs/Module/Settings.php:666 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Facoltativo" +#: ../../Zotlabs/Module/Admin.php:838 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." -#: ../../Zotlabs/Module/Settings.php:677 -msgid "Application not found." -msgstr "Applicazione non trovata." +#: ../../Zotlabs/Module/Admin.php:840 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." -#: ../../Zotlabs/Module/Settings.php:720 -msgid "Connected Apps" -msgstr "App connesse" +#: ../../Zotlabs/Module/Admin.php:841 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." -#: ../../Zotlabs/Module/Settings.php:724 -msgid "Client key starts with" -msgstr "La client key inizia con" +#: ../../Zotlabs/Module/Admin.php:872 +msgid "Queue Statistics" +msgstr "Statistiche della coda" -#: ../../Zotlabs/Module/Settings.php:725 -msgid "No name" -msgstr "Nessun nome" +#: ../../Zotlabs/Module/Admin.php:873 +msgid "Total Entries" +msgstr "Totale" -#: ../../Zotlabs/Module/Settings.php:726 -msgid "Remove authorization" -msgstr "Revoca l'autorizzazione" +#: ../../Zotlabs/Module/Admin.php:874 +msgid "Priority" +msgstr "Priorità" -#: ../../Zotlabs/Module/Settings.php:739 -msgid "No feature settings configured" -msgstr "Non hai componenti aggiuntivi da personalizzare" +#: ../../Zotlabs/Module/Admin.php:875 +msgid "Destination URL" +msgstr "URL di destinazione" -#: ../../Zotlabs/Module/Settings.php:746 -msgid "Feature/Addon Settings" -msgstr "Impostazioni dei componenti aggiuntivi" +#: ../../Zotlabs/Module/Admin.php:876 +msgid "Mark hub permanently offline" +msgstr "Questo hub è definitivamente offline" -#: ../../Zotlabs/Module/Settings.php:769 -msgid "Account Settings" -msgstr "Il tuo account" +#: ../../Zotlabs/Module/Admin.php:877 +msgid "Empty queue for this hub" +msgstr "Svuota la coda per questo hub" -#: ../../Zotlabs/Module/Settings.php:770 -msgid "Current Password" -msgstr "Password attuale" +#: ../../Zotlabs/Module/Admin.php:878 +msgid "Last known contact" +msgstr "Ultimo scambio dati" -#: ../../Zotlabs/Module/Settings.php:771 -msgid "Enter New Password" -msgstr "Nuova password" +#: ../../Zotlabs/Module/Admin.php:914 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "Modificato il blocco su %s account" +msgstr[1] "Modificato il blocco verso %s" -#: ../../Zotlabs/Module/Settings.php:772 -msgid "Confirm New Password" -msgstr "Conferma la nuova password" +#: ../../Zotlabs/Module/Admin.php:921 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account eliminato" +msgstr[1] "%s account eliminati" -#: ../../Zotlabs/Module/Settings.php:772 -msgid "Leave password fields blank unless changing" -msgstr "Lascia vuoti questi campi per non cambiare la password" +#: ../../Zotlabs/Module/Admin.php:957 +msgid "Account not found" +msgstr "Account non trovato" -#: ../../Zotlabs/Module/Settings.php:774 -#: ../../Zotlabs/Module/Settings.php:1194 -msgid "Email Address:" -msgstr "Indirizzo email:" +#: ../../Zotlabs/Module/Admin.php:968 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' eliminato" -#: ../../Zotlabs/Module/Settings.php:775 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Elimina l'account" +#: ../../Zotlabs/Module/Admin.php:976 +#, php-format +msgid "Account '%s' blocked" +msgstr "Aggiunto un blocco verso '%s'" -#: ../../Zotlabs/Module/Settings.php:776 -msgid "Remove this account including all its channels" -msgstr "Elimina questo account e tutti i suoi canali" +#: ../../Zotlabs/Module/Admin.php:984 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Rimosso il blocco verso '%s'" -#: ../../Zotlabs/Module/Settings.php:810 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." -msgstr "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." +#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 +#: ../../include/widgets.php:1491 +msgid "Accounts" +msgstr "Account" -#: ../../Zotlabs/Module/Settings.php:812 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" +#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 +msgid "select all" +msgstr "seleziona tutti" -#: ../../Zotlabs/Module/Settings.php:847 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Token di accesso ospite" +#: ../../Zotlabs/Module/Admin.php:1047 +msgid "Registrations waiting for confirm" +msgstr "Registrazioni in attesa di conferma" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "Login Name" -msgstr "Nome utente" +#: ../../Zotlabs/Module/Admin.php:1048 +msgid "Request date" +msgstr "Data richiesta" -#: ../../Zotlabs/Module/Settings.php:855 -msgid "Login Password" -msgstr "Password" +#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 +#: ../../include/network.php:2208 +msgid "Email" +msgstr "Email" -#: ../../Zotlabs/Module/Settings.php:856 -msgid "Expires (yyyy-mm-dd)" -msgstr "Con scadenza (aaaa-mm-gg)" +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../Zotlabs/Module/Settings.php:881 ../../Zotlabs/Module/Admin.php:677 -#: ../../Zotlabs/Module/Admin.php:678 -msgid "Off" -msgstr "Off" +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Deny" +msgstr "Nega" -#: ../../Zotlabs/Module/Settings.php:881 ../../Zotlabs/Module/Admin.php:677 -#: ../../Zotlabs/Module/Admin.php:678 -msgid "On" -msgstr "On" +#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Blocca" -#: ../../Zotlabs/Module/Settings.php:888 -msgid "Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Sblocca" -#: ../../Zotlabs/Module/Settings.php:912 -msgid "Connector Settings" -msgstr "Impostazioni del connettore" +#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 +msgid "All Channels" +msgstr "Tutti i canali" -#: ../../Zotlabs/Module/Settings.php:951 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" +#: ../../Zotlabs/Module/Admin.php:1062 +msgid "Register date" +msgstr "Data registrazione" -#: ../../Zotlabs/Module/Settings.php:954 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Sperimentale)" +#: ../../Zotlabs/Module/Admin.php:1063 +msgid "Last login" +msgstr "Ultimo accesso" -#: ../../Zotlabs/Module/Settings.php:957 ../../Zotlabs/Module/Admin.php:410 -msgid "mobile" -msgstr "mobile" +#: ../../Zotlabs/Module/Admin.php:1064 +msgid "Expires" +msgstr "Con scadenza" -#: ../../Zotlabs/Module/Settings.php:996 -msgid "Display Settings" -msgstr "Aspetto" +#: ../../Zotlabs/Module/Admin.php:1065 +msgid "Service Class" +msgstr "Classe dell'account" -#: ../../Zotlabs/Module/Settings.php:997 -msgid "Theme Settings" -msgstr "Impostazioni del tema" +#: ../../Zotlabs/Module/Admin.php:1067 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:998 -msgid "Custom Theme Settings" -msgstr "Personalizzazione del tema" +#: ../../Zotlabs/Module/Admin.php:1068 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:999 -msgid "Content Settings" -msgstr "Impostazioni dei contenuti" +#: ../../Zotlabs/Module/Admin.php:1104 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" -#: ../../Zotlabs/Module/Settings.php:1005 -msgid "Display Theme:" -msgstr "Tema per schermi medio grandi:" +#: ../../Zotlabs/Module/Admin.php:1113 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s canale permette/non permette codice nei contenuti" +msgstr[1] "%s canali permettono/non permettono codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1006 -msgid "Mobile Theme:" -msgstr "Tema per dispositivi mobili:" +#: ../../Zotlabs/Module/Admin.php:1119 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" -#: ../../Zotlabs/Module/Settings.php:1007 -msgid "Preload images before rendering the page" -msgstr "Carica le immagini prima del rendering della pagina" +#: ../../Zotlabs/Module/Admin.php:1139 +msgid "Channel not found" +msgstr "Canale non trovato" -#: ../../Zotlabs/Module/Settings.php:1007 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" +#: ../../Zotlabs/Module/Admin.php:1149 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" -#: ../../Zotlabs/Module/Settings.php:1008 -msgid "Enable user zoom on mobile devices" -msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" +#: ../../Zotlabs/Module/Admin.php:1161 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" -#: ../../Zotlabs/Module/Settings.php:1009 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" +#: ../../Zotlabs/Module/Admin.php:1161 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" -#: ../../Zotlabs/Module/Settings.php:1009 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" +#: ../../Zotlabs/Module/Admin.php:1172 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Il canale '%s' permette codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1010 -msgid "Maximum number of conversations to load at any time:" -msgstr "Massimo numero di conversazioni da mostrare ogni volta:" +#: ../../Zotlabs/Module/Admin.php:1172 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1010 -msgid "Maximum of 100 items" -msgstr "Massimo 100" +#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1492 +msgid "Channels" +msgstr "Canali" -#: ../../Zotlabs/Module/Settings.php:1011 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra le faccine (smilies) come immagini" +#: ../../Zotlabs/Module/Admin.php:1227 +msgid "Censor" +msgstr "Applica censura" -#: ../../Zotlabs/Module/Settings.php:1012 -msgid "Link post titles to source" -msgstr "Il link del titolo di un post porta al sito originale" +#: ../../Zotlabs/Module/Admin.php:1228 +msgid "Uncensor" +msgstr "Rimuovi censura" -#: ../../Zotlabs/Module/Settings.php:1013 -msgid "System Page Layout Editor - (advanced)" -msgstr "Modifica i layout di sistema (avanzato)" +#: ../../Zotlabs/Module/Admin.php:1229 +msgid "Allow Code" +msgstr "Permetti codice" -#: ../../Zotlabs/Module/Settings.php:1016 -msgid "Use blog/list mode on channel page" -msgstr "Mostra il canale nella modalità blog" +#: ../../Zotlabs/Module/Admin.php:1230 +msgid "Disallow Code" +msgstr "Non permettere codice" -#: ../../Zotlabs/Module/Settings.php:1016 -#: ../../Zotlabs/Module/Settings.php:1017 -msgid "(comments displayed separately)" -msgstr "(i commenti sono mostrati separatamente)" +#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1644 +msgid "Channel" +msgstr "Canale" -#: ../../Zotlabs/Module/Settings.php:1017 -msgid "Use blog/list mode on grid page" -msgstr "Mostra la tua rete in modalità blog" +#: ../../Zotlabs/Module/Admin.php:1235 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Settings.php:1018 -msgid "Channel page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti del canale (in pixel)" +#: ../../Zotlabs/Module/Admin.php:1239 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1018 -#: ../../Zotlabs/Module/Settings.php:1019 -msgid "click to expand content exceeding this height" -msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" +#: ../../Zotlabs/Module/Admin.php:1240 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1019 -msgid "Grid page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti della tua rete (in pixel)" +#: ../../Zotlabs/Module/Admin.php:1297 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Nobody except yourself" -msgstr "Nessuno tranne te" +#: ../../Zotlabs/Module/Admin.php:1301 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." -#: ../../Zotlabs/Module/Settings.php:1049 -msgid "Only those you specifically allow" -msgstr "Solo chi riceve il mio permesso" +#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1599 +msgid "Disable" +msgstr "Disattiva" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Approved connections" -msgstr "Contatti approvati" +#: ../../Zotlabs/Module/Admin.php:1314 ../../Zotlabs/Module/Admin.php:1601 +msgid "Enable" +msgstr "Attiva" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Any connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Admin.php:1343 ../../Zotlabs/Module/Admin.php:1434 +#: ../../include/widgets.php:1495 +msgid "Plugins" +msgstr "Plugin" -#: ../../Zotlabs/Module/Settings.php:1052 -msgid "Anybody on this website" -msgstr "Chiunque su questo hub" +#: ../../Zotlabs/Module/Admin.php:1344 ../../Zotlabs/Module/Admin.php:1628 +msgid "Toggle" +msgstr "Attiva/disattiva" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Anybody in this network" -msgstr "Chiunque su questa rete" +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1629 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 +#: ../../include/nav.php:212 +msgid "Settings" +msgstr "Impostazioni" -#: ../../Zotlabs/Module/Settings.php:1054 -msgid "Anybody authenticated" -msgstr "Chiunque abbia effettuato l'accesso" +#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1638 +msgid "Author: " +msgstr "Autore:" -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Anybody on the internet" -msgstr "Chiunque su internet" +#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1639 +msgid "Maintainer: " +msgstr "Gestore:" -#: ../../Zotlabs/Module/Settings.php:1129 -msgid "Publish your default profile in the network directory" -msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" +#: ../../Zotlabs/Module/Admin.php:1354 +msgid "Minimum project version: " +msgstr "Minima versione hubzilla" -#: ../../Zotlabs/Module/Settings.php:1134 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Vuoi essere suggerito come amico ai nuovi membri?" +#: ../../Zotlabs/Module/Admin.php:1355 +msgid "Maximum project version: " +msgstr "Massima versione hubzilla" -#: ../../Zotlabs/Module/Settings.php:1143 -msgid "Your channel address is" -msgstr "L'indirizzo del tuo canale è" +#: ../../Zotlabs/Module/Admin.php:1356 +msgid "Minimum PHP version: " +msgstr "Minima versione PHP:" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Channel Settings" -msgstr "Impostazioni del canale" +#: ../../Zotlabs/Module/Admin.php:1357 +msgid "Compatible Server Roles: " +msgstr "Ruoli compatibili per questo server" -#: ../../Zotlabs/Module/Settings.php:1192 -msgid "Basic Settings" -msgstr "Impostazioni di base" +#: ../../Zotlabs/Module/Admin.php:1358 +msgid "Requires: " +msgstr "Necessita di:" -#: ../../Zotlabs/Module/Settings.php:1193 ../../include/channel.php:1164 -msgid "Full Name:" -msgstr "Nome completo:" +#: ../../Zotlabs/Module/Admin.php:1359 ../../Zotlabs/Module/Admin.php:1439 +msgid "Disabled - version incompatibility" +msgstr "Disabilitato - incompatibilità di versione" -#: ../../Zotlabs/Module/Settings.php:1195 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" +#: ../../Zotlabs/Module/Admin.php:1408 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Inserisci lo URL del repository git dei plugin." -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Default Post Location:" -msgstr "Località predefinita:" +#: ../../Zotlabs/Module/Admin.php:1409 +msgid "Plugin repo git URL" +msgstr "URL git del repository del plugin" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Geographical location to display on your posts" -msgstr "La posizione geografica da mostrare sui tuoi post" +#: ../../Zotlabs/Module/Admin.php:1410 +msgid "Custom repo name" +msgstr "Nome repository personalizzato" -#: ../../Zotlabs/Module/Settings.php:1197 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" +#: ../../Zotlabs/Module/Admin.php:1410 +msgid "(optional)" +msgstr "(facoltativo)" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Adult Content" -msgstr "Contenuto per adulti" +#: ../../Zotlabs/Module/Admin.php:1411 +msgid "Download Plugin Repo" +msgstr "Scarica il repository del plugin" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" +#: ../../Zotlabs/Module/Admin.php:1418 +msgid "Install new repo" +msgstr "Installa un nuovo repository" -#: ../../Zotlabs/Module/Settings.php:1201 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" +#: ../../Zotlabs/Module/Admin.php:1419 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" +msgstr "Installa" -#: ../../Zotlabs/Module/Settings.php:1204 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" +#: ../../Zotlabs/Module/Admin.php:1441 +msgid "Manage Repos" +msgstr "Gestisci i repository" -#: ../../Zotlabs/Module/Settings.php:1206 -msgid "Hide my online presence" -msgstr "Nascondi la mia presenza online" +#: ../../Zotlabs/Module/Admin.php:1442 +msgid "Installed Plugin Repositories" +msgstr "Repository per i plugin installati" -#: ../../Zotlabs/Module/Settings.php:1206 -msgid "Prevents displaying in your profile that you are online" -msgstr "Non mostrare sul tuo profilo quando sei online" +#: ../../Zotlabs/Module/Admin.php:1443 +msgid "Install a New Plugin Repository" +msgstr "Installa un nuovo repository per i plugin" -#: ../../Zotlabs/Module/Settings.php:1208 -msgid "Simple Privacy Settings:" -msgstr "Impostazioni di privacy semplificate" +#: ../../Zotlabs/Module/Admin.php:1450 +msgid "Switch branch" +msgstr "Cambia branch" -#: ../../Zotlabs/Module/Settings.php:1209 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" +#: ../../Zotlabs/Module/Admin.php:1564 +msgid "No themes found." +msgstr "Nessun tema trovato." -#: ../../Zotlabs/Module/Settings.php:1210 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" +#: ../../Zotlabs/Module/Admin.php:1620 +msgid "Screenshot" +msgstr "Istantanea dello schermo" -#: ../../Zotlabs/Module/Settings.php:1211 -msgid "Private - default private, never open or public" -msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" +#: ../../Zotlabs/Module/Admin.php:1627 ../../Zotlabs/Module/Admin.php:1661 +#: ../../include/widgets.php:1496 +msgid "Themes" +msgstr "Temi" -#: ../../Zotlabs/Module/Settings.php:1212 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" +#: ../../Zotlabs/Module/Admin.php:1666 +msgid "[Experimental]" +msgstr "[Sperimentale]" -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "Allow others to tag your posts" -msgstr "Permetti ad altri di taggare i tuoi post" +#: ../../Zotlabs/Module/Admin.php:1667 +msgid "[Unsupported]" +msgstr "[Non supportato]" -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" +#: ../../Zotlabs/Module/Admin.php:1691 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "Advanced Privacy Settings" -msgstr "Impostazioni di privacy avanzate" +#: ../../Zotlabs/Module/Admin.php:1746 ../../include/widgets.php:1517 +#: ../../include/widgets.php:1527 +msgid "Logs" +msgstr "Log" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "Expire other channel content after this many days" -msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" +#: ../../Zotlabs/Module/Admin.php:1748 +msgid "Clear" +msgstr "Pulisci" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "0 or blank to use the website limit." -msgstr "0 o vuoto per usare i valori predefiniti." +#: ../../Zotlabs/Module/Admin.php:1754 +msgid "Debugging" +msgstr "Debugging" -#: ../../Zotlabs/Module/Settings.php:1218 -#, php-format -msgid "This website expires after %d days." -msgstr "Per questo sito la scadenza è %d giorni. " +#: ../../Zotlabs/Module/Admin.php:1755 +msgid "Log file" +msgstr "File di log" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "This website does not expire imported content." -msgstr "I contenuti di questo sito non hanno scadenza." +#: ../../Zotlabs/Module/Admin.php:1755 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Relativo alla directory base del server web. Deve essere scrivibile." -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." +#: ../../Zotlabs/Module/Admin.php:1756 +msgid "Log level" +msgstr "Livello di log" -#: ../../Zotlabs/Module/Settings.php:1219 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo giornaliero di richieste di amicizia:" +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "New Profile Field" +msgstr "Nuovo campo del profilo" -#: ../../Zotlabs/Module/Settings.php:1219 -msgid "May reduce spam activity" -msgstr "Serve a ridurre lo spam" +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 +msgid "Field nickname" +msgstr "Nome breve del campo" -#: ../../Zotlabs/Module/Settings.php:1220 -msgid "Default Post and Publish Permissions" -msgstr "Permessi predefiniti per postare e pubblicare" +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 +msgid "System name of field" +msgstr "Nome di sistema del campo" -#: ../../Zotlabs/Module/Settings.php:1221 ../../Zotlabs/Module/Mitem.php:154 -#: ../../Zotlabs/Module/Mitem.php:231 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" +#: ../../Zotlabs/Module/Admin.php:2044 ../../Zotlabs/Module/Admin.php:2064 +msgid "Input type" +msgstr "Tipo di dati" -#: ../../Zotlabs/Module/Settings.php:1222 -msgid "Use my default audience setting for the type of object published" -msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 +msgid "Field Name" +msgstr "Nome del campo" -#: ../../Zotlabs/Module/Settings.php:1229 -msgid "Channel permissions category:" -msgstr "Categorie di permessi dei canali:" +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 +msgid "Label on profile pages" +msgstr "Etichetta da mostrare sulla pagina del profilo" -#: ../../Zotlabs/Module/Settings.php:1235 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 +msgid "Help text" +msgstr "Testo di aiuto" -#: ../../Zotlabs/Module/Settings.php:1235 -msgid "Useful to reduce spamming" -msgstr "Serve e ridurre lo spam" +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 +msgid "Additional info (optional)" +msgstr "Informazioni aggiuntive (facoltative)" -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Notification Settings" -msgstr "Impostazioni di notifica" +#: ../../Zotlabs/Module/Admin.php:2056 +msgid "Field definition not found" +msgstr "Impossibile trovare la definizione del campo" -#: ../../Zotlabs/Module/Settings.php:1239 -msgid "By default post a status message when:" -msgstr "Pubblica un messaggio di stato quando:" +#: ../../Zotlabs/Module/Admin.php:2062 +msgid "Edit Profile Field" +msgstr "Modifica campo del profilo" -#: ../../Zotlabs/Module/Settings.php:1240 -msgid "accepting a friend request" -msgstr "accetto una nuova amicizia" +#: ../../Zotlabs/Module/Admin.php:2120 ../../include/widgets.php:1498 +msgid "Profile Fields" +msgstr "Campi del profilo" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "joining a forum/community" -msgstr "entro a far parte di un forum" +#: ../../Zotlabs/Module/Admin.php:2121 +msgid "Basic Profile Fields" +msgstr "Campi base del profilo" -#: ../../Zotlabs/Module/Settings.php:1242 -msgid "making an interesting profile change" -msgstr "faccio un cambiamento interessante al mio profilo" +#: ../../Zotlabs/Module/Admin.php:2122 +msgid "Advanced Profile Fields" +msgstr "Campi avanzati del profilo" -#: ../../Zotlabs/Module/Settings.php:1243 -msgid "Send a notification email when:" -msgstr "Invia una email di notifica quando:" +#: ../../Zotlabs/Module/Admin.php:2122 +msgid "(In addition to basic fields)" +msgstr "(In aggiunta ai campi di base)" -#: ../../Zotlabs/Module/Settings.php:1244 -msgid "You receive a connection request" -msgstr "Ricevi una richiesta di entrare in contatto" +#: ../../Zotlabs/Module/Admin.php:2124 +msgid "All available fields" +msgstr "Tutti i campi disponibili" -#: ../../Zotlabs/Module/Settings.php:1245 -msgid "Your connections are confirmed" -msgstr "I tuoi contatti sono confermati" +#: ../../Zotlabs/Module/Admin.php:2125 +msgid "Custom Fields" +msgstr "Campi personalizzati" -#: ../../Zotlabs/Module/Settings.php:1246 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla tua bacheca" +#: ../../Zotlabs/Module/Admin.php:2129 +msgid "Create Custom Field" +msgstr "Aggiungi campo personalizzato" -#: ../../Zotlabs/Module/Settings.php:1247 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento dopo di te" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." -#: ../../Zotlabs/Module/Settings.php:1249 -msgid "You receive a friend suggestion" -msgstr "Ti viene suggerito un amico" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" -#: ../../Zotlabs/Module/Settings.php:1250 -msgid "You are tagged in a post" -msgstr "Sei taggato in un post" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" -#: ../../Zotlabs/Module/Settings.php:1251 -msgid "You are poked/prodded/etc. in a post" -msgstr "Ricevi un poke in un post" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." -#: ../../Zotlabs/Module/Settings.php:1254 -msgid "Show visual notifications including:" -msgstr "Mostra queste notifiche a schermo:" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 +msgid "Password Reset" +msgstr "Reimposta la password" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "Unseen grid activity" -msgstr "Nuove attività nella rete" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." -#: ../../Zotlabs/Module/Settings.php:1257 -msgid "Unseen channel activity" -msgstr "Novità nei canali" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La tua nuova password è" -#: ../../Zotlabs/Module/Settings.php:1258 -msgid "Unseen private messages" -msgstr "Nuovi messaggi privati" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" -#: ../../Zotlabs/Module/Settings.php:1258 -#: ../../Zotlabs/Module/Settings.php:1263 -#: ../../Zotlabs/Module/Settings.php:1264 -#: ../../Zotlabs/Module/Settings.php:1265 -msgid "Recommended" -msgstr "Consigliato" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "clicca qui per accedere" -#: ../../Zotlabs/Module/Settings.php:1259 -msgid "Upcoming events" -msgstr "Prossimi eventi" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "Events today" -msgstr "Eventi di oggi" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Upcoming birthdays" -msgstr "Prossimi compleanni" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Not available in all themes" -msgstr "Non disponibile in tutti i temi" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "System (personal) notifications" -msgstr "Notifiche personali dal sistema" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Indirizzo email" -#: ../../Zotlabs/Module/Settings.php:1263 -msgid "System info messages" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reimposta" -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "System critical alerts" -msgstr "Avvisi critici di sistema" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s è %2$s" -#: ../../Zotlabs/Module/Settings.php:1265 -msgid "New connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Umore" -#: ../../Zotlabs/Module/Settings.php:1266 -msgid "System Registrations" -msgstr "Registrazioni" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" -#: ../../Zotlabs/Module/Settings.php:1267 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../Zotlabs/Module/Settings.php:1269 -msgid "Notify me of events this many days in advance" -msgstr "Giorni di anticipo per notificare gli eventi" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilo eliminato." -#: ../../Zotlabs/Module/Settings.php:1269 -msgid "Must be greater than 0" -msgstr "Maggiore di 0" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profilo-" -#: ../../Zotlabs/Module/Settings.php:1271 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." -#: ../../Zotlabs/Module/Settings.php:1272 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambia il funzionamento di questo account per necessità particolari" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." -#: ../../Zotlabs/Module/Settings.php:1275 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Il profilo non è disponibile per l'export." -#: ../../Zotlabs/Module/Settings.php:1276 -msgid "Miscellaneous Settings" -msgstr "Impostazioni varie" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio." -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Default photo upload folder" -msgstr "Cartella predefinita per le foto caricate" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Stato sentimentale" -#: ../../Zotlabs/Module/Settings.php:1277 -#: ../../Zotlabs/Module/Settings.php:1278 -msgid "%Y - current year, %m - current month" -msgstr "%Y - anno corrente, %m - mese corrente" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Partner affettivo" -#: ../../Zotlabs/Module/Settings.php:1278 -msgid "Default file upload folder" -msgstr "Cartella predefinita per i file caricati" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personale da mostrare sulle pagine del tuo canale" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Settings.php:1281 ../../Zotlabs/Module/Removeme.php:64 -msgid "Remove Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Lavoro/impiego" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "Remove this channel." -msgstr "Elimina questo canale." +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religione" -#: ../../Zotlabs/Module/Settings.php:1283 -msgid "Firefox Share $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Settings.php:1284 -msgid "Start calendar week on monday" -msgstr "La settimana inizia il lunedì" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# account" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Home page" -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# account bloccati" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interessi" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# account scaduti" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profilo aggiornato." -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# account in scadenza" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# canali" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primari" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Guarda questo profilo" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# cloni" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "Cambia la visibilità" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Coda messaggi in uscita" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Gestione del profilo" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Cambia la copertina del canale" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Amministrazione" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Riepilogo" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Account creati" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Clona questo profilo" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Elimina questo profilo" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Canali creati" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Aggiungi oggetti al profilo" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Plugin attivi" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1559 +msgid "Personal" +msgstr "Personali" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versione" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relazione" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versione del repository (master)" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Altro" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versione del repository (dev)" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importa il profilo da un file" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Esporta il profilo in un file" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2888 -msgid "Default" -msgstr "Predefinito" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "sperimentale" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Stato civile" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "non supportato" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Preferenze sessuali" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Nome del profilo" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Questo è il tuo profilo predefinito." -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Il tuo nome completo" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "È un servizio gratuito" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titolo/descrizione" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Indirizzo (via/piazza)" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1490 -msgid "Site" -msgstr "Sito" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Località" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:248 -msgid "Registration" -msgstr "Registrazione" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Regione/stato" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Caricamento file" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "CAP" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Politiche" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Nazione" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzate" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Con chi (se possibile)" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Nome del sito" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Banner o logo" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "dal (data)" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Raccontaci di te..." -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Indirizzo home page" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "Lingua di sistema" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Città dove vivo" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "Tema di sistema" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Orientamento religioso" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Parole chiavi mostrate nell'elenco dei canali" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Interessi musicali" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Libri, letteratura" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisione" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film, danza, cultura, intrattenimento" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Solo con invito" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Amore" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Scuola/educazione" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Contatti e social network" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Testo di registrazione" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "I miei altri canali" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "Immagine del profilo" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 +#: ../../include/nav.php:90 +msgid "Edit Profiles" +msgstr "Modifica i tuoi profili" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Conserva l'URL della homepage" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessi personali:" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Nessun risultato" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import Webpage Elements" +msgstr "Importa gli elementi della pagina web" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import selected" +msgstr "Importa i selezionati" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" +#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/conversation.php:1718 ../../include/nav.php:108 +msgid "Webpages" +msgstr "Pagine web" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" +#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Azioni" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." +#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" +#: ../../Zotlabs/Module/Webpages.php:227 +msgid "Page Title" +msgstr "Titolo della pagina" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." +#: ../../Zotlabs/Module/Webpages.php:258 +msgid "Invalid file type." +msgstr "Tipo di file non valido." -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" +#: ../../Zotlabs/Module/Webpages.php:270 +msgid "Error opening zip file" +msgstr "Errore nell'apertura del file zip" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." +#: ../../Zotlabs/Module/Webpages.php:281 +msgid "Invalid folder path." +msgstr "La cartella indicata non è valida." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Suggerisci contenuti pubblici della rete Hubzilla" +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "No webpage elements detected." +msgstr "Nella pagina web non sono presenti elementi." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." +#: ../../Zotlabs/Module/Webpages.php:382 +msgid "Import complete." +msgstr "Importazione completata." -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "Login sulla homepage" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Le voci del calendario sono state importate." -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Non sono state trovate voci del calendario." -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "Abilita la guida contestuale" +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Un evento non può terminare prima del suo inizio." -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Impossibile creare un'anteprima." -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "URL del directory server" +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Directory server predefinito" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Evento non trovato." -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Utente proxy" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" +msgstr "Modifica il titolo dell'evento" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "URL proxy" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" +msgstr "Titolo dell'evento" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Timeout rete" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" +msgstr "Modifica la categoria" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Recapito ritardato" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" +msgstr "Categoria" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" +msgstr "Modifica data/ora di inizio" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Tentativi di recapito per processo" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" +msgstr "Data e ora di inizio" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" +msgstr "La data e l'ora di fine non sono necessarie" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Intervallo di polling" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" +msgstr "Modifica data/ora di fine" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" +msgstr "Data e ora di fine" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Events.php:463 msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "0 per non avere scadenza" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Rendi non modificabile %s" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" +msgstr "Modifica la descrizione" -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" +msgstr "Modifica il luogo" -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Server non trovato" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" +msgstr "Condividi questo evento" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 +msgid "Permission settings" +msgstr "Permessi dei tuoi contatti" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "per il canale" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" +msgstr "Opzioni avanzate" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "sul server" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Server" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" +msgstr "Modifica l'evento" -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" +msgstr "Elimina l'evento" -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1716 +msgid "Link to Source" +msgstr "Link al sito d'origine" -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/https://vimeo.com/
    https://soundcloud.com/
    " -msgstr "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    " +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" +msgstr "calendario" -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Modifica l'evento" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1493 -msgid "Security" -msgstr "Sicurezza" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Crea un evento" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Esporta" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" +msgstr "Mese" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Imposta il \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Settimana" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Imposta il \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Giorno" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Permetti la comunicazione solo da questi siti" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Oggi" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Evento eliminato" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Blocca la comunicazione da questi siti" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Impossibile eliminare l'evento" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Permetti la comunicazione solo da questi canali" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Il tuo account permette di creare al massimo %d canali." -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Blocca la comunicazione da questi canali" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Nessun canale. Import fallito." -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'importazione è terminata con successo." -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importa un canale" -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Blocca i contenuti incorporati HTML da questi domini" +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio hub" -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio hub" -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "La password per il vecchio hub" -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Rendi questo hub il mio indirizzo primario" -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crea un canale" -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Statistiche della coda" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Totale" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "oppure importa un canale esistente da un altro server/hub." -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Priorità" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "URL di destinazione" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Questo hub è definitivamente offline" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Svuota la coda per questo hub" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[oggi]" -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Ultimo scambio dati" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "ha creato un evento" -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "Modificato il blocco su %s account" -msgstr[1] "Modificato il blocco verso %s" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account eliminato" -msgstr[1] "%s account eliminati" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Rifiuta" -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Account non trovato" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' eliminato" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" +msgstr "Poke" -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "Aggiunto un blocco verso '%s'" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Manda un poke" -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Rimosso il blocco verso '%s'" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Poke/Prod" -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1491 -msgid "Accounts" -msgstr "Account" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Manda un poke o altro a qualcuno" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "seleziona tutti" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "Registrazioni in attesa di conferma" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Data richiesta" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendi privato questo post" -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2208 -msgid "Email" -msgstr "Email" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Nessuna registrazione." +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Inviato!" -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Nega" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Tutti i canali" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Data registrazione" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Ultimo accesso" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Con scadenza" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visibile a" -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Classe dell'account" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" -#: ../../Zotlabs/Module/Admin.php:1054 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor di configurazione" -#: ../../Zotlabs/Module/Admin.php:1055 +#: ../../Zotlabs/Module/Pconfig.php:49 msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" - -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s canale permette/non permette codice nei contenuti" -msgstr[1] "%s canali permettono/non permettono codice nei contenuti" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Post e commenti" -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Canale non trovato" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Solo post" -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" +msgid "Version %s" +msgstr "Versione %s" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "App e componenti installati:" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Il canale '%s' permette codice nei contenuti" +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Nessuna app o componente installato" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Il canale '%s' non permette codice nei contenuti" +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1492 -msgid "Channels" -msgstr "Canali" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Tag: " -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Applica censura" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Ultima acquisizione:" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "Rimuovi censura" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Carico medio attuale:" -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Permetti codice" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "In esecuzione sull'indirizzo web" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "Non permettere codice" +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1631 -msgid "Channel" -msgstr "Canale" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Per segnalare bug e problemi: visita" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "Problematiche note su $projectname" -#: ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Siteinfo.php:63 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?" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Amministratori del sito" -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 +msgid "Blocks" +msgstr "Block" -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titolo del block" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Disattiva" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 +msgid "Layouts" +msgstr "Layout" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Attiva" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Guida di Comanche Page Description Language" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1495 -msgid "Plugins" -msgstr "Plugin" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Descrizione del layout" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Attiva/disattiva" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "Scarica il file PDL" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:212 -#: ../../include/widgets.php:647 -msgid "Settings" -msgstr "Impostazioni" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Nessuna valutazione" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Autore:" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valutazione:" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Gestore:" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sito web:" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Minima versione hubzilla" +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Massima versione hubzilla" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Minima versione PHP:" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permesso negato." -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Necessita di:" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 +msgid "Import" +msgstr "Importa" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Disabilitato - incompatibilità di versione" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Nessun canale." -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Inserisci lo URL del repository git dei plugin." +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Contatti in comune" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "URL git del repository del plugin" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Nessun contatto in comune." -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "Nome repository personalizzato" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "(facoltativo)" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "Scarica il repository del plugin" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "Installa un nuovo repository" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installa" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Messaggi" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "Gestisci i repository" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Messaggio revocato." -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "Repository per i plugin installati" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "Installa un nuovo repository per i plugin" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "Cambia branch" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Istantanea dello schermo" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1496 -msgid "Themes" -msgstr "Temi" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "A:" -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Sperimentale]" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Oggetto:" -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[Non supportato]" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1239 +msgid "Attach file" +msgstr "Allega file" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Invia" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1517 -#: ../../include/widgets.php:1527 -msgid "Logs" -msgstr "Log" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1284 +msgid "Set expiration date" +msgstr "Data di scadenza" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Pulisci" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 +#: ../../include/conversation.php:1289 +msgid "Encrypt text" +msgstr "Cifratura del messaggio" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Debugging" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "File di log" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Relativo alla directory base del server web. Deve essere scrivibile." +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Revoca il messaggio" -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Livello di log" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Nome breve del campo" +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Nome di sistema del campo" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Invia la risposta" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Tipo di dati" +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%s):" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Nome del campo" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Non è possibile accedere alle informazioni sul contatto." -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Etichetta da mostrare sulla pagina del profilo" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Testo di aiuto" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Contatto aggiornato." -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (facoltative)" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Impossibile aggiornare le informazioni del contatto." -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "ha come nuovo contatto" -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "Impossibile accedere alle informazioni della rubrica." -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1498 -msgid "Profile Fields" -msgstr "Campi del profilo" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Il canale non è disponibile - impossibile aggiornare." -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "Campi base del profilo" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "Impossibile impostare i parametri della rubrica." -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "Campi avanzati del profilo" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "Il contatto è stato rimosso." -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "(In aggiunta ai campi di base)" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/conversation.php:955 ../../include/nav.php:88 +msgid "View Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "Tutti i campi disponibili" +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "Guarda il profilo di %s" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "Campi personalizzati" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "Aggiungi campo personalizzato" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Guarda e modifica i permessi assegnati" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nome o titolo" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Leggi i post recenti e i commenti" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "Questa connessione è tra quelle bloccate!" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Tipo di canale e privacy" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Non ignorare" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "Questa connessione è tra quelle ignorate!" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crea un canale" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Non archiviare" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archivia" -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "" -"or import an existing channel from another location." -msgstr "oppure importa un canale esistente da un altro server/hub." +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "Questa connessione è tra quelle archiviate!" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "Non nascondere" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Nascondi" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[oggi]" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "Questa connessione è tra quelle nascoste!" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Elimina questo contatto" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Rifiuta" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 +msgid "Me" +msgstr "Me" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 +msgid "Family" +msgstr "Famiglia" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:964 -msgid "Poke" -msgstr "Poke" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 +msgid "Acquaintances" +msgstr "Conoscenti" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Manda un poke" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Entra in contatto per poter comunicare" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Manda un poke o altro a qualcuno" +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Scegli l'affinità" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Scegli il profilo da mostrare" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Affinità e profilo" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendi privato questo post" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "--" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:623 +msgid "Connection Default Permissions" +msgstr "Permessi predefiniti dei nuovi contatti" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Inviato!" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3964 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Applica automaticamente questi permessi" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Le richieste di entrare in contatto saranno approvate in automatico" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 -msgid "Profile" -msgstr "Profilo" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "Indirizzo primario di questo canale" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Indirizzi disponibili" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visibile a" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Gestione dei contatti" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor di configurazione" +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Trascina per restringere il grado di amicizia da mostrare" -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Trascina per cambiare la tua valutazione" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Non trovato" +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Commento facoltativo" -#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/features.php:57 ../../include/nav.php:110 -#: ../../include/conversation.php:1715 ../../include/conversation.php:1718 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Filtro personalizzato" -#: ../../Zotlabs/Module/Wiki.php:98 -msgid "Sandbox" -msgstr "Sandbox" +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Importa solo i post che contengono queste parole chiave" -#: ../../Zotlabs/Module/Wiki.php:100 +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\"" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" -#: ../../Zotlabs/Module/Wiki.php:169 -msgid "Revision Comparison" -msgstr "Confronto tra revisioni" +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "Non importare i post con queste parole chiave" -#: ../../Zotlabs/Module/Wiki.php:170 -msgid "Revert" -msgstr "Ripristina" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "Questa informazione è pubblica!" -#: ../../Zotlabs/Module/Wiki.php:201 -msgid "Enter the name of your new wiki:" -msgstr "Nome della tua nuova pagina wiki:" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Contatti in attesa di approvazione" -#: ../../Zotlabs/Module/Wiki.php:202 -msgid "Enter the name of the new page:" -msgstr "Nome della tua nuova pagina:" +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Enter the new name:" -msgstr "Nuovo nome:" +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1151 -msgid "Embed image from photo albums" -msgstr "Inserisci un'immagine dall'album foto" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1235 -msgid "Embed an image from your albums" -msgstr "Inserisci un'immagine dai tuoi album" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:167 +msgid "Apps" +msgstr "App" -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1237 -#: ../../include/conversation.php:1278 -msgid "OK" -msgstr "OK" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continua" -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1187 -msgid "Choose images to embed" -msgstr "Scegli le immagini da inserire" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Canale premium - configurazione" -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1188 -msgid "Choose an album" -msgstr "Scegli un album" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Abilita le restrizioni del canale premium" -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1189 -msgid "Choose a different album..." -msgstr "Scegli un altro album..." +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1190 -msgid "Error getting album list" -msgstr "Errore nell'ottenere l'elenco degli album" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1191 -msgid "Error getting photo link" -msgstr "Errore nell'ottenere il link alla foto" +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1192 -msgid "Error getting album" -msgstr "Errore nell'ottenere l'album" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versione %s" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti installati:" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canale premium - con restrizioni" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente installato" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Scegli una cartella di segnalibri" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Salva segnalibro" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL del segnalibro" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Ultima acquisizione:" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O inserisci il nome di una nuova cartella di segnalibri" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carico medio attuale:" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Autenticazione fallita." -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Accedi tramite il tuo hub" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Accedi" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problematiche note su $projectname" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Effettua l'accesso." -#: ../../Zotlabs/Module/Siteinfo.php:63 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Amministratori del sito" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 -msgid "Blocks" -msgstr "Block" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Elimina questo account" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titolo del block" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " +msgstr "ATTENZIONE:" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 -msgid "Layouts" -msgstr "Layout" +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Guida di Comanche Page Description Language" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" +msgstr "Questo comando è definitivo e non può essere annullato!" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Descrizione del layout" +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Scarica il file PDL" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1351 -msgid "Public Hubs" -msgstr "Hub pubblici" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete." -#: ../../Zotlabs/Module/Pubsites.php:25 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "URL del hub" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipo di accesso" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Questo canale sarà completamente eliminato dalla rete." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Politica di registrazione" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiche" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Esporta il canale" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:963 -msgid "Ratings" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Uexport.php:57 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Valuta" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Esporta i contenuti" -#: ../../Zotlabs/Module/Profile_photo.php:186 +#: ../../Zotlabs/Module/Uexport.php:59 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Esporta i tuoi post a partire dall'anno scelto." -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 -msgid "Import" -msgstr "Importa" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Nessun canale." +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contatti in comune" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Nessun contatto in comune." +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:138 +msgid "Edit post" +msgstr "Modifica post" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Risultati ricerca: %s" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Non esistono restrizioni su questa classe di account." -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "L'oggetto è stato aggiornato" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Impossibile memorizzare l'oggetto." -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Su questo hub la registrazione non è permessa." +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "L'Oggetto è stato aggiunto" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "La registrazione su questo hub è soggetta ad approvazione." +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrati su un altro server hubzilla." +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostra l'oggetto" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "non trovato." -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Modifica l'oggetto" -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" +msgstr "Scegli un profilo" -#: ../../Zotlabs/Module/Register.php:223 -#, 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" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" +msgstr "Pubblica un'attività" -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Il tuo indirizzo email" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" +msgstr "Invia solo a chi può vedere il profilo scelto" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Scegli una password" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" +msgstr "Nome dell'oggetto" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" +msgstr "Indirizzo web dell'oggetto (facoltativo)" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" +msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" +msgstr "Aggiungi l'oggetto al tuo profilo" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "sì" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../Zotlabs/Module/Register.php:253 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo hub è necessario un invito." +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." -#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 -#: ../../boot.php:1695 -msgid "Register" -msgstr "Registrati" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../Zotlabs/Module/Register.php:266 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se ti sarà mostrata la pagina di login, segui le istruzioni sull'email per continuare." +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "I post duplicati sono scartati." -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Nessuna valutazione" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valutazione:" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Sito web:" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:167 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "App" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "File: condivisi con me" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NOVITÀ" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Elimina tutti i file" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Elimina questo file" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Non trovato" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "Nome link" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/conversation.php:1728 ../../include/conversation.php:1731 +#: ../../include/features.php:57 ../../include/nav.php:110 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "Azione del link o del sottomenu" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Sandbox" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\"" -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Confronto tra revisioni" -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Ripristina" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "Ordine dell'elenco" +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Nome della tua nuova pagina wiki:" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Nome della tua nuova pagina:" -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" -msgstr "Salva e termina" +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Nuovo nome:" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "Salva e continua" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" +msgstr "Inserisci un'immagine dall'album foto" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "Menu:" +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 +msgid "Embed an image from your albums" +msgstr "Inserisci un'immagine dai tuoi album" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "Destinazione link" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 +#: ../../include/conversation.php:1291 +msgid "OK" +msgstr "OK" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "Modifica il menù" +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" +msgstr "Scegli le immagini da inserire" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "Modifica l'elemento" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" +msgstr "Scegli un album" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "Elimina l'elemento" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." +msgstr "Scegli un altro album..." -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "Nuovo elemento" +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" +msgstr "Errore nell'ottenere l'elenco degli album" -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" +msgstr "Errore nell'ottenere il link alla foto" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" +msgstr "Errore nell'ottenere l'album" -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Impossibile creare la sorgente. Nessun canale selezionato." -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Sorgente creata." -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Sorgente aggiornata." -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:639 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Sorgenti del canale" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gestisci le sorgenti dei contenuti del tuo canale." -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "Testo del link" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nuova sorgente" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continua" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Canale premium - configurazione" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Lascia vuoto per importare tutti i contenuti pubblici" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nome del canale" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 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:" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Sorgente non trovata." -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Modifica la sorgente" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Elimina la sorgente" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Sorgente eliminata" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Scegli una cartella di segnalibri" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Impossibile rimuovere la sorgente." -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Salva segnalibro" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL del segnalibro" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s non segue più %3$s di %2$s" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O inserisci il nome di una nuova cartella di segnalibri" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Impossibile trovare il gruppo di canali" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Canale sconosciuto" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "il post" -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "il commento" -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Cerca risultati con:" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: ../../Zotlabs/Module/Network.php:216 -msgid "Privacy group is empty" -msgstr "Il gruppo di canali è vuoto" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag rimosso" -#: ../../Zotlabs/Module/Network.php:225 -msgid "Privacy group: " -msgstr "Gruppo di canali:" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: ../../Zotlabs/Module/Network.php:251 -msgid "Invalid connection." -msgstr "Contatto non valido." +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Effettua l'accesso." +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canale aggiunto." -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Nessun contatto." -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Elimina questo account" +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "ATTENZIONE:" +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" +msgstr "Elenco contatti" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Sorgente" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "Questo comando è definitivo e non può essere annullato!" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chat non trovata" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Lascia la chat" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Elimina questa chat" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete." +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Non sono presente" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Sono online" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Aggiungi questa chat ai segnalibri" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Questo canale sarà completamente eliminato dalla rete." +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Nuova chat" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Nome chat" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Esporta il canale" +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Scadenza dei messaggi della chat (minuti)" -#: ../../Zotlabs/Module/Uexport.php:57 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Esporta i contenuti" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "Nessuna chat disponibile" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Scadenza" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Esporta i tuoi post a partire dall'anno scelto." +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Ricerca canale" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Cerca un canale (o un webbie) che inizia per:" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "Chat senza nome" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Il nome della chat è duplicato" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "L'oggetto è stato aggiornato" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Il nome della chat non è valido." -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Impossibile memorizzare l'oggetto." +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Chat non trovata." -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "L'Oggetto è stato aggiunto" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "La chat è al completo" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 +msgid "$Projectname Notification" +msgstr "Notifica $Projectname" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostra l'oggetto" +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 +msgid "$projectname" +msgstr "$projectname" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "non trovato." +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 +msgid "Thank You," +msgstr "Grazie," -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Modifica l'oggetto" +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 +#, php-format +msgid "%s Administrator" +msgstr "L'amministratore di %s" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" -msgstr "Scegli un profilo" +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" -msgstr "Pubblica un'attività" +#: ../../Zotlabs/Lib/Enotify.php:104 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla] Nuovo messaggio su %s" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Only sends to viewers of the applicable profile" -msgstr "Invia solo a chi può vedere il profilo scelto" +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" -msgstr "Nome dell'oggetto" +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha mandato %2$s." -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" -msgstr "Indirizzo web dell'oggetto (facoltativo)" +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "un messaggio privato" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 -msgid "URL for photo of thing (optional)" -msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" +#: ../../Zotlabs/Lib/Enotify.php:108 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" -msgstr "Aggiungi l'oggetto al tuo profilo" +#: ../../Zotlabs/Lib/Enotify.php:164 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" -#: ../../Zotlabs/Module/Search.php:216 +#: ../../Zotlabs/Lib/Enotify.php:172 #, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" -#: ../../Zotlabs/Module/Search.php:218 +#: ../../Zotlabs/Lib/Enotify.php:181 #, php-format -msgid "Search results for: %s" -msgstr "Risultati ricerca: %s" +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Non esistono restrizioni su questa classe di account." +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla] Nuovo commento di %2$s alla conversazione #%1$d" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Sito web:" +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." + +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per leggere o commentare la conversazione." -#: ../../Zotlabs/Module/Rate.php:163 +#: ../../Zotlabs/Lib/Enotify.php:202 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla] %s ha scritto sulla tua bacheca" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" +#: ../../Zotlabs/Lib/Enotify.php:204 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" +#: ../../Zotlabs/Lib/Enotify.php:206 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Autenticazione fallita." +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla] %s ti ha taggato" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" -msgstr "Accedi tramite il tuo hub" +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s ti ha taggato su %3$s" -#: ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" -msgstr "Accedi" +#: ../../Zotlabs/Lib/Enotify.php:244 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla] %1$s ti ha mandato un poke" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "File: condivisi con me" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NOVITÀ" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Elimina tutti i file" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla] %s ha taggato il tuo post" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Elimina questo file" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canale aggiunto." +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla] Hai una richiesta di amicizia" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Sorgente creata." +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Sorgente aggiornata." +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo su %s" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:74 -#: ../../include/widgets.php:639 -msgid "Channel Sources" -msgstr "Sorgenti del canale" +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla] Ti è stato suggerito un amico" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nuova sorgente" +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format 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." +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Nome:" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Lascia vuoto per importare tutti i contenuti pubblici" +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Foto:" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nome del canale" +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla]" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Sorgente non trovata." +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "Ha creato un nuovo post" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Modifica la sorgente" +#: ../../Zotlabs/Lib/Enotify.php:668 +#, php-format +msgid "commented on %s's post" +msgstr "ha commentato il post di %s" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Elimina la sorgente" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Amministrazione sito" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Sorgente eliminata" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Bug Report" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Vedi i segnalibri" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Le mie aree chat" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s non segue più %3$s di %2$s" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Firefox Share" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Diagnostica remota" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Suggerisci canali" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "il post" +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 +#: ../../boot.php:1738 +msgid "Login" +msgstr "Accedi" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "il commento" +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 +msgid "Grid" +msgstr "Rete" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 +msgid "Channel Home" +msgstr "Bacheca del canale" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag rimosso" +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1682 +#: ../../include/conversation.php:1685 ../../include/nav.php:205 +msgid "Events" +msgstr "Eventi" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 +msgid "Directory" +msgstr "Elenchi pubblici dei canali" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 +msgid "Mail" +msgstr "Messaggi" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 +msgid "Chat" +msgstr "Chat" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Diagnostica" -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Suggerisci" -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" -msgstr "Ritorna alla tua app e inserisci questo Security Code:" +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Canale casuale" -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Invita" -#: ../../Zotlabs/Module/Api.php:83 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 +msgid "Features" +msgstr "Funzionalità" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Il tuo account permette di creare al massimo %d canali." +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Lingua" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Post" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Nessun canale. Import fallito." +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Foto del profilo" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'importazione è terminata con successo." +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Acquista" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:124 +msgid "Visible to your default audience" +msgstr "Visibile secondo le impostazioni predefinite" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canale" +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:165 +msgid "Only me" +msgstr "Solo io" -#: ../../Zotlabs/Module/Import.php:548 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Pubblico" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio hub" +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Tutti sulla rete $Projectname" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Tutti gli account su %s" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio hub" +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Chiunque tra i miei contatti" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La password per il vecchio hub" +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../Zotlabs/Module/Import.php:554 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Rendi questo hub il mio indirizzo primario" +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Tutti i contatti inclusi quelli non ancora approvati" -#: ../../Zotlabs/Module/Import.php:556 +#: ../../Zotlabs/Lib/PermissionDescription.php:152 msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca" -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Lib/PermissionDescription.php:153 msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." +"This is your default setting for who can view your default channel profile" +msgstr "Impostazione predefinita di chi può vedere il profilo standard del tuo canale" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Nessun contatto." +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Impostazione predefinita di chi può vedere i tuoi contatti/amici" -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Impostazione predefinita di chi può vedere le foto e il tuo archivio file" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Elenco contatti" +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Impostazione predefinita di chi può vedere le tue pagine web" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Sorgente" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" +msgstr "Messaggio privato" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Ricerca canale" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +msgid "Select" +msgstr "Scegli" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca un canale (o un webbie) che inizia per:" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Salva nella cartella" -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Chat senza nome" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Parteciperò" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Il nome della chat è duplicato" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "Non parteciperò" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Il nome della chat non è valido." +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Forse parteciperò" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Chat non trovata." +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Sono d'accordo" -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "La chat è al completo" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "Non sono d'accordo" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 -msgid "$Projectname Notification" -msgstr "Notifica $Projectname" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Mi astengo" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Aggiungi ai preferiti" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 -msgid "Thank You," -msgstr "Grazie," +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Rimuovi dai preferiti" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 -#, php-format -msgid "%s Administrator" -msgstr "L'amministratore di %s" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "Attiva/disattiva preferito" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "preferito" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla] Nuovo messaggio su %s" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +msgid "Message signature validated" +msgstr "Messaggio con firma verificata" -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +msgid "Message signature incorrect" +msgstr "Massaggio con firma non corretta" -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha mandato %2$s." +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Aggiungi un tag" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "un messaggio privato" +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 +msgid "like" +msgstr "mi piace" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." +#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "non mi piace" -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "Share This" +msgstr "Condividi" -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "share" +msgstr "condividi" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:276 +msgid "Delivery Report" +msgstr "Rapporto di trasmissione" -#: ../../Zotlabs/Lib/Enotify.php:192 +#: ../../Zotlabs/Lib/ThreadItem.php:294 #, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla] Nuovo commento di %2$s alla conversazione #%1$d" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" -#: ../../Zotlabs/Lib/Enotify.php:193 +#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 #, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." +msgid "View %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per leggere o commentare la conversazione." +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "to" +msgstr "a" -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla] %s ha scritto sulla tua bacheca" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "via" +msgstr "via" -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:330 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca:" -#: ../../Zotlabs/Lib/Enotify.php:230 +#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 #, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla] %s ti ha taggato" +msgid "from %s" +msgstr "da %s" -#: ../../Zotlabs/Lib/Enotify.php:231 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 #, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s ti ha taggato su %3$s" +msgid "last edited: %s" +msgstr "ultima modifica: %s" -#: ../../Zotlabs/Lib/Enotify.php:232 +#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 #, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." +msgid "Expires: %s" +msgstr "Scadenza: %s" -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla] %1$s ti ha mandato un poke" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Save Bookmarks" +msgstr "Salva segnalibro" -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:372 +msgid "Add to Calendar" +msgstr "Aggiungi al calendario" -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." +#: ../../Zotlabs/Lib/ThreadItem.php:381 +msgid "Mark all seen" +msgstr "Marca tutto come letto" -#: ../../Zotlabs/Lib/Enotify.php:262 +#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 #, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla] %s ha taggato il tuo post" +msgid "%s show all" +msgstr "%s mostra tutto" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1234 +msgid "Bold" +msgstr "Grassetto" -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1235 +msgid "Italic" +msgstr "Corsivo" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla] Hai una richiesta di amicizia" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1236 +msgid "Underline" +msgstr "Sottolineato" -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1237 +msgid "Quote" +msgstr "Citazione" -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1238 +msgid "Code" +msgstr "Codice" -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo su %s" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Image" +msgstr "Immagine" -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Insert Link" +msgstr "Collegamento" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla] Ti è stato suggerito un amico" +#: ../../Zotlabs/Lib/ThreadItem.php:719 +msgid "Video" +msgstr "Video" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Impossibile trovare il nome utente nel file da importare." -#: ../../Zotlabs/Lib/Enotify.php:293 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." + +#: ../../include/dba/dba_driver.php:173 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Nome:" +#: ../../include/network.php:704 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Foto:" +#: ../../include/network.php:1935 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "Amministratore" -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." +#: ../../include/network.php:1949 +msgid "No Subject" +msgstr "Nessun titolo" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla]" +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" +msgstr "Friendica" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "Ha creato un nuovo post" +#: ../../include/network.php:2205 +msgid "OStatus" +msgstr "OStatus" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "ha commentato il post di %s" +#: ../../include/network.php:2206 +msgid "GNU-Social" +msgstr "GNU-Social" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Amministrazione sito" +#: ../../include/network.php:2207 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Bug Report" +#: ../../include/network.php:2209 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Vedi i segnalibri" +#: ../../include/network.php:2210 +msgid "Facebook" +msgstr "Facebook" -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Le mie aree chat" +#: ../../include/network.php:2211 +msgid "Zot" +msgstr "Zot" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Firefox Share" +#: ../../include/network.php:2212 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnostica remota" +#: ../../include/network.php:2213 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:92 -msgid "Suggest Channels" -msgstr "Suggerisci canali" +#: ../../include/network.php:2214 +msgid "MySpace" +msgstr "MySpace" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 -#: ../../boot.php:1713 -msgid "Login" -msgstr "Accedi" +#: ../../include/oembed.php:340 +msgid "Embedded content" +msgstr "Contenuti incorporati" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 -msgid "Grid" -msgstr "Rete" +#: ../../include/oembed.php:349 +msgid "Embedding disabled" +msgstr "Disabilita la creazione di contenuti incorporati" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 -msgid "Channel Home" -msgstr "Bacheca del canale" +#: ../../include/permissions.php:29 +msgid "Can view my normal stream and posts" +msgstr "Può vedere i miei contenuti e i post normali" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:205 -#: ../../include/conversation.php:1669 ../../include/conversation.php:1672 -msgid "Events" -msgstr "Eventi" +#: ../../include/permissions.php:33 +msgid "Can view my webpages" +msgstr "Può vedere le mie pagine web" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 -msgid "Directory" -msgstr "Elenchi pubblici dei canali" +#: ../../include/permissions.php:37 +msgid "Can post on my channel page (\"wall\")" +msgstr "Può scrivere sulla bacheca del mio canale" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 -msgid "Mail" -msgstr "Messaggi" +#: ../../include/permissions.php:40 +msgid "Can like/dislike stuff" +msgstr "Può aggiungere \"mi piace\" a tutto il resto" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 -msgid "Chat" -msgstr "Chat" +#: ../../include/permissions.php:40 +msgid "Profiles and things other than posts/comments" +msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo" -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Diagnostica" +#: ../../include/permissions.php:42 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Suggerisci" +#: ../../include/permissions.php:42 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canale casuale" +#: ../../include/permissions.php:43 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invita" +#: ../../include/permissions.php:44 +msgid "Can write to my file storage and photos" +msgstr "Può modificare il mio archivio file e foto" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 -msgid "Features" -msgstr "Funzionalità" +#: ../../include/permissions.php:45 +msgid "Can edit my webpages" +msgstr "Può modificare le mie pagine web" -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Lingua" +#: ../../include/permissions.php:47 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Post" +#: ../../include/permissions.php:49 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" -#: ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Foto del profilo" +#: ../../include/permissions.php:49 +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" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Acquista" +#: ../../include/items.php:899 ../../include/items.php:944 +msgid "(Unknown)" +msgstr "(Sconosciuto)" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Visibile secondo le impostazioni predefinite" +#: ../../include/items.php:1143 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Solo io" +#: ../../include/items.php:1145 +msgid "Visible to you only." +msgstr "Visibile solo a te." -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Pubblico" +#: ../../include/items.php:1147 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Tutti sulla rete $Projectname" +#: ../../include/items.php:1149 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../include/items.php:1151 #, php-format -msgid "Any account on %s" -msgstr "Tutti gli account su %s" +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Chiunque tra i miei contatti" +#: ../../include/items.php:1153 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Solo chi riceve il mio permesso" +#: ../../include/items.php:1155 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)" +#: ../../include/items.php:1157 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Tutti i contatti inclusi quelli non ancora approvati" +#: ../../include/items.php:3947 +msgid "Privacy group is empty." +msgstr "Gruppo di canali vuoto." -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca" +#: ../../include/items.php:3954 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppo di canali: %s" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Impostazione predefinita di chi può vedere il profilo standard del tuo canale" +#: ../../include/items.php:3966 +msgid "Connection not found." +msgstr "Contatto non trovato." -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Impostazione predefinita di chi può vedere i tuoi contatti/amici" +#: ../../include/items.php:4319 +msgid "profile photo" +msgstr "foto del profilo" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Impostazione predefinita di chi può vedere le foto e il tuo archivio file" +#: ../../include/text.php:404 +msgid "prev" +msgstr "prec" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Impostazione predefinita di chi può vedere le tue pagine web" +#: ../../include/text.php:406 +msgid "first" +msgstr "inizio" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Messaggio privato" +#: ../../include/text.php:435 +msgid "last" +msgstr "fine" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Scegli" +#: ../../include/text.php:438 +msgid "next" +msgstr "succ" -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Salva nella cartella" +#: ../../include/text.php:448 +msgid "older" +msgstr "più recenti" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Parteciperò" +#: ../../include/text.php:450 +msgid "newer" +msgstr "più nuovi" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Non parteciperò" +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Nessun contatto" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Forse parteciperò" +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" +msgstr "Mostra tutti i %s contatti" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Sono d'accordo" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "poke" + +#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha mandato un poke" + +#: ../../include/text.php:1019 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "ha effettuato un ping" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Non sono d'accordo" +#: ../../include/text.php:1020 +msgid "prod" +msgstr "spintone" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Mi astengo" +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "ha ricevuto uno spintone" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Aggiungi ai preferiti" +#: ../../include/text.php:1021 +msgid "slap" +msgstr "schiaffo" -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Rimuovi dai preferiti" +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Attiva/disattiva preferito" +#: ../../include/text.php:1022 +msgid "finger" +msgstr "finger" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "preferito" +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "ha ricevuto un finger" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Messaggio con firma verificata" +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "rifiuto" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Massaggio con firma non corretta" +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Aggiungi un tag" +#: ../../include/text.php:1035 +msgid "happy" +msgstr "felice" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 -msgid "like" -msgstr "mi piace" +#: ../../include/text.php:1036 +msgid "sad" +msgstr "triste" -#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "non mi piace" +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "calmo" -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "Share This" -msgstr "Condividi" +#: ../../include/text.php:1038 +msgid "tired" +msgstr "stanco" -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "share" -msgstr "condividi" +#: ../../include/text.php:1039 +msgid "perky" +msgstr "vivace" -#: ../../Zotlabs/Lib/ThreadItem.php:276 -msgid "Delivery Report" -msgstr "Rapporto di trasmissione" +#: ../../include/text.php:1040 +msgid "angry" +msgstr "arrabbiato" -#: ../../Zotlabs/Lib/ThreadItem.php:294 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "stupito" -#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 -#, php-format -msgid "View %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "confuso" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "to" -msgstr "a" +#: ../../include/text.php:1043 +msgid "interested" +msgstr "attento" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "via" -msgstr "via" +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "amaro" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "allegro" -#: ../../Zotlabs/Lib/ThreadItem.php:330 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca:" +#: ../../include/text.php:1046 +msgid "alive" +msgstr "vivace" -#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "da %s" +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "seccato" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "ansioso" -#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "irritabile" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Save Bookmarks" -msgstr "Salva segnalibro" +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "turbato" -#: ../../Zotlabs/Lib/ThreadItem.php:372 -msgid "Add to Calendar" -msgstr "Aggiungi al calendario" +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustrato" -#: ../../Zotlabs/Lib/ThreadItem.php:381 -msgid "Mark all seen" -msgstr "Marca tutto come letto" +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "in depressione" -#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostra tutto" +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motivato" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Bold" -msgstr "Grassetto" +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "rilassato" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Italic" -msgstr "Corsivo" +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "sorpreso" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Underline" -msgstr "Sottolineato" +#: ../../include/text.php:1239 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunedì" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Quote" -msgstr "Citazione" +#: ../../include/text.php:1239 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martedì" -#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1231 -msgid "Code" -msgstr "Codice" +#: ../../include/text.php:1239 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "mercoledì" -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Image" -msgstr "Immagine" +#: ../../include/text.php:1239 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "giovedì" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Insert Link" -msgstr "Collegamento" +#: ../../include/text.php:1239 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "venerdì" -#: ../../Zotlabs/Lib/ThreadItem.php:719 -msgid "Video" -msgstr "Video" +#: ../../include/text.php:1239 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sabato" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Impossibile trovare il nome utente nel file da importare." +#: ../../include/text.php:1239 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domenica" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." +#: ../../include/text.php:1243 ../../include/js_strings.php:45 +msgid "January" +msgstr "gennaio" -#: ../../include/dba/dba_driver.php:171 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +#: ../../include/text.php:1243 ../../include/js_strings.php:46 +msgid "February" +msgstr "febbraio" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Sconosciuto)" +#: ../../include/text.php:1243 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." +#: ../../include/text.php:1243 ../../include/js_strings.php:48 +msgid "April" +msgstr "aprile" -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visibile solo a te." +#: ../../include/text.php:1243 +msgid "May" +msgstr "Mag" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." +#: ../../include/text.php:1243 ../../include/js_strings.php:50 +msgid "June" +msgstr "giugno" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." +#: ../../include/text.php:1243 ../../include/js_strings.php:51 +msgid "July" +msgstr "luglio" -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti su %s." +#: ../../include/text.php:1243 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." +#: ../../include/text.php:1243 ../../include/js_strings.php:53 +msgid "September" +msgstr "settembre" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." +#: ../../include/text.php:1243 ../../include/js_strings.php:54 +msgid "October" +msgstr "ottobre" -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." +#: ../../include/text.php:1243 ../../include/js_strings.php:55 +msgid "November" +msgstr "novembre" -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Gruppo di canali vuoto." +#: ../../include/text.php:1243 ../../include/js_strings.php:56 +msgid "December" +msgstr "dicembre" -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppo di canali: %s" +#: ../../include/text.php:1320 ../../include/text.php:1324 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Contatto non trovato." +#: ../../include/text.php:1326 +msgid "unknown" +msgstr "sconosciuta" -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "foto del profilo" +#: ../../include/text.php:1362 +msgid "remove category" +msgstr "rimuovi la categoria" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." +#: ../../include/text.php:1439 +msgid "remove from file" +msgstr "rimuovi dal file" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." +#: ../../include/text.php:1738 ../../include/text.php:1809 +msgid "default" +msgstr "predefinito" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" +#: ../../include/text.php:1746 +msgid "Page layout" +msgstr "Layout della pagina" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../include/text.php:1746 +msgid "You can create your own with the layouts tool" +msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." +#: ../../include/text.php:1788 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nuova foto" +#: ../../include/text.php:1821 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha pubblicato %2$s su %3$s" +#: ../../include/text.php:1958 +msgid "activity" +msgstr "l'attività" -#: ../../include/photos.php:506 ../../include/conversation.php:1655 -msgid "Photo Albums" -msgstr "Album foto" +#: ../../include/text.php:2259 +msgid "Design Tools" +msgstr "Strumenti di design" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Carica nuove foto" +#: ../../include/text.php:2265 +msgid "Pages" +msgstr "Pagine" -#: ../../include/features.php:50 -msgid "General Features" -msgstr "Funzionalità di base" +#: ../../include/text.php:2287 +msgid "Import website..." +msgstr "Importazione sito web..." -#: ../../include/features.php:52 -msgid "Content Expiration" -msgstr "Scadenza" +#: ../../include/text.php:2288 +msgid "Select folder to import" +msgstr "Scegli la cartella da importare" -#: ../../include/features.php:52 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" +#: ../../include/text.php:2289 +msgid "Import from a zipped folder:" +msgstr "Importa da un file zip:" -#: ../../include/features.php:53 -msgid "Multiple Profiles" -msgstr "Profili multipli" +#: ../../include/text.php:2290 +msgid "Import from cloud files:" +msgstr "Importa i file da un cloud:" -#: ../../include/features.php:53 -msgid "Ability to create multiple profiles" -msgstr "Abilitazione a creare profili multipli" +#: ../../include/text.php:2291 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/percorso/alla/cartella" -#: ../../include/features.php:54 -msgid "Advanced Profiles" -msgstr "Profili avanzati" +#: ../../include/text.php:2292 +msgid "Enter path to website files" +msgstr "Inserisci la posizione dei file del sito web" -#: ../../include/features.php:54 -msgid "Additional profile sections and selections" -msgstr "Informazioni aggiuntive del profilo" +#: ../../include/text.php:2293 +msgid "Select folder" +msgstr "Scegli la cartella" -#: ../../include/features.php:55 -msgid "Profile Import/Export" -msgstr "Importa/esporta il profilo" +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "Categorie" -#: ../../include/features.php:55 -msgid "Save and load profile details across sites/channels" -msgstr "Salva o ripristina le informazioni del profilo su siti diversi" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" -#: ../../include/features.php:56 -msgid "Web Pages" -msgstr "Pagine web" +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nuova app" -#: ../../include/features.php:56 -msgid "Provide managed web pages on your channel" -msgstr "Attiva la creazione di pagine web sul tuo canale" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggerimenti" -#: ../../include/features.php:57 -msgid "Provide a wiki for your channel" -msgstr "Fornisce una wiki per il tuo canale" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Altro..." -#: ../../include/features.php:58 -msgid "Hide Rating" -msgstr "Nascondi le valutazioni" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." -#: ../../include/features.php:58 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove." +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" -#: ../../include/features.php:59 -msgid "Private Notes" -msgstr "Note private" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Indirizzo del canale" -#: ../../include/features.php:59 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Per esempio: bob@example.com, https://example.com/barbara" -#: ../../include/features.php:60 -msgid "Navigation Channel Select" -msgstr "Scegli il canale attivo dal menu" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Note" -#: ../../include/features.php:60 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Scegli il canale attivo direttamente dal menu di navigazione" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Rimuovi termine" -#: ../../include/features.php:61 -msgid "Photo Location" -msgstr "Posizione geografica" +#: ../../include/widgets.php:281 ../../include/features.php:85 +msgid "Saved Searches" +msgstr "Ricerche salvate" -#: ../../include/features.php:61 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "aggiungi" -#: ../../include/features.php:62 -msgid "Access Controlled Chatrooms" -msgstr "Chat ad accesso riservato" +#: ../../include/widgets.php:310 ../../include/features.php:99 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Cartelle salvate" -#: ../../include/features.php:62 -msgid "Provide chatrooms and chat services with access control." -msgstr "Il servizio di chat con accesso riservato" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tutto" -#: ../../include/features.php:63 -msgid "Smart Birthdays" -msgstr "Compleanni intelligenti" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archivi" -#: ../../include/features.php:63 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Aggiorna" -#: ../../include/features.php:64 -msgid "Expert Mode" -msgstr "Modalità esperto" +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Il tuo account" -#: ../../include/features.php:64 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Impostazioni del canale" -#: ../../include/features.php:65 -msgid "Premium Channel" -msgstr "Canale premium" +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Funzionalità opzionali" -#: ../../include/features.php:65 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Componenti aggiuntivi" -#: ../../include/features.php:70 -msgid "Post Composition Features" -msgstr "Modalità di scrittura post" +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Aspetto" -#: ../../include/features.php:73 -msgid "Large Photos" -msgstr "Foto grandi" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestione repliche" -#: ../../include/features.php:73 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Esporta il canale" -#: ../../include/features.php:74 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "App connesse" -#: ../../include/features.php:75 -msgid "Even More Encryption" -msgstr "Cifratura addizionale" +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" -#: ../../include/features.php:75 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "Menu messaggi privati" -#: ../../include/features.php:76 -msgid "Enable Voting Tools" -msgstr "Permetti i post con votazione" +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "Vista combinata" -#: ../../include/features.php:76 -msgid "Provide a class of post which others can vote on" -msgstr "Rende possibile la creazione di post in cui sarà possibile votare" +#: ../../include/widgets.php:667 ../../include/nav.php:200 +msgid "Inbox" +msgstr "In arrivo" -#: ../../include/features.php:77 -msgid "Delayed Posting" -msgstr "Pubblicazione ritardata" +#: ../../include/widgets.php:672 ../../include/nav.php:201 +msgid "Outbox" +msgstr "Inviati" -#: ../../include/features.php:77 -msgid "Allow posts to be published at a later date" -msgstr "Per scegliere una data e un'ora a cui far uscire i post" +#: ../../include/widgets.php:677 ../../include/nav.php:202 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../include/features.php:78 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Impedisci post e commenti duplicati" +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "Conversazioni" -#: ../../include/features.php:78 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "Ricevuti" -#: ../../include/features.php:84 -msgid "Network and Stream Filtering" -msgstr "Filtraggio dei contenuti" +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "Inviati" -#: ../../include/features.php:85 -msgid "Search by Date" -msgstr "Ricerca per data" +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../include/features.php:85 -msgid "Ability to select posts by date ranges" -msgstr "Per selezionare i post in un intervallo tra date" +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "Elimina la conversazione" -#: ../../include/features.php:86 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Gruppi di canali" +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "Gestione eventi" -#: ../../include/features.php:86 -msgid "Enable management and selection of privacy groups" -msgstr "Abilita i gruppi di canali" +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "Esporta calendario" -#: ../../include/features.php:87 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Ricerche salvate" +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "Importa calendario" -#: ../../include/features.php:87 -msgid "Save search terms for re-use" -msgstr "Salva i termini delle ricerche per poterle ripetere" +#: ../../include/widgets.php:850 ../../include/conversation.php:1695 +#: ../../include/conversation.php:1698 +msgid "Chatrooms" +msgstr "Chat" -#: ../../include/features.php:88 -msgid "Network Personal Tab" -msgstr "Attività personale" +#: ../../include/widgets.php:854 +msgid "Overview" +msgstr "Riepilogo" -#: ../../include/features.php:88 -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/widgets.php:861 +msgid "Chat Members" +msgstr "Partecipanti" -#: ../../include/features.php:89 -msgid "Network New Tab" -msgstr "Contenuti nuovi" +#: ../../include/widgets.php:883 +msgid "Wiki List" +msgstr "Elenco wiki" -#: ../../include/features.php:89 -msgid "Enable tab to display all new Network activity" -msgstr "Abilita il link per visualizzare solo i nuovi contenuti" +#: ../../include/widgets.php:921 +msgid "Wiki Pages" +msgstr "Pagine wiki" -#: ../../include/features.php:90 -msgid "Affinity Tool" -msgstr "Filtro per affinità" +#: ../../include/widgets.php:956 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" -#: ../../include/features.php:90 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" +#: ../../include/widgets.php:979 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" -#: ../../include/features.php:91 -msgid "Connection Filtering" -msgstr "Filtro sui contatti" +#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 +msgid "photo/image" +msgstr "foto/immagine" -#: ../../include/features.php:91 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra i post che ricevi con parole chiave" +#: ../../include/widgets.php:1180 +msgid "Click to show more" +msgstr "Clicca per mostrare tutto" -#: ../../include/features.php:92 -msgid "Show channel suggestions" -msgstr "Mostra alcuni canali che potrebbero interessarti" +#: ../../include/widgets.php:1331 +msgid "Rating Tools" +msgstr "Valutazione" -#: ../../include/features.php:97 -msgid "Post/Comment Tools" -msgstr "Gestione post e commenti" +#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 +msgid "Rate Me" +msgstr "Valutami" -#: ../../include/features.php:98 -msgid "Community Tagging" -msgstr "Tag della comunità" +#: ../../include/widgets.php:1340 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" -#: ../../include/features.php:98 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su post già esistenti" +#: ../../include/widgets.php:1424 +msgid "Forums" +msgstr "Forum" -#: ../../include/features.php:99 -msgid "Post Categories" -msgstr "Categorie dei post" +#: ../../include/widgets.php:1453 +msgid "Tasks" +msgstr "Attività" -#: ../../include/features.php:99 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi post" +#: ../../include/widgets.php:1462 +msgid "Documentation" +msgstr "Guida" -#: ../../include/features.php:100 -msgid "Emoji Reactions" -msgstr "Reazioni emoji" +#: ../../include/widgets.php:1464 +msgid "Project/Site Information" +msgstr "Informazioni sul sito/progetto" -#: ../../include/features.php:100 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti le reazioni emoji ai post" +#: ../../include/widgets.php:1465 +msgid "For Members" +msgstr "Per gli utenti" -#: ../../include/features.php:101 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Cartelle salvate" +#: ../../include/widgets.php:1466 +msgid "For Administrators" +msgstr "Per gli amministratori" -#: ../../include/features.php:101 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" +#: ../../include/widgets.php:1467 +msgid "For Developers" +msgstr "Per sviluppatori" -#: ../../include/features.php:102 -msgid "Dislike Posts" -msgstr "Non mi piace" +#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 +msgid "Member registrations waiting for confirmation" +msgstr "Richieste in attesa di conferma" -#: ../../include/features.php:102 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" +#: ../../include/widgets.php:1497 +msgid "Inspect queue" +msgstr "Coda di attesa" -#: ../../include/features.php:103 -msgid "Star Posts" -msgstr "Post con stella" +#: ../../include/widgets.php:1499 +msgid "DB updates" +msgstr "Aggiornamenti al DB" -#: ../../include/features.php:103 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per segnare i post preferiti" +#: ../../include/widgets.php:1524 ../../include/nav.php:220 +msgid "Admin" +msgstr "Amministrazione" -#: ../../include/features.php:104 -msgid "Tag Cloud" -msgstr "Nuvola di tag" +#: ../../include/widgets.php:1525 +msgid "Plugin Features" +msgstr "Plugin" -#: ../../include/features.php:104 -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/connections.php:95 +msgid "New window" +msgstr "Nuova finestra" -#: ../../include/api.php:1337 -msgid "Public Timeline" -msgstr "Diario pubblico" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" + +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' eliminato" -#: ../../include/acl_selectors.php:269 +#: ../../include/acl_selectors.php:169 msgid "Who can see this?" msgstr "Chi può vederlo?" -#: ../../include/acl_selectors.php:270 +#: ../../include/acl_selectors.php:170 msgid "Custom selection" msgstr "Selezione personalizzata" -#: ../../include/acl_selectors.php:271 +#: ../../include/acl_selectors.php:171 msgid "" "Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" " the scope of \"Show\"." msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." -#: ../../include/acl_selectors.php:272 +#: ../../include/acl_selectors.php:172 msgid "Show" msgstr "Mostra" -#: ../../include/acl_selectors.php:273 +#: ../../include/acl_selectors.php:173 msgid "Don't show" msgstr "Non mostrare" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Invio ad altre reti o a siti esterni" - -#: ../../include/acl_selectors.php:309 +#: ../../include/acl_selectors.php:207 #, php-format msgid "" "Post permissions %s cannot be changed %s after a post is shared.
    These" " permissions set who is allowed to view the post." msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Compleanno" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Età:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG oppure MM-GG" - -#: ../../include/datetime.php:272 ../../boot.php:2549 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "anno" -msgstr[1] "anni" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mese" -msgstr[1] "mesi" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "settimana" -msgstr[1] "settimane" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "giorno" -msgstr[1] "giorni" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "ora" -msgstr[1] "ore" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minuti" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "secondo" -msgstr[1] "secondi" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Buon compleanno %1$s" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Frequentemente" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Ogni ora" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Due volte al giorno" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Ogni giorno" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Ogni settimana" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Ogni mese" - -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Male" -msgstr "Maschio" - -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Female" -msgstr "Femmina" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Al momento maschio" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Al momento femmina" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transessuale" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Ermafrodito" - -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Neutro" - -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Non specificato" +#: ../../include/api.php:1330 +msgid "Public Timeline" +msgstr "Diario pubblico" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indeciso" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Maschi" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Nome vuoto" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Femmine" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Nome troppo lungo" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Gay" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Account senza identificativo" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbica" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Senza preferenza" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisessuale" +#: ../../include/channel.php:212 +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/selectors.php:85 -msgid "Autosexual" -msgstr "Autosessuale" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Astinente" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Profilo predefinito" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Vergine" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Deviato" +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Feticista" +#: ../../include/channel.php:963 ../../include/nav.php:92 +msgid "Edit Profile" +msgstr "Modifica il profilo" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Un sacco" +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "Visibile a tutti" -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asessuato" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "Sesso:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Single" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "Stato:" -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Da solo" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "Home page:" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponibile" +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "Online adesso" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Non disponibile" +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "Mi piace questo canale" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Ha una cotta" +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "j F Y" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Infatuato/a" +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "j F" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Disponibile a un incontro" +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "Compleanno:" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infedele" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sesso-dipendente" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amici con qualcosa in più" +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "Tag:" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "Orientamento politico:" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Impegnato" +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "Religione:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Sposato/a" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Con matrimonio immaginario" +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "Mi piace:" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partner" +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "Non mi piace:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Convivente" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio regolare" +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "I miei altri canali:" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felice" +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "Gusti musicali:" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Non in cerca" +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "Libri, letteratura:" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Scambista" +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "Televisione:" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Tradito/a" +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separato/a" +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "Amore:" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Instabile" +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "Lavoro:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorziato/a" +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "Scuola:" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Sogna il divorzio" +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "Mi piace" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Vedovo/a" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Compleanno" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incerto/a" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Età:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Relazione complicata" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG oppure MM-GG" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Chi se ne frega" +#: ../../include/datetime.php:272 ../../boot.php:2577 +msgid "never" +msgstr "mai" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Chiedimelo" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "meno di un secondo fa" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "anno" +msgstr[1] "anni" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mese" +msgstr[1] "mesi" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "settimana" +msgstr[1] "settimane" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "giorno" +msgstr[1] "giorni" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "ora" +msgstr[1] "ore" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minuti" -#: ../../include/text.php:404 -msgid "prev" -msgstr "prec" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "secondo" +msgstr[1] "secondi" -#: ../../include/text.php:406 -msgid "first" -msgstr "inizio" +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Compleanno di %1$s" -#: ../../include/text.php:435 -msgid "last" -msgstr "fine" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Buon compleanno %1$s" -#: ../../include/text.php:438 -msgid "next" -msgstr "succ" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Frequentemente" -#: ../../include/text.php:448 -msgid "older" -msgstr "più recenti" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Ogni ora" -#: ../../include/text.php:450 -msgid "newer" -msgstr "più nuovi" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Due volte al giorno" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Nessun contatto" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Ogni giorno" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Mostra tutti i %s contatti" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Ogni settimana" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "poke" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Ogni mese" -#: ../../include/text.php:1013 ../../include/text.php:1018 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "ha mandato un poke" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" +msgstr "Maschio" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" +msgstr "Femmina" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha effettuato un ping" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Al momento maschio" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "spintone" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Al momento femmina" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha ricevuto uno spintone" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" -#: ../../include/text.php:1021 -msgid "slap" -msgstr "schiaffo" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgender" -#: ../../include/text.php:1022 -msgid "finger" -msgstr "finger" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersex" -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "ha ricevuto un finger" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transessuale" -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "rifiuto" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Ermafrodito" -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Neutro" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "felice" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "Non specificato" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste" +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Indeciso" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "calmo" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Maschi" -#: ../../include/text.php:1038 -msgid "tired" -msgstr "stanco" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Femmine" -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivace" +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Gay" -#: ../../include/text.php:1040 -msgid "angry" -msgstr "arrabbiato" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbica" -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "stupito" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Senza preferenza" -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "confuso" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisessuale" -#: ../../include/text.php:1043 -msgid "interested" -msgstr "attento" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosessuale" -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amaro" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Astinente" -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "allegro" +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Vergine" -#: ../../include/text.php:1046 -msgid "alive" -msgstr "vivace" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Deviato" -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "seccato" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Feticista" -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansioso" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Un sacco" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "irritabile" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Asessuato" -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "turbato" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Single" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrato" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Da solo" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "in depressione" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponibile" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivato" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Non disponibile" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "rilassato" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Ha una cotta" -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorpreso" +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Infatuato/a" -#: ../../include/text.php:1239 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunedì" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Disponibile a un incontro" -#: ../../include/text.php:1239 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martedì" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infedele" -#: ../../include/text.php:1239 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "mercoledì" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Sesso-dipendente" -#: ../../include/text.php:1239 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "giovedì" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amici con qualcosa in più" -#: ../../include/text.php:1239 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "venerdì" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Casual" -#: ../../include/text.php:1239 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sabato" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Impegnato" -#: ../../include/text.php:1239 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domenica" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Sposato/a" -#: ../../include/text.php:1243 ../../include/js_strings.php:45 -msgid "January" -msgstr "gennaio" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Con matrimonio immaginario" -#: ../../include/text.php:1243 ../../include/js_strings.php:46 -msgid "February" -msgstr "febbraio" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partner" -#: ../../include/text.php:1243 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Convivente" -#: ../../include/text.php:1243 ../../include/js_strings.php:48 -msgid "April" -msgstr "aprile" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Matrimonio regolare" -#: ../../include/text.php:1243 -msgid "May" -msgstr "Mag" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Felice" -#: ../../include/text.php:1243 ../../include/js_strings.php:50 -msgid "June" -msgstr "giugno" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Non in cerca" -#: ../../include/text.php:1243 ../../include/js_strings.php:51 -msgid "July" -msgstr "luglio" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Scambista" -#: ../../include/text.php:1243 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Tradito/a" -#: ../../include/text.php:1243 ../../include/js_strings.php:53 -msgid "September" -msgstr "settembre" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separato/a" -#: ../../include/text.php:1243 ../../include/js_strings.php:54 -msgid "October" -msgstr "ottobre" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Instabile" -#: ../../include/text.php:1243 ../../include/js_strings.php:55 -msgid "November" -msgstr "novembre" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorziato/a" -#: ../../include/text.php:1243 ../../include/js_strings.php:56 -msgid "December" -msgstr "dicembre" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Sogna il divorzio" -#: ../../include/text.php:1320 ../../include/text.php:1324 -msgid "Unknown Attachment" -msgstr "Allegato non riconoscuto" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Vedovo/a" -#: ../../include/text.php:1326 -msgid "unknown" -msgstr "sconosciuta" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Incerto/a" -#: ../../include/text.php:1362 -msgid "remove category" -msgstr "rimuovi la categoria" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Relazione complicata" -#: ../../include/text.php:1439 -msgid "remove from file" -msgstr "rimuovi dal file" +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Chi se ne frega" -#: ../../include/text.php:1738 ../../include/text.php:1809 -msgid "default" -msgstr "predefinito" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Chiedimelo" -#: ../../include/text.php:1746 -msgid "Page layout" -msgstr "Layout della pagina" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" -#: ../../include/text.php:1746 -msgid "You can create your own with the layouts tool" -msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: ../../include/text.php:1788 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Impossibile salvare la foto." -#: ../../include/text.php:1821 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "una nuova foto" -#: ../../include/text.php:1958 -msgid "activity" -msgstr "l'attività" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha pubblicato %2$s su %3$s" -#: ../../include/text.php:2259 -msgid "Design Tools" -msgstr "Strumenti di design" +#: ../../include/photos.php:506 ../../include/conversation.php:1668 +msgid "Photo Albums" +msgstr "Album foto" -#: ../../include/text.php:2265 -msgid "Pages" -msgstr "Pagine" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: ../../include/text.php:2287 -msgid "Import website..." -msgstr "Importazione sito web..." +#: ../../include/security.php:109 +msgid "guest:" +msgstr "ospite:" -#: ../../include/text.php:2288 -msgid "Select folder to import" -msgstr "Scegli la cartella da importare" +#: ../../include/security.php:527 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." -#: ../../include/text.php:2289 -msgid "Import from a zipped folder:" -msgstr "Importa da un file zip:" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" -#: ../../include/text.php:2290 -msgid "Import from cloud files:" -msgstr "Importa i file da un cloud:" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" -#: ../../include/text.php:2291 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/channel/percorso/alla/cartella" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../include/text.php:2292 -msgid "Enter path to website files" -msgstr "Inserisci la posizione dei file del sito web" +#: ../../include/conversation.php:713 +msgid "Categories:" +msgstr "Categorie:" -#: ../../include/text.php:2293 -msgid "Select folder" -msgstr "Scegli la cartella" +#: ../../include/conversation.php:714 +msgid "Filed under:" +msgstr "Classificato come:" -#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1712 -msgid "Logout" -msgstr "Esci" +#: ../../include/conversation.php:741 +msgid "View in context" +msgstr "Vedi nel contesto" -#: ../../include/nav.php:84 ../../include/nav.php:117 -msgid "End this session" -msgstr "Chiudi questa sessione" +#: ../../include/conversation.php:851 +msgid "remove" +msgstr "rimuovi" -#: ../../include/nav.php:87 ../../include/nav.php:148 -msgid "Home" -msgstr "Bacheca" +#: ../../include/conversation.php:855 ../../include/nav.php:251 +msgid "Loading..." +msgstr "Caricamento in corso..." -#: ../../include/nav.php:87 -msgid "Your posts and conversations" -msgstr "I tuoi post e conversazioni" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" -#: ../../include/nav.php:88 -msgid "Your profile page" -msgstr "Il tuo profilo" +#: ../../include/conversation.php:949 +msgid "View Source" +msgstr "Vedi il sorgente" -#: ../../include/nav.php:90 -msgid "Manage/Edit profiles" -msgstr "Gestisci i tuoi profili" +#: ../../include/conversation.php:950 +msgid "Follow Thread" +msgstr "Segui la discussione" -#: ../../include/nav.php:92 ../../include/channel.php:963 -msgid "Edit Profile" -msgstr "Modifica il profilo" +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Non seguire la discussione" -#: ../../include/nav.php:92 -msgid "Edit your profile" -msgstr "Modifica il tuo profilo" +#: ../../include/conversation.php:956 +msgid "Activity/Posts" +msgstr "Attività e Post" -#: ../../include/nav.php:94 -msgid "Your photos" -msgstr "Le tue foto" +#: ../../include/conversation.php:958 +msgid "Edit Connection" +msgstr "Modifica il contatto" -#: ../../include/nav.php:95 -msgid "Your files" -msgstr "I tuoi file" +#: ../../include/conversation.php:959 +msgid "Message" +msgstr "Messaggio" -#: ../../include/nav.php:98 -msgid "Your chatrooms" -msgstr "Le tue chat" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." -#: ../../include/nav.php:104 ../../include/conversation.php:1695 -msgid "Bookmarks" -msgstr "Segnalibri" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." -#: ../../include/nav.php:104 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" +#: ../../include/conversation.php:1080 +#, 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/nav.php:108 -msgid "Your webpages" -msgstr "Le tue pagine web" +#: ../../include/conversation.php:1082 +#, 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/nav.php:110 -msgid "Your wiki" -msgstr "La tua wiki" +#: ../../include/conversation.php:1088 +msgid "and" +msgstr "e" -#: ../../include/nav.php:114 -msgid "Sign in" -msgstr "Accedi" +#: ../../include/conversation.php:1091 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "e altre %d persone" -#: ../../include/nav.php:131 +#: ../../include/conversation.php:1092 #, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" +msgid "%s like this." +msgstr "Piace a %s." -#: ../../include/nav.php:134 -msgid "Remote authentication" -msgstr "Accedi dal tuo hub" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." -#: ../../include/nav.php:134 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per farti riconoscere dal tuo hub principale" +#: ../../include/conversation.php:1135 +msgid "Set your location" +msgstr "La tua località" -#: ../../include/nav.php:148 -msgid "Home Page" -msgstr "Bacheca" +#: ../../include/conversation.php:1136 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" -#: ../../include/nav.php:151 -msgid "Create an account" -msgstr "Crea un account" +#: ../../include/conversation.php:1184 +msgid "Tag term:" +msgstr "Tag:" -#: ../../include/nav.php:163 -msgid "Help and documentation" -msgstr "Guida e documentazione" +#: ../../include/conversation.php:1185 +msgid "Where are you right now?" +msgstr "Dove sei ora?" -#: ../../include/nav.php:167 -msgid "Applications, utilities, links, games" -msgstr "Applicazioni, utilità, link, giochi" +#: ../../include/conversation.php:1194 +msgid "Comments enabled" +msgstr "Commenti abilitati" -#: ../../include/nav.php:169 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" +#: ../../include/conversation.php:1195 +msgid "Comments disabled" +msgstr "Commenti disabilitati" -#: ../../include/nav.php:171 -msgid "Channel Directory" -msgstr "Elenchi pubblici dei canali" +#: ../../include/conversation.php:1229 +msgid "Page link name" +msgstr "Nome del link alla pagina" -#: ../../include/nav.php:183 -msgid "Your grid" -msgstr "La tua rete" +#: ../../include/conversation.php:1232 +msgid "Post as" +msgstr "Pubblica come " -#: ../../include/nav.php:184 -msgid "Mark all grid notifications seen" -msgstr "Segna come lette le notifiche della tua rete" +#: ../../include/conversation.php:1246 +msgid "Toggle voting" +msgstr "Abilita/disabilita il voto" -#: ../../include/nav.php:186 -msgid "Channel home" -msgstr "Bacheca del canale" +#: ../../include/conversation.php:1249 +msgid "Disable comments" +msgstr "Disabilita i commenti" -#: ../../include/nav.php:187 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche del canale" +#: ../../include/conversation.php:1250 +msgid "Toggle comments" +msgstr "Abilita/disabilita i commenti" -#: ../../include/nav.php:193 -msgid "Notices" -msgstr "Avvisi" +#: ../../include/conversation.php:1258 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../include/nav.php:193 -msgid "Notifications" -msgstr "Notifiche" +#: ../../include/conversation.php:1281 +msgid "Other networks and post services" +msgstr "Invio ad altre reti o a siti esterni" -#: ../../include/nav.php:194 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" +#: ../../include/conversation.php:1287 +msgid "Set publish date" +msgstr "Data di uscita programmata" -#: ../../include/nav.php:197 -msgid "Private mail" -msgstr "Messaggi privati" +#: ../../include/conversation.php:1536 +msgid "Discover" +msgstr "Scopri" -#: ../../include/nav.php:198 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" +#: ../../include/conversation.php:1539 +msgid "Imported public streams" +msgstr "Contenuti pubblici importati" -#: ../../include/nav.php:199 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" +#: ../../include/conversation.php:1544 +msgid "Commented Order" +msgstr "Commenti recenti" -#: ../../include/nav.php:200 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "In arrivo" +#: ../../include/conversation.php:1547 +msgid "Sort by Comment Date" +msgstr "Per data del commento" -#: ../../include/nav.php:201 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Inviati" +#: ../../include/conversation.php:1551 +msgid "Posted Order" +msgstr "Post recenti" -#: ../../include/nav.php:202 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nuovo messaggio" +#: ../../include/conversation.php:1554 +msgid "Sort by Post Date" +msgstr "Per data di creazione" -#: ../../include/nav.php:205 -msgid "Event Calendar" -msgstr "Calendario" +#: ../../include/conversation.php:1562 +msgid "Posts that mention or involve you" +msgstr "Post che ti riguardano" -#: ../../include/nav.php:206 -msgid "See all events" -msgstr "Guarda tutti gli eventi" +#: ../../include/conversation.php:1571 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" -#: ../../include/nav.php:207 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" +#: ../../include/conversation.php:1577 +msgid "Starred" +msgstr "Preferiti" -#: ../../include/nav.php:210 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" +#: ../../include/conversation.php:1580 +msgid "Favourite Posts" +msgstr "Post preferiti" -#: ../../include/nav.php:212 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" +#: ../../include/conversation.php:1587 +msgid "Spam" +msgstr "Spam" -#: ../../include/nav.php:220 ../../include/widgets.php:1524 -msgid "Admin" -msgstr "Amministrazione" +#: ../../include/conversation.php:1590 +msgid "Posts flagged as SPAM" +msgstr "Post marcati come spam" -#: ../../include/nav.php:220 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" +#: ../../include/conversation.php:1647 +msgid "Status Messages and Posts" +msgstr "Post e messaggi di stato" -#: ../../include/nav.php:251 ../../include/conversation.php:855 -msgid "Loading..." -msgstr "Caricamento in corso..." +#: ../../include/conversation.php:1656 +msgid "About" +msgstr "Informazioni" -#: ../../include/nav.php:256 -msgid "@name, #tag, ?doc, content" -msgstr "@nome, #tag, ?guida, contenuto" +#: ../../include/conversation.php:1659 +msgid "Profile Details" +msgstr "Dettagli del profilo" -#: ../../include/nav.php:257 -msgid "Please wait..." -msgstr "Attendere..." +#: ../../include/conversation.php:1675 +msgid "Files and Storage" +msgstr "Archivio file" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" +#: ../../include/conversation.php:1708 ../../include/nav.php:104 +msgid "Bookmarks" +msgstr "Segnalibri" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/conversation.php:1711 +msgid "Saved Bookmarks" +msgstr "Segnalibri salvati" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Inizio:" +#: ../../include/conversation.php:1721 +msgid "Manage Webpages" +msgstr "Gestisci le pagine web" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fine:" +#: ../../include/conversation.php:1786 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Non specificato" +#: ../../include/conversation.php:1792 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indecisi" -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necessita di un intervento" +#: ../../include/conversation.php:1795 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "D'accordo" +msgstr[1] "D'accordo" -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completato" +#: ../../include/conversation.php:1798 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Non d'accordo" +msgstr[1] "Non d'accordo" -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "In corso" +#: ../../include/conversation.php:1801 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Astenuto" +msgstr[1] "Astenuti" -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Annullato" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" #: ../../include/group.php:26 msgid "" @@ -8423,6 +8703,10 @@ msgstr "Aggiungi nuovi contatti a questo gruppo di canali" msgid "edit" msgstr "modifica" +#: ../../include/group.php:311 ../../include/features.php:84 +msgid "Privacy Groups" +msgstr "Gruppi di canali" + #: ../../include/group.php:312 msgid "Edit group" msgstr "Modifica il gruppo" @@ -8435,10 +8719,6 @@ msgstr "Crea un gruppo di canali" msgid "Channels not in any privacy group" msgstr "Canali che non sono in nessun gruppo" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "aggiungi" - #: ../../include/page_widgets.php:7 msgid "New Page" msgstr "Nuova pagina web" @@ -8447,212 +8727,48 @@ msgstr "Nuova pagina web" msgid "Title" msgstr "Titolo" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" - -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nome vuoto" - -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" - -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Account senza identificativo" - -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." - -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." - -#: ../../include/channel.php:212 -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/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" - -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profilo predefinito" - -#: ../../include/channel.php:813 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." - -#: ../../include/channel.php:960 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: ../../include/channel.php:980 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" -msgstr "Sesso:" - -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" -msgstr "Stato:" - -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" -msgstr "Home page:" - -#: ../../include/channel.php:1056 -msgid "Online Now" -msgstr "Online adesso" - -#: ../../include/channel.php:1171 -msgid "Like this channel" -msgstr "Mi piace questo canale" - -#: ../../include/channel.php:1195 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/channel.php:1196 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1203 -msgid "Birthday:" -msgstr "Compleanno:" - -#: ../../include/channel.php:1216 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: ../../include/channel.php:1225 -msgid "Tags:" -msgstr "Tag:" - -#: ../../include/channel.php:1227 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: ../../include/channel.php:1229 -msgid "Religion:" -msgstr "Religione:" - -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" - -#: ../../include/channel.php:1235 -msgid "Likes:" -msgstr "Mi piace:" - -#: ../../include/channel.php:1237 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" - -#: ../../include/channel.php:1241 -msgid "My other channels:" -msgstr "I miei altri canali:" - -#: ../../include/channel.php:1243 -msgid "Musical interests:" -msgstr "Gusti musicali:" - -#: ../../include/channel.php:1245 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: ../../include/channel.php:1247 -msgid "Television:" -msgstr "Televisione:" - -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" - -#: ../../include/channel.php:1251 -msgid "Love/Romance:" -msgstr "Amore:" - -#: ../../include/channel.php:1253 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: ../../include/channel.php:1255 -msgid "School/education:" -msgstr "Scuola:" - -#: ../../include/channel.php:1276 -msgid "Like this thing" -msgstr "Mi piace" - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" - -#: ../../include/network.php:1935 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Amministratore" - -#: ../../include/network.php:1949 -msgid "No Subject" -msgstr "Nessun titolo" - -#: ../../include/network.php:2203 ../../include/network.php:2204 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2205 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" -#: ../../include/network.php:2206 -msgid "GNU-Social" -msgstr "GNU-Social" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/network.php:2207 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Inizio:" -#: ../../include/network.php:2209 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Fine:" -#: ../../include/network.php:2210 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" -#: ../../include/network.php:2211 -msgid "Zot" -msgstr "Zot" +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Non specificato" -#: ../../include/network.php:2212 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Necessita di un intervento" -#: ../../include/network.php:2213 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Completato" -#: ../../include/network.php:2214 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "In corso" + +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "Annullato" #: ../../include/bb2diaspora.php:398 msgid "Attachments:" @@ -8721,585 +8837,295 @@ msgstr "Valuta questo canale (visibile a tutti)" msgid "Describe (optional)" msgstr "Descrizione (facoltativa)" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Inserisci l'URL di un link" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" - -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "fa" - -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "da adesso" - -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "meno di un minuto" - -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "circa un minuto" - -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minuti" - -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "circa un’ora" - -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "circa %d ore" - -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "un giorno" - -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d giorni" - -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "circa un mese" - -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d mesi" - -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "circa un anno" - -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d anni" - -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "maggio" - -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "Gen" - -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "Feb" - -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "Mar" - -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "Apr" - -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "maggio" - -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "Mag" - -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "Giu" - -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "Ago" - -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "Set" - -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "Ott" - -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "Nov" - -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "Dic" - -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "Dom" - -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "Lun" - -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "Mar" - -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "Mer" - -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "Gio" - -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "Ven" - -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "Sab" - -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "oggi" - -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "mese" - -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "settimana" - -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "giorno" - -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Tutto il giorno" - -#: ../../include/security.php:109 -msgid "guest:" -msgstr "ospite:" - -#: ../../include/security.php:527 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Email non valida" - -#: ../../include/account.php:30 -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:36 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "È necessario un invito." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "la password di registrazione" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account approvato." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Inserisci l'URL di un link" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Immagine" +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "fa" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenuto cifrato" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "da adesso" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installa l'elemento %s:" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "meno di un minuto" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "circa un minuto" -#: ../../include/bbcode.php:261 +#: ../../include/js_strings.php:33 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" +msgid "%d minutes" +msgstr "%d minuti" -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "circa un’ora" -#: ../../include/bbcode.php:619 ../../include/wiki.php:525 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "circa %d ore" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "un giorno" -#: ../../include/conversation.php:204 +#: ../../include/js_strings.php:37 #, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" +msgid "%d days" +msgstr "%d giorni" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "circa un mese" -#: ../../include/conversation.php:694 +#: ../../include/js_strings.php:39 #, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categorie:" +msgid "%d months" +msgstr "%d mesi" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Classificato come:" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "circa un anno" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Vedi nel contesto" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d anni" -#: ../../include/conversation.php:851 -msgid "remove" -msgstr "rimuovi" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/conversation.php:856 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/conversation.php:952 -msgid "View Source" -msgstr "Vedi il sorgente" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "maggio" -#: ../../include/conversation.php:953 -msgid "Follow Thread" -msgstr "Segui la discussione" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "Gen" -#: ../../include/conversation.php:954 -msgid "Unfollow Thread" -msgstr "Non seguire la discussione" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "Feb" -#: ../../include/conversation.php:959 -msgid "Activity/Posts" -msgstr "Attività e Post" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "Mar" -#: ../../include/conversation.php:961 -msgid "Edit Connection" -msgstr "Modifica il contatto" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "Apr" -#: ../../include/conversation.php:962 -msgid "Message" -msgstr "Messaggio" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "maggio" -#: ../../include/conversation.php:1079 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "Mag" -#: ../../include/conversation.php:1079 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "Giu" -#: ../../include/conversation.php:1083 -#, 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/js_strings.php:64 +msgid "Aug" +msgstr "Ago" -#: ../../include/conversation.php:1085 -#, 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/js_strings.php:65 +msgid "Sep" +msgstr "Set" -#: ../../include/conversation.php:1091 -msgid "and" -msgstr "e" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "Ott" -#: ../../include/conversation.php:1094 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "e altre %d persone" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "Nov" -#: ../../include/conversation.php:1095 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "Dic" -#: ../../include/conversation.php:1095 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "Dom" -#: ../../include/conversation.php:1134 -msgid "Set your location" -msgstr "La tua località" +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "Lun" -#: ../../include/conversation.php:1135 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "Mar" -#: ../../include/conversation.php:1183 -msgid "Tag term:" -msgstr "Tag:" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "Mer" -#: ../../include/conversation.php:1184 -msgid "Where are you right now?" -msgstr "Dove sei ora?" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "Gio" -#: ../../include/conversation.php:1222 -msgid "Page link name" -msgstr "Nome del link alla pagina" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "Ven" -#: ../../include/conversation.php:1225 -msgid "Post as" -msgstr "Pubblica come " +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "Sab" -#: ../../include/conversation.php:1239 -msgid "Toggle voting" -msgstr "Abilita/disabilita il voto" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "oggi" -#: ../../include/conversation.php:1247 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "mese" -#: ../../include/conversation.php:1274 -msgid "Set publish date" -msgstr "Data di uscita programmata" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "settimana" -#: ../../include/conversation.php:1523 -msgid "Discover" -msgstr "Scopri" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "giorno" -#: ../../include/conversation.php:1526 -msgid "Imported public streams" -msgstr "Contenuti pubblici importati" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Tutto il giorno" -#: ../../include/conversation.php:1531 -msgid "Commented Order" -msgstr "Commenti recenti" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." -#: ../../include/conversation.php:1534 -msgid "Sort by Comment Date" -msgstr "Per data del commento" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." -#: ../../include/conversation.php:1538 -msgid "Posted Order" -msgstr "Post recenti" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../include/conversation.php:1541 -msgid "Sort by Post Date" -msgstr "Per data di creazione" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." -#: ../../include/conversation.php:1549 -msgid "Posts that mention or involve you" -msgstr "Post che ti riguardano" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." -#: ../../include/conversation.php:1558 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." -#: ../../include/conversation.php:1564 -msgid "Starred" -msgstr "Preferiti" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." -#: ../../include/conversation.php:1567 -msgid "Favourite Posts" -msgstr "Post preferiti" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "Elemento non trovato." -#: ../../include/conversation.php:1574 -msgid "Spam" -msgstr "Spam" +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "Nessun file di origine." -#: ../../include/conversation.php:1577 -msgid "Posts flagged as SPAM" -msgstr "Post marcati come spam" +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" -#: ../../include/conversation.php:1634 -msgid "Status Messages and Posts" -msgstr "Post e messaggi di stato" +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" -#: ../../include/conversation.php:1643 -msgid "About" -msgstr "Informazioni" +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" -#: ../../include/conversation.php:1646 -msgid "Profile Details" -msgstr "Dettagli del profilo" +#: ../../include/attach.php:689 +#, 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/conversation.php:1662 -msgid "Files and Storage" -msgstr "Archivio file" +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." -#: ../../include/conversation.php:1682 ../../include/conversation.php:1685 -#: ../../include/widgets.php:850 -msgid "Chatrooms" -msgstr "Chat" +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." -#: ../../include/conversation.php:1698 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." +msgstr "Percorso non disponibile." -#: ../../include/conversation.php:1708 -msgid "Manage Webpages" -msgstr "Gestisci le pagine web" +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" -#: ../../include/conversation.php:1773 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" +msgstr "il file o il percorso del file è duplicato" -#: ../../include/conversation.php:1776 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" +#: ../../include/attach.php:1026 +msgid "Path not found." +msgstr "Percorso del file non trovato." -#: ../../include/conversation.php:1779 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indecisi" +#: ../../include/attach.php:1084 +msgid "mkdir failed." +msgstr "mkdir fallito." -#: ../../include/conversation.php:1782 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accordo" -msgstr[1] "D'accordo" +#: ../../include/attach.php:1088 +msgid "database storage failed." +msgstr "scrittura su database fallita." -#: ../../include/conversation.php:1785 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Non d'accordo" -msgstr[1] "Non d'accordo" +#: ../../include/attach.php:1136 +msgid "Empty path" +msgstr "La posizione è vuota" -#: ../../include/conversation.php:1788 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Astenuto" -msgstr[1] "Astenuti" +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../include/oembed.php:340 -msgid "Embedded content" -msgstr "Contenuti incorporati" +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "Autenticazione fallita" -#: ../../include/oembed.php:349 -msgid "Embedding disabled" -msgstr "Disabilita la creazione di contenuti incorporati" +#: ../../include/auth.php:286 +msgid "Login failed." +msgstr "Accesso fallito." #: ../../include/activities.php:41 msgid " and " @@ -9324,376 +9150,446 @@ msgstr "Guarda %2$s di %1$s " msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s ha aggiornato %2$s cambiando %3$s." -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Categorie" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Tag" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Parole chiave" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "ho" +#: ../../include/zot.php:3706 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "ha" +#: ../../include/features.php:50 +msgid "General Features" +msgstr "Funzionalità di base" -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "voglio" +#: ../../include/features.php:52 +msgid "Content Expiration" +msgstr "Scadenza" -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "vuole" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "gli piace" +#: ../../include/features.php:53 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" +msgstr "Abilitazione a creare profili multipli" + +#: ../../include/features.php:54 +msgid "Advanced Profiles" +msgstr "Profili avanzati" + +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" +msgstr "Informazioni aggiuntive del profilo" + +#: ../../include/features.php:55 +msgid "Profile Import/Export" +msgstr "Importa/esporta il profilo" + +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" +msgstr "Salva o ripristina le informazioni del profilo su siti diversi" + +#: ../../include/features.php:56 +msgid "Web Pages" +msgstr "Pagine web" + +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" +msgstr "Attiva la creazione di pagine web sul tuo canale" + +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" +msgstr "Fornisce una wiki per il tuo canale" + +#: ../../include/features.php:59 +msgid "Private Notes" +msgstr "Note private" -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "non gli piace" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" -#: ../../include/permissions.php:29 -msgid "Can view my normal stream and posts" -msgstr "Può vedere i miei contenuti e i post normali" +#: ../../include/features.php:60 +msgid "Navigation Channel Select" +msgstr "Scegli il canale attivo dal menu" -#: ../../include/permissions.php:33 -msgid "Can view my webpages" -msgstr "Può vedere le mie pagine web" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Scegli il canale attivo direttamente dal menu di navigazione" -#: ../../include/permissions.php:37 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" +#: ../../include/features.php:61 +msgid "Photo Location" +msgstr "Posizione geografica" -#: ../../include/permissions.php:40 -msgid "Can like/dislike stuff" -msgstr "Può aggiungere \"mi piace\" a tutto il resto" +#: ../../include/features.php:61 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." -#: ../../include/permissions.php:40 -msgid "Profiles and things other than posts/comments" -msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo" +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" +msgstr "Chat ad accesso riservato" -#: ../../include/permissions.php:42 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione" +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." +msgstr "Il servizio di chat con accesso riservato" -#: ../../include/permissions.php:42 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" +#: ../../include/features.php:63 +msgid "Smart Birthdays" +msgstr "Compleanni intelligenti" -#: ../../include/permissions.php:43 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" +#: ../../include/features.php:63 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." -#: ../../include/permissions.php:44 -msgid "Can write to my file storage and photos" -msgstr "Può modificare il mio archivio file e foto" +#: ../../include/features.php:64 +msgid "Expert Mode" +msgstr "Modalità esperto" -#: ../../include/permissions.php:45 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" +#: ../../include/features.php:64 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" -#: ../../include/permissions.php:47 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" +#: ../../include/features.php:69 +msgid "Post Composition Features" +msgstr "Modalità di scrittura post" -#: ../../include/permissions.php:49 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Foto grandi" -#: ../../include/permissions.php:49 +#: ../../include/features.php:70 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 large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" +#: ../../include/features.php:71 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nuova app" +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Cifratura addizionale" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggerimenti" +#: ../../include/features.php:72 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Altro..." +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Permetti i post con votazione" -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Rende possibile la creazione di post in cui sarà possibile votare" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" +#: ../../include/features.php:74 +msgid "Disable Comments" +msgstr "Disabilita i commenti" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Indirizzo del canale" +#: ../../include/features.php:74 +msgid "Provide the option to disable comments for a post" +msgstr "Permetti di disabilitare i commenti" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Per esempio: bob@example.com, https://example.com/barbara" +#: ../../include/features.php:75 +msgid "Delayed Posting" +msgstr "Pubblicazione ritardata" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Note" +#: ../../include/features.php:75 +msgid "Allow posts to be published at a later date" +msgstr "Per scegliere una data e un'ora a cui far uscire i post" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Rimuovi termine" +#: ../../include/features.php:76 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Impedisci post e commenti duplicati" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tutto" +#: ../../include/features.php:76 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archivi" +#: ../../include/features.php:82 +msgid "Network and Stream Filtering" +msgstr "Filtraggio dei contenuti" -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aggiorna" +#: ../../include/features.php:83 +msgid "Search by Date" +msgstr "Ricerca per data" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Il tuo account" +#: ../../include/features.php:83 +msgid "Ability to select posts by date ranges" +msgstr "Per selezionare i post in un intervallo tra date" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Impostazioni del canale" +#: ../../include/features.php:84 +msgid "Enable management and selection of privacy groups" +msgstr "Abilita i gruppi di canali" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Funzionalità opzionali" +#: ../../include/features.php:85 +msgid "Save search terms for re-use" +msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Componenti aggiuntivi" +#: ../../include/features.php:86 +msgid "Network Personal Tab" +msgstr "Attività personale" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Aspetto" +#: ../../include/features.php:86 +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/widgets.php:591 -msgid "Manage locations" -msgstr "Gestione repliche" +#: ../../include/features.php:87 +msgid "Network New Tab" +msgstr "Contenuti nuovi" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Esporta il canale" +#: ../../include/features.php:87 +msgid "Enable tab to display all new Network activity" +msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "App connesse" +#: ../../include/features.php:88 +msgid "Affinity Tool" +msgstr "Filtro per affinità" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" +#: ../../include/features.php:88 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menu messaggi privati" +#: ../../include/features.php:89 +msgid "Connection Filtering" +msgstr "Filtro sui contatti" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista combinata" +#: ../../include/features.php:89 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtra i post che ricevi con parole chiave" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversazioni" +#: ../../include/features.php:90 +msgid "Show channel suggestions" +msgstr "Mostra alcuni canali che potrebbero interessarti" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Ricevuti" +#: ../../include/features.php:95 +msgid "Post/Comment Tools" +msgstr "Gestione post e commenti" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Inviati" +#: ../../include/features.php:96 +msgid "Community Tagging" +msgstr "Tag della comunità" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Nessun messaggio." +#: ../../include/features.php:96 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su post già esistenti" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Elimina la conversazione" +#: ../../include/features.php:97 +msgid "Post Categories" +msgstr "Categorie dei post" + +#: ../../include/features.php:97 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi post" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Gestione eventi" +#: ../../include/features.php:98 +msgid "Emoji Reactions" +msgstr "Reazioni emoji" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Esporta calendario" +#: ../../include/features.php:98 +msgid "Add emoji reaction ability to posts" +msgstr "Permetti le reazioni emoji ai post" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importa calendario" +#: ../../include/features.php:99 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" -#: ../../include/widgets.php:854 -msgid "Overview" -msgstr "Riepilogo" +#: ../../include/features.php:100 +msgid "Dislike Posts" +msgstr "Non mi piace" -#: ../../include/widgets.php:861 -msgid "Chat Members" -msgstr "Partecipanti" +#: ../../include/features.php:100 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" -#: ../../include/widgets.php:883 -msgid "Wiki List" -msgstr "Elenco wiki" +#: ../../include/features.php:101 +msgid "Star Posts" +msgstr "Post con stella" -#: ../../include/widgets.php:921 -msgid "Wiki Pages" -msgstr "Pagine wiki" +#: ../../include/features.php:101 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per segnare i post preferiti" -#: ../../include/widgets.php:956 -msgid "Bookmarked Chatrooms" -msgstr "Chat nei segnalibri" +#: ../../include/features.php:102 +msgid "Tag Cloud" +msgstr "Nuvola di tag" -#: ../../include/widgets.php:979 -msgid "Suggested Chatrooms" -msgstr "Chat suggerite" +#: ../../include/features.php:102 +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/widgets.php:1125 ../../include/widgets.php:1237 -msgid "photo/image" -msgstr "foto/immagine" +#: ../../include/features.php:111 +msgid "Premium Channel" +msgstr "Canale premium" -#: ../../include/widgets.php:1180 -msgid "Click to show more" -msgstr "Clicca per mostrare tutto" +#: ../../include/features.php:112 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" -#: ../../include/widgets.php:1331 -msgid "Rating Tools" -msgstr "Valutazione" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Tag" -#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 -msgid "Rate Me" -msgstr "Valutami" +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Parole chiave" -#: ../../include/widgets.php:1340 -msgid "View Ratings" -msgstr "Vedi le valutazioni ricevute" +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "ho" -#: ../../include/widgets.php:1424 -msgid "Forums" -msgstr "Forum" +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "ha" -#: ../../include/widgets.php:1453 -msgid "Tasks" -msgstr "Attività" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "voglio" -#: ../../include/widgets.php:1462 -msgid "Documentation" -msgstr "Guida" +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "vuole" -#: ../../include/widgets.php:1464 -msgid "Project/Site Information" -msgstr "Informazioni sul sito/progetto" +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "gli piace" -#: ../../include/widgets.php:1465 -msgid "For Members" -msgstr "Per gli utenti" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "non gli piace" -#: ../../include/widgets.php:1466 -msgid "For Administrators" -msgstr "Per gli amministratori" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Email non valida" -#: ../../include/widgets.php:1467 -msgid "For Developers" -msgstr "Per sviluppatori" +#: ../../include/account.php:30 +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/widgets.php:1491 ../../include/widgets.php:1529 -msgid "Member registrations waiting for confirmation" -msgstr "Richieste in attesa di conferma" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." -#: ../../include/widgets.php:1497 -msgid "Inspect queue" -msgstr "Coda di attesa" +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "È necessario un invito." -#: ../../include/widgets.php:1499 -msgid "DB updates" -msgstr "Aggiornamenti al DB" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." -#: ../../include/widgets.php:1525 -msgid "Plugin Features" -msgstr "Plugin" +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." -msgstr "Elemento non trovato." +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." -#: ../../include/attach.php:500 -msgid "No source file." -msgstr "Nessun file di origine." +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "la password di registrazione" -#: ../../include/attach.php:675 +#: ../../include/account.php:342 ../../include/account.php:402 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" -#: ../../include/attach.php:689 +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../include/account.php:454 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione supera i limiti del tuo abbonamento." -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." -msgstr "Percorso non disponibile." +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Immagine" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Contenuto cifrato" -#: ../../include/attach.php:1026 -msgid "Path not found." -msgstr "Percorso del file non trovato." +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installa l'elemento %s:" -#: ../../include/attach.php:1084 -msgid "mkdir failed." -msgstr "mkdir fallito." +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." -#: ../../include/attach.php:1088 -msgid "database storage failed." -msgstr "scrittura su database fallita." +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" -#: ../../include/attach.php:1136 -msgid "Empty path" -msgstr "La posizione è vuota" +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" #: ../../include/contact_widgets.php:11 #, php-format @@ -9773,244 +9669,372 @@ msgstr "Impossibile determinare il mittente." msgid "Stored post could not be verified." msgstr "Non è stato possibile verificare il post." -#: ../../include/auth.php:148 -msgid "Logged out." -msgstr "Uscita effettuata." +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." -#: ../../include/auth.php:275 -msgid "Failed authentication" -msgstr "Autenticazione fallita" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." -#: ../../include/auth.php:286 -msgid "Login failed." -msgstr "Accesso fallito." +#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1737 +msgid "Logout" +msgstr "Esci" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nuova finestra" +#: ../../include/nav.php:84 ../../include/nav.php:117 +msgid "End this session" +msgstr "Chiudi questa sessione" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" +#: ../../include/nav.php:87 ../../include/nav.php:148 +msgid "Home" +msgstr "Bacheca" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" +#: ../../include/nav.php:87 +msgid "Your posts and conversations" +msgstr "I tuoi post e conversazioni" -#: ../../include/zot.php:697 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" +#: ../../include/nav.php:88 +msgid "Your profile page" +msgstr "Il tuo profilo" -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" +#: ../../include/nav.php:90 +msgid "Manage/Edit profiles" +msgstr "Gestisci i tuoi profili" + +#: ../../include/nav.php:92 +msgid "Edit your profile" +msgstr "Modifica il tuo profilo" + +#: ../../include/nav.php:94 +msgid "Your photos" +msgstr "Le tue foto" + +#: ../../include/nav.php:95 +msgid "Your files" +msgstr "I tuoi file" + +#: ../../include/nav.php:98 +msgid "Your chatrooms" +msgstr "Le tue chat" + +#: ../../include/nav.php:104 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" + +#: ../../include/nav.php:108 +msgid "Your webpages" +msgstr "Le tue pagine web" + +#: ../../include/nav.php:110 +msgid "Your wiki" +msgstr "La tua wiki" + +#: ../../include/nav.php:114 +msgid "Sign in" +msgstr "Accedi" -#: ../../include/zot.php:2326 +#: ../../include/nav.php:131 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" -#: ../../include/zot.php:3703 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" +#: ../../include/nav.php:134 +msgid "Remote authentication" +msgstr "Accedi dal tuo hub" + +#: ../../include/nav.php:134 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per farti riconoscere dal tuo hub principale" + +#: ../../include/nav.php:148 +msgid "Home Page" +msgstr "Bacheca" + +#: ../../include/nav.php:151 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:163 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:167 +msgid "Applications, utilities, links, games" +msgstr "Applicazioni, utilità, link, giochi" + +#: ../../include/nav.php:169 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" + +#: ../../include/nav.php:171 +msgid "Channel Directory" +msgstr "Elenchi pubblici dei canali" -#: ../../view/theme/redbasic/php/config.php:82 +#: ../../include/nav.php:183 +msgid "Your grid" +msgstr "La tua rete" + +#: ../../include/nav.php:184 +msgid "Mark all grid notifications seen" +msgstr "Segna come lette le notifiche della tua rete" + +#: ../../include/nav.php:186 +msgid "Channel home" +msgstr "Bacheca del canale" + +#: ../../include/nav.php:187 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche del canale" + +#: ../../include/nav.php:193 +msgid "Notices" +msgstr "Avvisi" + +#: ../../include/nav.php:193 +msgid "Notifications" +msgstr "Notifiche" + +#: ../../include/nav.php:194 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: ../../include/nav.php:197 +msgid "Private mail" +msgstr "Messaggi privati" + +#: ../../include/nav.php:198 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" + +#: ../../include/nav.php:199 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" + +#: ../../include/nav.php:205 +msgid "Event Calendar" +msgstr "Calendario" + +#: ../../include/nav.php:206 +msgid "See all events" +msgstr "Guarda tutti gli eventi" + +#: ../../include/nav.php:207 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" + +#: ../../include/nav.php:210 +msgid "Manage Your Channels" +msgstr "Gestisci i tuoi canali" + +#: ../../include/nav.php:212 +msgid "Account/Channel Settings" +msgstr "Impostazioni dell'account e del canale" + +#: ../../include/nav.php:220 +msgid "Site Setup and Configuration" +msgstr "Installazione e configurazione del sito" + +#: ../../include/nav.php:256 +msgid "@name, #tag, ?doc, content" +msgstr "@nome, #tag, ?guida, contenuto" + +#: ../../include/nav.php:257 +msgid "Please wait..." +msgstr "Attendere..." + +#: ../../view/theme/redbasic/php/config.php:6 msgid "Focus (Hubzilla default)" msgstr "Focus (predefinito)" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Theme settings" msgstr "Impostazioni del tema" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" -msgstr "Scegli uno schema" - -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Narrow navbar" msgstr "Barra di navigazione ristretta" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar background color" msgstr "Barra di navigazione: Colore di sfondo" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Navigation bar gradient top color" msgstr "Barra di navigazione: Gradiente superiore" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Navigation bar gradient bottom color" msgstr "Barra di navigazione: Gradiente inferiore" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Navigation active button gradient top color" msgstr "Bottone di navigazione attivo: Gradiente superiore" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Navigation active button gradient bottom color" msgstr "Bottone di navigazione attivo: Gradiente inferiore" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Navigation bar border color " msgstr "Barra di navigazione: Colore del bordo" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Navigation bar icon color " msgstr "Barra di navigazione: Colore delle icone" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Navigation bar active icon color " msgstr "Barra di navigazione: Colore dell'icona attiva" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:120 msgid "link color" msgstr "colore del link" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set font-color for banner" msgstr "Colore del font del banner" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the background color" msgstr "Colore di sfondo" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set the background image" msgstr "Immagine di sfondo" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set the background color of items" msgstr "Colore di sfondo degli oggetti" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:125 msgid "Set the background color of comments" msgstr "Colore di sfondo dei commenti" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set the border color of comments" msgstr "Colore del bordo dei commenti" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set the indent for comments" msgstr "Spostamento a destra dei commenti" -#: ../../view/theme/redbasic/php/config.php:122 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set the basic color for item icons" msgstr "Colore di base per le icone" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Set the hover color for item icons" msgstr "Colore per le icone in mouse-over" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Set font-size for the entire application" msgstr "Dimensione font per tutto il sito" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Example: 14px" msgstr "Esempio: 14px" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set font-size for posts and comments" msgstr "Dimensioni del carattere per post e commenti" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set font-color for posts and comments" msgstr "Colore del carattere per post e commenti" -#: ../../view/theme/redbasic/php/config.php:127 +#: ../../view/theme/redbasic/php/config.php:133 msgid "Set radius of corners" msgstr "Raggio degli angoli stondati" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:134 msgid "Set shadow depth of photos" msgstr "Profondità dell'ombra delle foto" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Set maximum width of content region in pixel" msgstr "Larghezza massima dell'area dei contenuti in pixel" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Leave empty for default width" msgstr "Lascia vuoto per usare il valore predefinito" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:136 msgid "Left align page content" msgstr "Allinea a sinistra il contenuto della pagina" -#: ../../view/theme/redbasic/php/config.php:131 +#: ../../view/theme/redbasic/php/config.php:137 msgid "Set minimum opacity of nav bar - to hide it" msgstr "Opacità minima della barra di navigazione - per nasconderla" -#: ../../view/theme/redbasic/php/config.php:132 +#: ../../view/theme/redbasic/php/config.php:138 msgid "Set size of conversation author photo" msgstr "Dimensione foto dell'autore della conversazione" -#: ../../view/theme/redbasic/php/config.php:133 +#: ../../view/theme/redbasic/php/config.php:139 msgid "Set size of followup author photos" msgstr "Dimensione foto dei partecipanti alla conversazione" -#: ../../boot.php:1169 +#: ../../boot.php:1194 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Cerca %1$s (%2$s)" -#: ../../boot.php:1169 +#: ../../boot.php:1194 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1487 +#: ../../boot.php:1512 #, php-format msgid "Update %s failed. See error logs." msgstr "%s: aggiornamento fallito. Controlla i log di errore." -#: ../../boot.php:1490 +#: ../../boot.php:1515 #, php-format msgid "Update Error at %s" msgstr "Errore di aggiornamento su %s" -#: ../../boot.php:1694 +#: ../../boot.php:1719 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Registrati per accedere ai servizi e alle applicazioni di Hubzilla" -#: ../../boot.php:1715 +#: ../../boot.php:1740 msgid "Login/Email" msgstr "Login/Email" -#: ../../boot.php:1716 +#: ../../boot.php:1741 msgid "Password" msgstr "Password" -#: ../../boot.php:1717 +#: ../../boot.php:1742 msgid "Remember me" msgstr "Resta connesso" -#: ../../boot.php:1720 +#: ../../boot.php:1745 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: ../../boot.php:2286 +#: ../../boot.php:2314 msgid "toggle mobile" msgstr "attiva/disattiva versione mobile" -#: ../../boot.php:2441 +#: ../../boot.php:2469 msgid "Website SSL certificate is not valid. Please correct." msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." -#: ../../boot.php:2444 +#: ../../boot.php:2472 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Errore SSL su %s" -#: ../../boot.php:2548 +#: ../../boot.php:2576 msgid "Cron/Scheduled tasks not running." msgstr "Processi cron non avviati." -#: ../../boot.php:2552 +#: ../../boot.php:2580 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron non è stato eseguito %s" diff --git a/view/it/hstrings.php b/view/it/hstrings.php index 0b7fe795b..cceeeda4e 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -72,6 +72,150 @@ App::$strings["Requested profile is not available."] = "Il profilo richiesto non App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; App::$strings["Away"] = "Assente"; App::$strings["Online"] = "Online"; +App::$strings["Invalid message"] = "Messaggio non valido"; +App::$strings["no results"] = "nessun risultato"; +App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; +App::$strings["queued"] = "in coda"; +App::$strings["posted"] = "inviato"; +App::$strings["accepted for delivery"] = "accettato per la spedizione"; +App::$strings["updated"] = "aggiornato"; +App::$strings["update ignored"] = "aggiornamento ignorato"; +App::$strings["permission denied"] = "permessi non sufficienti"; +App::$strings["recipient not found"] = "Destinatario non trovato"; +App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; +App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; +App::$strings["mail delivered"] = "messaggio recapitato"; +App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; +App::$strings["Options"] = "Opzioni"; +App::$strings["Redeliver"] = "Reinvia"; +App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; +App::$strings["Authorize application connection"] = "Autorizza la app"; +App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; +App::$strings["Please login to continue."] = "Accedi al sito per continuare."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; +App::$strings["Yes"] = "Sì"; +App::$strings["No"] = "No"; +App::$strings["Rating"] = "Valutazioni"; +App::$strings["Website:"] = "Sito web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; +App::$strings["Submit"] = "Salva"; +App::$strings["Public Hubs"] = "Hub pubblici"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; +App::$strings["Hub URL"] = "URL del hub"; +App::$strings["Access Type"] = "Tipo di accesso"; +App::$strings["Registration Policy"] = "Politica di registrazione"; +App::$strings["Stats"] = "Statistiche"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valutazioni"; +App::$strings["Rate"] = "Valuta"; +App::$strings["Location"] = "Posizione geografica"; +App::$strings["View"] = "Guarda"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; +App::$strings["Passwords do not match."] = "Le password non corrispondono."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; +App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; +App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; +App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; +App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; +App::$strings["Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +App::$strings["Terms of Service"] = "Condizioni d'Uso"; +App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; +App::$strings["Your email address"] = "Il tuo indirizzo email"; +App::$strings["Choose a password"] = "Scegli una password"; +App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; +App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; +App::$strings["Name or caption"] = "Nome o titolo"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; +App::$strings["Choose a short nickname"] = "Scegli un nome breve"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; +App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; +App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; +App::$strings["no"] = "no"; +App::$strings["yes"] = "sì"; +App::$strings["Registration"] = "Registrazione"; +App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; +App::$strings["Register"] = "Registrati"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare."; +App::$strings["Bookmark added"] = "Segnalibro aggiunto"; +App::$strings["My Bookmarks"] = "I miei segnalibri"; +App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; +App::$strings["Public access denied."] = "Accesso pubblico negato."; +App::$strings["Item not found."] = "Elemento non trovato."; +App::$strings["Photos"] = "Foto"; +App::$strings["Cancel"] = "Annulla"; +App::$strings["Invalid item."] = "Elemento non valido."; +App::$strings["Channel not found."] = "Canale non trovato."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Salva nella cartella:"; +App::$strings["- select -"] = "- scegli -"; +App::$strings["Save"] = "Salva"; +App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; +App::$strings["No such channel"] = "Canale sconosciuto"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Cerca risultati con:"; +App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; +App::$strings["Privacy group: "] = "Gruppo di canali:"; +App::$strings["Invalid connection."] = "Contatto non valido."; +App::$strings["Blocked"] = "Bloccati"; +App::$strings["Ignored"] = "Ignorati"; +App::$strings["Hidden"] = "Nascosti"; +App::$strings["Archived"] = "Archiviati"; +App::$strings["New"] = "Novità"; +App::$strings["All"] = "Tutti"; +App::$strings["New Connections"] = "Nuovi contatti"; +App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; +App::$strings["All Connections"] = "Tutti i contatti"; +App::$strings["Show all connections"] = "Mostra tutti i contatti"; +App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; +App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; +App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; +App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; +App::$strings["Pending approval"] = "In attesa di conferma"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Modifica il contatto"; +App::$strings["Delete connection"] = "Elimina il contatto"; +App::$strings["Channel address"] = "Indirizzo del canale"; +App::$strings["Network"] = "Network"; +App::$strings["Status"] = "Stato"; +App::$strings["Connected"] = "In contatto"; +App::$strings["Approve connection"] = "Approva questo contatto"; +App::$strings["Approve"] = "Approva"; +App::$strings["Ignore connection"] = "Ignora il contatto"; +App::$strings["Ignore"] = "Ignora"; +App::$strings["Recent activity"] = "Attività recenti"; +App::$strings["Connections"] = "Contatti"; +App::$strings["Search"] = "Cerca"; +App::$strings["Search your connections"] = "Cerca tra i contatti"; +App::$strings["Connections search"] = "Ricerca tra i contatti"; +App::$strings["Find"] = "Cerca"; +App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +App::$strings["Cover Photos"] = "Copertine del canale"; +App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; +App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; +App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +App::$strings["female"] = "femmina"; +App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["male"] = "maschio"; +App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["cover photo"] = "Copertina del canale"; +App::$strings["Photo not available."] = "Foto non disponibile."; +App::$strings["Upload File:"] = "Carica un file:"; +App::$strings["Select a profile:"] = "Seleziona un profilo:"; +App::$strings["Upload Cover Photo"] = "Carica una copertina"; +App::$strings["or"] = "o"; +App::$strings["skip this step"] = "salta questo passaggio"; +App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +App::$strings["Crop Image"] = "Ritaglia immagine"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; +App::$strings["Done Editing"] = "Modifica terminata"; App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; @@ -99,10 +243,11 @@ App::$strings["Your account email address must match this in order to use the we App::$strings["Website URL"] = "URL completo del sito"; App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub"; -App::$strings["Submit"] = "Salva"; +App::$strings["Basic/Minimal Social Networking"] = "Social network basilare"; +App::$strings["Standard Configuration (default)"] = "Configurazione standard (predefinita)"; +App::$strings["Professional"] = "Professionale"; App::$strings["Site settings"] = "Impostazioni del hub"; -App::$strings["Enable \$Projectname advanced features?"] = "Vuoi attivare le funzionalità avanzate di \$Projectname?"; -App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Alcune funzionalità avanzate, per quanto utili, potrebbero essere adatte solo a un pubblico tecnicamente preparato."; +App::$strings["Server Configuration/Role"] = "Configurazione del server"; App::$strings["PHP version 5.5 or greater is required."] = "E' necessario PHP versione 5.5 o superiore."; App::$strings["PHP version"] = "Versione PHP"; App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web"; @@ -161,39 +306,6 @@ App::$strings["The database configuration file \".htconfig.php\" could not be wr App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; App::$strings["

    What next

    "] = "

    I prossimi passi

    "; App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; -App::$strings["Invalid message"] = "Messaggio non valido"; -App::$strings["no results"] = "nessun risultato"; -App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; -App::$strings["queued"] = "in coda"; -App::$strings["posted"] = "inviato"; -App::$strings["accepted for delivery"] = "accettato per la spedizione"; -App::$strings["updated"] = "aggiornato"; -App::$strings["update ignored"] = "aggiornamento ignorato"; -App::$strings["permission denied"] = "permessi non sufficienti"; -App::$strings["recipient not found"] = "Destinatario non trovato"; -App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; -App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; -App::$strings["mail delivered"] = "messaggio recapitato"; -App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; -App::$strings["Options"] = "Opzioni"; -App::$strings["Redeliver"] = "Reinvia"; -App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; -App::$strings["Import selected"] = "Importa i selezionati"; -App::$strings["Webpages"] = "Pagine web"; -App::$strings["Share"] = "Condividi"; -App::$strings["View"] = "Guarda"; -App::$strings["Preview"] = "Anteprima"; -App::$strings["Actions"] = "Azioni"; -App::$strings["Page Link"] = "Link alla pagina"; -App::$strings["Page Title"] = "Titolo della pagina"; -App::$strings["Created"] = "Creato"; -App::$strings["Edited"] = "Modificato"; -App::$strings["Invalid file type."] = "Tipo di file non valido."; -App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; -App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; -App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; -App::$strings["Import complete."] = "Importazione completata."; -App::$strings["Public access denied."] = "Accesso pubblico negato."; App::$strings["%d rating"] = array( 0 => "%d valutazione", 1 => "%d valutazioni", @@ -213,7 +325,6 @@ App::$strings["Don't suggest"] = "Non fornire suggerimenti"; App::$strings["Common connections:"] = "Contatti in comune:"; App::$strings["Global Directory"] = "Elenchi pubblici globali"; App::$strings["Local Directory"] = "Elenco canali su questo hub"; -App::$strings["Find"] = "Cerca"; App::$strings["Finding:"] = "Ricerca:"; App::$strings["Channel Suggestions"] = "Canali suggeriti"; App::$strings["next page"] = "pagina successiva"; @@ -224,184 +335,6 @@ App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; App::$strings["Newest to Oldest"] = "Prima i più recenti"; App::$strings["Oldest to Newest"] = "Prima i più vecchi"; App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; -App::$strings["Profile not found."] = "Profilo non trovato."; -App::$strings["Profile deleted."] = "Profilo eliminato."; -App::$strings["Profile-"] = "Profilo-"; -App::$strings["New profile created."] = "Il nuovo profilo è stato creato."; -App::$strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; -App::$strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export."; -App::$strings["Profile Name is required."] = "Il nome del profilo è obbligatorio."; -App::$strings["Marital Status"] = "Stato sentimentale"; -App::$strings["Romantic Partner"] = "Partner affettivo"; -App::$strings["Likes"] = "Mi piace"; -App::$strings["Dislikes"] = "Non mi piace"; -App::$strings["Work/Employment"] = "Lavoro/impiego"; -App::$strings["Religion"] = "Religione"; -App::$strings["Political Views"] = "Orientamento politico"; -App::$strings["Gender"] = "Sesso"; -App::$strings["Sexual Preference"] = "Preferenze sessuali"; -App::$strings["Homepage"] = "Home page"; -App::$strings["Interests"] = "Interessi"; -App::$strings["Address"] = "Indirizzo"; -App::$strings["Location"] = "Posizione geografica"; -App::$strings["Profile updated."] = "Profilo aggiornato."; -App::$strings["Hide your connections list from viewers of this profile"] = "Nascondi la tua lista di contatti ai visitatori di questo profilo"; -App::$strings["No"] = "No"; -App::$strings["Yes"] = "Sì"; -App::$strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; -App::$strings["View this profile"] = "Guarda questo profilo"; -App::$strings["Edit visibility"] = "Cambia la visibilità"; -App::$strings["Profile Tools"] = "Gestione del profilo"; -App::$strings["Change cover photo"] = "Cambia la copertina del canale"; -App::$strings["Change profile photo"] = "Cambia la foto del profilo"; -App::$strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; -App::$strings["Clone this profile"] = "Clona questo profilo"; -App::$strings["Delete this profile"] = "Elimina questo profilo"; -App::$strings["Add profile things"] = "Aggiungi oggetti al profilo"; -App::$strings["Personal"] = "Personali"; -App::$strings["Relation"] = "Relazione"; -App::$strings["Miscellaneous"] = "Altro"; -App::$strings["Import profile from file"] = "Importa il profilo da un file"; -App::$strings["Export profile to file"] = "Esporta il profilo in un file"; -App::$strings["Your gender"] = "Sesso"; -App::$strings["Marital status"] = "Stato civile"; -App::$strings["Sexual preference"] = "Preferenze sessuali"; -App::$strings["Profile name"] = "Nome del profilo"; -App::$strings["Required"] = "Obbligatorio"; -App::$strings["This is your default profile."] = "Questo è il tuo profilo predefinito."; -App::$strings["Your full name"] = "Il tuo nome completo"; -App::$strings["Title/Description"] = "Titolo/descrizione"; -App::$strings["Street address"] = "Indirizzo (via/piazza)"; -App::$strings["Locality/City"] = "Località"; -App::$strings["Region/State"] = "Regione/stato"; -App::$strings["Postal/Zip code"] = "CAP"; -App::$strings["Country"] = "Nazione"; -App::$strings["Who (if applicable)"] = "Con chi (se possibile)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since (date)"] = "dal (data)"; -App::$strings["Tell us about yourself"] = "Raccontaci di te..."; -App::$strings["Homepage URL"] = "Indirizzo home page"; -App::$strings["Hometown"] = "Città dove vivo"; -App::$strings["Political views"] = "Orientamento politico"; -App::$strings["Religious views"] = "Orientamento religioso"; -App::$strings["Keywords used in directory listings"] = "Parole chiavi mostrate nell'elenco dei canali"; -App::$strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; -App::$strings["Musical interests"] = "Interessi musicali"; -App::$strings["Books, literature"] = "Libri, letteratura"; -App::$strings["Television"] = "Televisione"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film, danza, cultura, intrattenimento"; -App::$strings["Hobbies/Interests"] = "Hobby/interessi"; -App::$strings["Love/Romance"] = "Amore"; -App::$strings["School/Education"] = "Scuola/educazione"; -App::$strings["Contact information and social networks"] = "Contatti e social network"; -App::$strings["My other channels"] = "I miei altri canali"; -App::$strings["Profile Image"] = "Immagine del profilo"; -App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; -App::$strings["Create New"] = "Crea nuova"; -App::$strings["Edit post"] = "Modifica post"; -App::$strings["Bookmark added"] = "Segnalibro aggiunto"; -App::$strings["My Bookmarks"] = "I miei segnalibri"; -App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; -App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; -App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; -App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; -App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; -App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; -App::$strings["Photos"] = "Foto"; -App::$strings["Cancel"] = "Annulla"; -App::$strings["Invalid item."] = "Elemento non valido."; -App::$strings["Channel not found."] = "Canale non trovato."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Salva nella cartella:"; -App::$strings["- select -"] = "- scegli -"; -App::$strings["Save"] = "Salva"; -App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; -App::$strings["Posts and comments"] = "Post e commenti"; -App::$strings["Only posts"] = "Solo post"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; -App::$strings["Blocked"] = "Bloccati"; -App::$strings["Ignored"] = "Ignorati"; -App::$strings["Hidden"] = "Nascosti"; -App::$strings["Archived"] = "Archiviati"; -App::$strings["New"] = "Novità"; -App::$strings["All"] = "Tutti"; -App::$strings["New Connections"] = "Nuovi contatti"; -App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; -App::$strings["All Connections"] = "Tutti i contatti"; -App::$strings["Show all connections"] = "Mostra tutti i contatti"; -App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; -App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; -App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; -App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; -App::$strings["Pending approval"] = "In attesa di conferma"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifica il contatto"; -App::$strings["Delete connection"] = "Elimina il contatto"; -App::$strings["Channel address"] = "Indirizzo del canale"; -App::$strings["Network"] = "Network"; -App::$strings["Status"] = "Stato"; -App::$strings["Connected"] = "In contatto"; -App::$strings["Approve connection"] = "Approva questo contatto"; -App::$strings["Approve"] = "Approva"; -App::$strings["Ignore connection"] = "Ignora il contatto"; -App::$strings["Ignore"] = "Ignora"; -App::$strings["Recent activity"] = "Attività recenti"; -App::$strings["Connections"] = "Contatti"; -App::$strings["Search"] = "Cerca"; -App::$strings["Search your connections"] = "Cerca tra i contatti"; -App::$strings["Connections search"] = "Ricerca tra i contatti"; -App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -App::$strings["Cover Photos"] = "Copertine del canale"; -App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; -App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; -App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; -App::$strings["female"] = "femmina"; -App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["male"] = "maschio"; -App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["cover photo"] = "Copertina del canale"; -App::$strings["Photo not available."] = "Foto non disponibile."; -App::$strings["Upload File:"] = "Carica un file:"; -App::$strings["Select a profile:"] = "Seleziona un profilo:"; -App::$strings["Upload Cover Photo"] = "Carica una copertina"; -App::$strings["or"] = "o"; -App::$strings["skip this step"] = "salta questo passaggio"; -App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -App::$strings["Crop Image"] = "Ritaglia immagine"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; -App::$strings["Done Editing"] = "Modifica terminata"; -App::$strings["webpage"] = "pagina web"; -App::$strings["block"] = "block"; -App::$strings["layout"] = "layout"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s elemento installato"; -App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; -App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; -App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; -App::$strings["Invalid request."] = "Richiesta non valida."; -App::$strings["channel"] = "il canale"; -App::$strings["thing"] = "Oggetto"; -App::$strings["Channel unavailable."] = "Canale non trovato."; -App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; -App::$strings["photo"] = "la foto"; -App::$strings["status"] = "il messaggio di stato"; -App::$strings["event"] = "l'evento"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; -App::$strings["Action completed."] = "Comando completato."; -App::$strings["Thank you."] = "Grazie."; App::$strings["This site is not a directory server"] = "Questo non è un directory server"; App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; App::$strings["Item not found"] = "Elemento non trovato"; @@ -414,14 +347,40 @@ App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facolt App::$strings["Edit Layout"] = "Modifica il layout"; App::$strings["Page link"] = "Link alla pagina"; App::$strings["Edit Webpage"] = "Modifica la pagina web"; -App::$strings["network"] = "rete"; -App::$strings["RSS"] = "RSS"; +App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; +App::$strings["Unable to create menu."] = "Impossibile creare il menù."; +App::$strings["Menu Name"] = "Nome del menu"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; +App::$strings["Menu Title"] = "Titolo del menu"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; +App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; +App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; +App::$strings["Submit and proceed"] = "Salva e procedi"; +App::$strings["Menus"] = "Menù"; +App::$strings["Drop"] = "Elimina"; +App::$strings["Created"] = "Creato"; +App::$strings["Edited"] = "Modificato"; +App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; +App::$strings["Delete this menu"] = "Elimina questo menù"; +App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; +App::$strings["Edit this menu"] = "Modifica questo menù"; +App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; +App::$strings["Menu not found."] = "Menù non trovato."; +App::$strings["Edit Menu"] = "Modifica menù"; +App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; +App::$strings["Menu name"] = "Nome del menù"; +App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; +App::$strings["Menu title"] = "Titolo del menù"; +App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; +App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; +App::$strings["Not found."] = "Non trovato."; App::$strings["App installed."] = "App installata"; App::$strings["Malformed app."] = "L'app contiene errori"; App::$strings["Embed code"] = "Inserisci il codice"; App::$strings["Edit App"] = "Modifica app"; App::$strings["Create App"] = "Crea una app"; App::$strings["Name of app"] = "Nome app"; +App::$strings["Required"] = "Obbligatorio"; App::$strings["Location (URL) of app"] = "Indirizzo (URL) della app"; App::$strings["Description"] = "Descrizione"; App::$strings["Photo icon URL"] = "URL icona"; @@ -446,7 +405,6 @@ App::$strings["\$Projectname"] = "\$Projectname"; App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; App::$strings["Visible to:"] = "Visibile a:"; -App::$strings["Item not found."] = "Elemento non trovato."; App::$strings["Permission Denied."] = "Permesso negato."; App::$strings["File not found."] = "File non trovato."; App::$strings["Edit file permissions"] = "Modifica i permessi del file"; @@ -459,377 +417,57 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incol App::$strings["Share this file"] = "Condividi questo file"; App::$strings["Show URL to this file"] = "Mostra l'URL del file"; App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; -App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; -App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; -App::$strings["Connection updated."] = "Contatto aggiornato."; -App::$strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; -App::$strings["is now connected to"] = "ha come nuovo contatto"; -App::$strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; -App::$strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; -App::$strings["Connection has been removed."] = "Il contatto è stato rimosso."; -App::$strings["View Profile"] = "Profilo"; -App::$strings["View %s's profile"] = "Guarda il profilo di %s"; -App::$strings["Refresh Permissions"] = "Modifica i permessi"; -App::$strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati"; -App::$strings["Recent Activity"] = "Attività recenti"; -App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; -App::$strings["Unblock"] = "Sblocca"; -App::$strings["Block"] = "Blocca"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; -App::$strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!"; -App::$strings["Unignore"] = "Non ignorare"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; -App::$strings["This connection is ignored!"] = "Questa connessione è tra quelle ignorate!"; -App::$strings["Unarchive"] = "Non archiviare"; -App::$strings["Archive"] = "Archivia"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; -App::$strings["This connection is archived!"] = "Questa connessione è tra quelle archiviate!"; -App::$strings["Unhide"] = "Non nascondere"; -App::$strings["Hide"] = "Nascondi"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"; -App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!"; -App::$strings["Delete this connection"] = "Elimina questo contatto"; -App::$strings["Me"] = "Me"; -App::$strings["Family"] = "Famiglia"; +App::$strings["Name is required"] = "Il nome è obbligatorio"; +App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; +App::$strings["Update"] = "Aggiorna"; +App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token"; +App::$strings["Name and Password are required."] = "Nome e password sono obbligatori."; +App::$strings["Token saved."] = "Token salvato."; +App::$strings["Not valid email."] = "Email non valida."; +App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; +App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; +App::$strings["Password verification failed."] = "Verifica della password fallita."; +App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; +App::$strings["Password changed."] = "Password cambiata."; +App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; App::$strings["Friends"] = "Amici"; -App::$strings["Acquaintances"] = "Conoscenti"; -App::$strings["Approve this connection"] = "Approva questo contatto"; -App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; -App::$strings["Set Affinity"] = "Scegli l'affinità"; -App::$strings["Set Profile"] = "Scegli il profilo da mostrare"; -App::$strings["Set Affinity & Profile"] = "Affinità e profilo"; -App::$strings["none"] = "--"; -App::$strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti"; -App::$strings["Connection: %s"] = "Contatto: %s"; -App::$strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi"; -App::$strings["Connection requests will be approved without your interaction"] = "Le richieste di entrare in contatto saranno approvate in automatico"; -App::$strings["This connection's primary address is"] = "Indirizzo primario di questo canale"; -App::$strings["Available locations:"] = "Indirizzi disponibili"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi."; -App::$strings["Connection Tools"] = "Gestione dei contatti"; -App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; -App::$strings["Rating"] = "Valutazioni"; -App::$strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione"; -App::$strings["Optionally explain your rating"] = "Commento facoltativo"; -App::$strings["Custom Filter"] = "Filtro personalizzato"; -App::$strings["Only import posts with this text"] = "Importa solo i post che contengono queste parole chiave"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto"; -App::$strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave"; -App::$strings["This information is public!"] = "Questa informazione è pubblica!"; -App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; -App::$strings["inherited"] = "derivato"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; +App::$strings["Settings updated."] = "Impostazioni aggiornate."; +App::$strings["Add application"] = "Aggiungi una app"; +App::$strings["Name of application"] = "Nome dell'applicazione"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Redirect"] = "Redirect"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"; +App::$strings["Icon url"] = "Url icona"; +App::$strings["Optional"] = "Facoltativo"; +App::$strings["Application not found."] = "Applicazione non trovata."; +App::$strings["Connected Apps"] = "App connesse"; +App::$strings["Client key starts with"] = "La client key inizia con"; +App::$strings["No name"] = "Nessun nome"; +App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; +App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; +App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; +App::$strings["Account Settings"] = "Il tuo account"; +App::$strings["Current Password"] = "Password attuale"; +App::$strings["Enter New Password"] = "Nuova password"; +App::$strings["Confirm New Password"] = "Conferma la nuova password"; +App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; +App::$strings["Email Address:"] = "Indirizzo email:"; +App::$strings["Remove Account"] = "Elimina l'account"; +App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; +App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; +App::$strings["Login Name"] = "Nome utente"; +App::$strings["Login Password"] = "Password"; +App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)"; App::$strings["Their Settings"] = "Permessi concessi a te"; App::$strings["My Settings"] = "Permessi che concedo"; +App::$strings["inherited"] = "derivato"; App::$strings["Individual Permissions"] = "Permessi individuali"; App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; -App::$strings["Last update:"] = "Ultimo aggiornamento:"; -App::$strings["Privacy group created."] = "Gruppo di canali creato."; -App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; -App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; -App::$strings["Privacy group updated."] = "Gruppo di canali aggiornato."; -App::$strings["Create a group of channels."] = "Crea un gruppo di canali."; -App::$strings["Privacy group name: "] = "Nome del gruppo di canali:"; -App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo"; -App::$strings["Privacy group removed."] = "Gruppo di canali rimosso."; -App::$strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali."; -App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; -App::$strings["Members"] = "Membri"; -App::$strings["All Connected Channels"] = "Tutti i canali connessi"; -App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; -App::$strings["Unable to create menu."] = "Impossibile creare il menù."; -App::$strings["Menu Name"] = "Nome del menu"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; -App::$strings["Menu Title"] = "Titolo del menu"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; -App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; -App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; -App::$strings["Submit and proceed"] = "Salva e procedi"; -App::$strings["Menus"] = "Menù"; -App::$strings["Drop"] = "Elimina"; -App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; -App::$strings["Delete this menu"] = "Elimina questo menù"; -App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; -App::$strings["Edit this menu"] = "Modifica questo menù"; -App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; -App::$strings["Menu not found."] = "Menù non trovato."; -App::$strings["Edit Menu"] = "Modifica menù"; -App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; -App::$strings["Menu name"] = "Nome del menù"; -App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; -App::$strings["Menu title"] = "Titolo del menù"; -App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; -App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; -App::$strings["Not found."] = "Non trovato."; -App::$strings["Item is not editable"] = "L'elemento non è modificabile"; -App::$strings["Nothing to import."] = "Non c'è niente da importare."; -App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; -App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; -App::$strings["Import completed"] = "Importazione completata"; -App::$strings["Import Items"] = "Importa i contenuti"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; -App::$strings["File to Upload"] = "File da caricare"; -App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; -App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; -App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; -App::$strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -App::$strings["Send invitations"] = "Spedisci inviti"; -App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -App::$strings["Your message:"] = "Il tuo messaggio:"; -App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; -App::$strings["or visit"] = "oppure visita"; -App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; -App::$strings["Location not found."] = "Indirizzo non trovato."; -App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; -App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; -App::$strings["No locations found."] = "Nessun indirizzo trovato."; -App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; -App::$strings["Primary"] = "Primario"; -App::$strings["Sync Now"] = "Sincronizza ora"; -App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; -App::$strings["Hub not found."] = "Hub non trovato."; -App::$strings["Room not found"] = "Chat non trovata"; -App::$strings["Leave Room"] = "Lascia la chat"; -App::$strings["Delete Room"] = "Elimina questa chat"; -App::$strings["I am away right now"] = "Non sono presente"; -App::$strings["I am online"] = "Sono online"; -App::$strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri"; -App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -App::$strings["Encrypt text"] = "Cifratura del messaggio"; -App::$strings["Feature disabled."] = "Funzionalità disattivata."; -App::$strings["New Chatroom"] = "Nuova chat"; -App::$strings["Chatroom name"] = "Nome chat"; -App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; -App::$strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; -App::$strings["No chatrooms available"] = "Nessuna chat disponibile"; -App::$strings["Expiration"] = "Scadenza"; -App::$strings["min"] = "min"; -App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; -App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; -App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; -App::$strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; -App::$strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; -App::$strings["Event not found."] = "Evento non trovato."; -App::$strings["Edit event title"] = "Modifica il titolo dell'evento"; -App::$strings["Event title"] = "Titolo dell'evento"; -App::$strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; -App::$strings["Edit Category"] = "Modifica la categoria"; -App::$strings["Category"] = "Categoria"; -App::$strings["Edit start date and time"] = "Modifica data/ora di inizio"; -App::$strings["Start date and time"] = "Data e ora di inizio"; -App::$strings["Finish date and time are not known or not relevant"] = "La data e l'ora di fine non sono necessarie"; -App::$strings["Edit finish date and time"] = "Modifica data/ora di fine"; -App::$strings["Finish date and time"] = "Data e ora di fine"; -App::$strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono online ma con un certo fuso orario."; -App::$strings["Edit Description"] = "Modifica la descrizione"; -App::$strings["Edit Location"] = "Modifica il luogo"; -App::$strings["Share this event"] = "Condividi questo evento"; -App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; -App::$strings["Advanced Options"] = "Opzioni avanzate"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Modifica l'evento"; -App::$strings["Delete event"] = "Elimina l'evento"; -App::$strings["Link to Source"] = "Link al sito d'origine"; -App::$strings["calendar"] = "calendario"; -App::$strings["Edit Event"] = "Modifica l'evento"; -App::$strings["Create Event"] = "Crea un evento"; -App::$strings["Previous"] = "Precendente"; -App::$strings["Export"] = "Esporta"; -App::$strings["Month"] = "Mese"; -App::$strings["Week"] = "Settimana"; -App::$strings["Day"] = "Giorno"; -App::$strings["Today"] = "Oggi"; -App::$strings["Event removed"] = "Evento eliminato"; -App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; -App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; -App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; -App::$strings["Messages"] = "Messaggi"; -App::$strings["Message recalled."] = "Messaggio revocato."; -App::$strings["Conversation removed."] = "Conversazione rimossa."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; -App::$strings["Send Private Message"] = "Invia un messaggio privato"; -App::$strings["To:"] = "A:"; -App::$strings["Subject:"] = "Oggetto:"; -App::$strings["Attach file"] = "Allega file"; -App::$strings["Send"] = "Invia"; -App::$strings["Set expiration date"] = "Data di scadenza"; -App::$strings["Delete message"] = "Elimina il messaggio"; -App::$strings["Delivery report"] = "Rapporto di trasmissione"; -App::$strings["Recall message"] = "Revoca il messaggio"; -App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; -App::$strings["Delete Conversation"] = "Elimina la conversazione"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; -App::$strings["Send Reply"] = "Invia la risposta"; -App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; -App::$strings["No valid account found."] = "Nessun account valido trovato."; -App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; -App::$strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."; -App::$strings["Password Reset"] = "Reimposta la password"; -App::$strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; -App::$strings["Your new password is"] = "La tua nuova password è"; -App::$strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -App::$strings["click here to login"] = "clicca qui per accedere"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; -App::$strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; -App::$strings["Forgot your Password?"] = "Hai dimenticato la password?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; -App::$strings["Email Address"] = "Indirizzo email"; -App::$strings["Reset"] = "Reimposta"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; -App::$strings["Mood"] = "Umore"; -App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -App::$strings["Create a new channel"] = "Crea un nuovo canale"; -App::$strings["Channel Manager"] = "Gestione canali"; -App::$strings["Current Channel"] = "Canale attuale"; -App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; -App::$strings["Default Channel"] = "Canale predefinito"; -App::$strings["Make Default"] = "Rendi predefinito"; -App::$strings["%d new messages"] = "%d nuovi messaggi"; -App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; -App::$strings["Delegated Channel"] = "Canale delegato"; -App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; -App::$strings["System Notifications"] = "Notifiche di sistema"; -App::$strings["Profile Match"] = "Profili corrispondenti"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; -App::$strings["is interested in:"] = "interessi personali:"; -App::$strings["No matches"] = "Nessun risultato"; -App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; -App::$strings["Profile Photos"] = "Foto del profilo"; -App::$strings["Album not found."] = "Album non trovato."; -App::$strings["Delete Album"] = "Elimina album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file "; -App::$strings["Delete Photo"] = "Elimina foto"; -App::$strings["No photos selected"] = "Nessuna foto selezionata"; -App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; -App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; -App::$strings["Upload Photos"] = "Carica foto"; -App::$strings["Enter an album name"] = "Scegli il nome dell'album"; -App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; -App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; -App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; -App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; -App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; -App::$strings["Contact Photos"] = "Foto dei contatti"; -App::$strings["Show Newest First"] = "Prima i più recenti"; -App::$strings["Show Oldest First"] = "Prima i più vecchi"; -App::$strings["View Photo"] = "Guarda la foto"; -App::$strings["Edit Album"] = "Modifica album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; -App::$strings["Photo not available"] = "Foto non disponibile"; -App::$strings["Use as profile photo"] = "Usa come foto del profilo"; -App::$strings["Use as cover photo"] = "Usa come copertina del canale"; -App::$strings["Private Photo"] = "Foto privata"; -App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; -App::$strings["Remove"] = "Rimuovi"; -App::$strings["Edit photo"] = "Modifica la foto"; -App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; -App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; -App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; -App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; -App::$strings["Caption"] = "Didascalia"; -App::$strings["Add a Tag"] = "Aggiungi tag"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; -App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; -App::$strings["Please wait"] = "Attendere"; -App::$strings["This is you"] = "Questo sei tu"; -App::$strings["Comment"] = "Commento"; -App::$strings["__ctx:title__ Likes"] = "Mi piace"; -App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; -App::$strings["__ctx:title__ Agree"] = "D'accordo"; -App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; -App::$strings["__ctx:title__ Abstain"] = "Astenuti"; -App::$strings["__ctx:title__ Attending"] = "Partecipano"; -App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; -App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; -App::$strings["View all"] = "Vedi tutto"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); -App::$strings["Photo Tools"] = "Gestione foto"; -App::$strings["In This Photo:"] = "In questa foto:"; -App::$strings["Map"] = "Mappa"; -App::$strings["__ctx:noun__ Likes"] = "Mi piace"; -App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; -App::$strings["Close"] = "Chiudi"; -App::$strings["View Album"] = "Guarda l'album"; -App::$strings["Recent Photos"] = "Foto recenti"; -App::$strings["Name is required"] = "Il nome è obbligatorio"; -App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; -App::$strings["Update"] = "Aggiorna"; -App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token"; -App::$strings["Name and Password are required."] = "Nome e password sono obbligatori."; -App::$strings["Token saved."] = "Token salvato."; -App::$strings["Not valid email."] = "Email non valida."; -App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; -App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; -App::$strings["Password verification failed."] = "Verifica della password fallita."; -App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; -App::$strings["Password changed."] = "Password cambiata."; -App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; -App::$strings["Settings updated."] = "Impostazioni aggiornate."; -App::$strings["Add application"] = "Aggiungi una app"; -App::$strings["Name of application"] = "Nome dell'applicazione"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Redirect"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"; -App::$strings["Icon url"] = "Url icona"; -App::$strings["Optional"] = "Facoltativo"; -App::$strings["Application not found."] = "Applicazione non trovata."; -App::$strings["Connected Apps"] = "App connesse"; -App::$strings["Client key starts with"] = "La client key inizia con"; -App::$strings["No name"] = "Nessun nome"; -App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; -App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; -App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; -App::$strings["Account Settings"] = "Il tuo account"; -App::$strings["Current Password"] = "Password attuale"; -App::$strings["Enter New Password"] = "Nuova password"; -App::$strings["Confirm New Password"] = "Conferma la nuova password"; -App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; -App::$strings["Email Address:"] = "Indirizzo email:"; -App::$strings["Remove Account"] = "Elimina l'account"; -App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; -App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; -App::$strings["Login Name"] = "Nome utente"; -App::$strings["Login Password"] = "Password"; -App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)"; App::$strings["Off"] = "Off"; App::$strings["On"] = "On"; App::$strings["Additional Features"] = "Funzionalità opzionali"; @@ -842,6 +480,7 @@ App::$strings["Theme Settings"] = "Impostazioni del tema"; App::$strings["Custom Theme Settings"] = "Personalizzazione del tema"; App::$strings["Content Settings"] = "Impostazioni dei contenuti"; App::$strings["Display Theme:"] = "Tema per schermi medio grandi:"; +App::$strings["Select scheme"] = "Scegli uno schema"; App::$strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; App::$strings["Preload images before rendering the page"] = "Carica le immagini prima del rendering della pagina"; App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo"; @@ -947,6 +586,198 @@ App::$strings["Remove Channel"] = "Elimina questo canale"; App::$strings["Remove this channel."] = "Elimina questo canale."; App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; App::$strings["Start calendar week on monday"] = "La settimana inizia il lunedì"; +App::$strings["network"] = "rete"; +App::$strings["RSS"] = "RSS"; +App::$strings["Privacy group created."] = "Gruppo di canali creato."; +App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; +App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; +App::$strings["Privacy group updated."] = "Gruppo di canali aggiornato."; +App::$strings["Create a group of channels."] = "Crea un gruppo di canali."; +App::$strings["Privacy group name: "] = "Nome del gruppo di canali:"; +App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo"; +App::$strings["Privacy group removed."] = "Gruppo di canali rimosso."; +App::$strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali."; +App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; +App::$strings["Members"] = "Membri"; +App::$strings["All Connected Channels"] = "Tutti i canali connessi"; +App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; +App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; +App::$strings["Profile Photos"] = "Foto del profilo"; +App::$strings["Album not found."] = "Album non trovato."; +App::$strings["Delete Album"] = "Elimina album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file "; +App::$strings["Delete Photo"] = "Elimina foto"; +App::$strings["No photos selected"] = "Nessuna foto selezionata"; +App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; +App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; +App::$strings["Upload Photos"] = "Carica foto"; +App::$strings["Enter an album name"] = "Scegli il nome dell'album"; +App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; +App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; +App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; +App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; +App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; +App::$strings["Contact Photos"] = "Foto dei contatti"; +App::$strings["Show Newest First"] = "Prima i più recenti"; +App::$strings["Show Oldest First"] = "Prima i più vecchi"; +App::$strings["View Photo"] = "Guarda la foto"; +App::$strings["Edit Album"] = "Modifica album"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; +App::$strings["Photo not available"] = "Foto non disponibile"; +App::$strings["Use as profile photo"] = "Usa come foto del profilo"; +App::$strings["Use as cover photo"] = "Usa come copertina del canale"; +App::$strings["Private Photo"] = "Foto privata"; +App::$strings["Previous"] = "Precendente"; +App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; +App::$strings["Remove"] = "Rimuovi"; +App::$strings["Edit photo"] = "Modifica la foto"; +App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; +App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; +App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; +App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; +App::$strings["Caption"] = "Didascalia"; +App::$strings["Add a Tag"] = "Aggiungi tag"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; +App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; +App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; +App::$strings["Share"] = "Condividi"; +App::$strings["Please wait"] = "Attendere"; +App::$strings["This is you"] = "Questo sei tu"; +App::$strings["Comment"] = "Commento"; +App::$strings["Preview"] = "Anteprima"; +App::$strings["__ctx:title__ Likes"] = "Mi piace"; +App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; +App::$strings["__ctx:title__ Agree"] = "D'accordo"; +App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; +App::$strings["__ctx:title__ Abstain"] = "Astenuti"; +App::$strings["__ctx:title__ Attending"] = "Partecipano"; +App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; +App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; +App::$strings["View all"] = "Vedi tutto"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +App::$strings["Photo Tools"] = "Gestione foto"; +App::$strings["In This Photo:"] = "In questa foto:"; +App::$strings["Map"] = "Mappa"; +App::$strings["__ctx:noun__ Likes"] = "Mi piace"; +App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; +App::$strings["Close"] = "Chiudi"; +App::$strings["View Album"] = "Guarda l'album"; +App::$strings["Recent Photos"] = "Foto recenti"; +App::$strings["webpage"] = "pagina web"; +App::$strings["block"] = "block"; +App::$strings["layout"] = "layout"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s elemento installato"; +App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; +App::$strings["Nothing to import."] = "Non c'è niente da importare."; +App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; +App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; +App::$strings["Import completed"] = "Importazione completata"; +App::$strings["Import Items"] = "Importa i contenuti"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; +App::$strings["File to Upload"] = "File da caricare"; +App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; +App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; +App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; +App::$strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +App::$strings["Send invitations"] = "Spedisci inviti"; +App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +App::$strings["Your message:"] = "Il tuo messaggio:"; +App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; +App::$strings["or visit"] = "oppure visita"; +App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; +App::$strings["Location not found."] = "Indirizzo non trovato."; +App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; +App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; +App::$strings["No locations found."] = "Nessun indirizzo trovato."; +App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; +App::$strings["Address"] = "Indirizzo"; +App::$strings["Primary"] = "Primario"; +App::$strings["Sync Now"] = "Sincronizza ora"; +App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; +App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; +App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; +App::$strings["Invalid request."] = "Richiesta non valida."; +App::$strings["channel"] = "il canale"; +App::$strings["thing"] = "Oggetto"; +App::$strings["Channel unavailable."] = "Canale non trovato."; +App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; +App::$strings["photo"] = "la foto"; +App::$strings["status"] = "il messaggio di stato"; +App::$strings["event"] = "l'evento"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; +App::$strings["Action completed."] = "Comando completato."; +App::$strings["Thank you."] = "Grazie."; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +App::$strings["Create a new channel"] = "Crea un nuovo canale"; +App::$strings["Create New"] = "Crea nuova"; +App::$strings["Channel Manager"] = "Gestione canali"; +App::$strings["Current Channel"] = "Canale attuale"; +App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; +App::$strings["Default Channel"] = "Canale predefinito"; +App::$strings["Make Default"] = "Rendi predefinito"; +App::$strings["%d new messages"] = "%d nuovi messaggi"; +App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; +App::$strings["Delegated Channel"] = "Canale delegato"; +App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; +App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; +App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; +App::$strings["Menu Item Permissions"] = "Permessi del menu"; +App::$strings["Link Name"] = "Nome link"; +App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; +App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; +App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; +App::$strings["Order in list"] = "Ordine dell'elenco"; +App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; +App::$strings["Submit and finish"] = "Salva e termina"; +App::$strings["Submit and continue"] = "Salva e continua"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Destinazione link"; +App::$strings["Edit menu"] = "Modifica il menù"; +App::$strings["Edit element"] = "Modifica l'elemento"; +App::$strings["Drop element"] = "Elimina l'elemento"; +App::$strings["New element"] = "Nuovo elemento"; +App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; +App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; +App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; +App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; +App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; +App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; +App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; +App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; +App::$strings["Link text"] = "Testo del link"; App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; App::$strings["# Accounts"] = "# account"; App::$strings["# blocked accounts"] = "# account bloccati"; @@ -976,7 +807,6 @@ App::$strings["My site has paid access only"] = "È un servizio a pagamento"; App::$strings["My site has free access only"] = "È un servizio gratuito"; App::$strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; App::$strings["Site"] = "Sito"; -App::$strings["Registration"] = "Registrazione"; App::$strings["File upload"] = "Caricamento file"; App::$strings["Policies"] = "Politiche"; App::$strings["Advanced"] = "Avanzate"; @@ -1098,6 +928,8 @@ App::$strings["Request date"] = "Data richiesta"; App::$strings["Email"] = "Email"; App::$strings["No registrations."] = "Nessuna registrazione."; App::$strings["Deny"] = "Nega"; +App::$strings["Block"] = "Blocca"; +App::$strings["Unblock"] = "Sblocca"; App::$strings["All Channels"] = "Tutti i canali"; App::$strings["Register date"] = "Data registrazione"; App::$strings["Last login"] = "Ultimo accesso"; @@ -1144,6 +976,7 @@ App::$strings["Maintainer: "] = "Gestore:"; App::$strings["Minimum project version: "] = "Minima versione hubzilla"; App::$strings["Maximum project version: "] = "Massima versione hubzilla"; App::$strings["Minimum PHP version: "] = "Minima versione PHP:"; +App::$strings["Compatible Server Roles: "] = "Ruoli compatibili per questo server"; App::$strings["Requires: "] = "Necessita di:"; App::$strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione"; App::$strings["Enter the public git repository URL of the plugin repo."] = "Inserisci lo URL del repository git dei plugin."; @@ -1186,13 +1019,162 @@ App::$strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base) App::$strings["All available fields"] = "Tutti i campi disponibili"; App::$strings["Custom Fields"] = "Campi personalizzati"; App::$strings["Create Custom Field"] = "Aggiungi campo personalizzato"; -App::$strings["Name or caption"] = "Nome o titolo"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; -App::$strings["Choose a short nickname"] = "Scegli un nome breve"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; -App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; -App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; +App::$strings["No valid account found."] = "Nessun account valido trovato."; +App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; +App::$strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."; +App::$strings["Password Reset"] = "Reimposta la password"; +App::$strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; +App::$strings["Your new password is"] = "La tua nuova password è"; +App::$strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +App::$strings["click here to login"] = "clicca qui per accedere"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; +App::$strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; +App::$strings["Forgot your Password?"] = "Hai dimenticato la password?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; +App::$strings["Email Address"] = "Indirizzo email"; +App::$strings["Reset"] = "Reimposta"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; +App::$strings["Mood"] = "Umore"; +App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; +App::$strings["Profile not found."] = "Profilo non trovato."; +App::$strings["Profile deleted."] = "Profilo eliminato."; +App::$strings["Profile-"] = "Profilo-"; +App::$strings["New profile created."] = "Il nuovo profilo è stato creato."; +App::$strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; +App::$strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export."; +App::$strings["Profile Name is required."] = "Il nome del profilo è obbligatorio."; +App::$strings["Marital Status"] = "Stato sentimentale"; +App::$strings["Romantic Partner"] = "Partner affettivo"; +App::$strings["Likes"] = "Mi piace"; +App::$strings["Dislikes"] = "Non mi piace"; +App::$strings["Work/Employment"] = "Lavoro/impiego"; +App::$strings["Religion"] = "Religione"; +App::$strings["Political Views"] = "Orientamento politico"; +App::$strings["Gender"] = "Sesso"; +App::$strings["Sexual Preference"] = "Preferenze sessuali"; +App::$strings["Homepage"] = "Home page"; +App::$strings["Interests"] = "Interessi"; +App::$strings["Profile updated."] = "Profilo aggiornato."; +App::$strings["Hide your connections list from viewers of this profile"] = "Nascondi la tua lista di contatti ai visitatori di questo profilo"; +App::$strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; +App::$strings["View this profile"] = "Guarda questo profilo"; +App::$strings["Edit visibility"] = "Cambia la visibilità"; +App::$strings["Profile Tools"] = "Gestione del profilo"; +App::$strings["Change cover photo"] = "Cambia la copertina del canale"; +App::$strings["Change profile photo"] = "Cambia la foto del profilo"; +App::$strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; +App::$strings["Clone this profile"] = "Clona questo profilo"; +App::$strings["Delete this profile"] = "Elimina questo profilo"; +App::$strings["Add profile things"] = "Aggiungi oggetti al profilo"; +App::$strings["Personal"] = "Personali"; +App::$strings["Relation"] = "Relazione"; +App::$strings["Miscellaneous"] = "Altro"; +App::$strings["Import profile from file"] = "Importa il profilo da un file"; +App::$strings["Export profile to file"] = "Esporta il profilo in un file"; +App::$strings["Your gender"] = "Sesso"; +App::$strings["Marital status"] = "Stato civile"; +App::$strings["Sexual preference"] = "Preferenze sessuali"; +App::$strings["Profile name"] = "Nome del profilo"; +App::$strings["This is your default profile."] = "Questo è il tuo profilo predefinito."; +App::$strings["Your full name"] = "Il tuo nome completo"; +App::$strings["Title/Description"] = "Titolo/descrizione"; +App::$strings["Street address"] = "Indirizzo (via/piazza)"; +App::$strings["Locality/City"] = "Località"; +App::$strings["Region/State"] = "Regione/stato"; +App::$strings["Postal/Zip code"] = "CAP"; +App::$strings["Country"] = "Nazione"; +App::$strings["Who (if applicable)"] = "Con chi (se possibile)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; +App::$strings["Since (date)"] = "dal (data)"; +App::$strings["Tell us about yourself"] = "Raccontaci di te..."; +App::$strings["Homepage URL"] = "Indirizzo home page"; +App::$strings["Hometown"] = "Città dove vivo"; +App::$strings["Political views"] = "Orientamento politico"; +App::$strings["Religious views"] = "Orientamento religioso"; +App::$strings["Keywords used in directory listings"] = "Parole chiavi mostrate nell'elenco dei canali"; +App::$strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; +App::$strings["Musical interests"] = "Interessi musicali"; +App::$strings["Books, literature"] = "Libri, letteratura"; +App::$strings["Television"] = "Televisione"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film, danza, cultura, intrattenimento"; +App::$strings["Hobbies/Interests"] = "Hobby/interessi"; +App::$strings["Love/Romance"] = "Amore"; +App::$strings["School/Education"] = "Scuola/educazione"; +App::$strings["Contact information and social networks"] = "Contatti e social network"; +App::$strings["My other channels"] = "I miei altri canali"; +App::$strings["Profile Image"] = "Immagine del profilo"; +App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; +App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; +App::$strings["System Notifications"] = "Notifiche di sistema"; +App::$strings["Profile Match"] = "Profili corrispondenti"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; +App::$strings["is interested in:"] = "interessi personali:"; +App::$strings["No matches"] = "Nessun risultato"; +App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; +App::$strings["Import selected"] = "Importa i selezionati"; +App::$strings["Webpages"] = "Pagine web"; +App::$strings["Actions"] = "Azioni"; +App::$strings["Page Link"] = "Link alla pagina"; +App::$strings["Page Title"] = "Titolo della pagina"; +App::$strings["Invalid file type."] = "Tipo di file non valido."; +App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; +App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; +App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; +App::$strings["Import complete."] = "Importazione completata."; +App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; +App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; +App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; +App::$strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; +App::$strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; +App::$strings["Event not found."] = "Evento non trovato."; +App::$strings["Edit event title"] = "Modifica il titolo dell'evento"; +App::$strings["Event title"] = "Titolo dell'evento"; +App::$strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; +App::$strings["Edit Category"] = "Modifica la categoria"; +App::$strings["Category"] = "Categoria"; +App::$strings["Edit start date and time"] = "Modifica data/ora di inizio"; +App::$strings["Start date and time"] = "Data e ora di inizio"; +App::$strings["Finish date and time are not known or not relevant"] = "La data e l'ora di fine non sono necessarie"; +App::$strings["Edit finish date and time"] = "Modifica data/ora di fine"; +App::$strings["Finish date and time"] = "Data e ora di fine"; +App::$strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono online ma con un certo fuso orario."; +App::$strings["Edit Description"] = "Modifica la descrizione"; +App::$strings["Edit Location"] = "Modifica il luogo"; +App::$strings["Share this event"] = "Condividi questo evento"; +App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; +App::$strings["Advanced Options"] = "Opzioni avanzate"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Edit event"] = "Modifica l'evento"; +App::$strings["Delete event"] = "Elimina l'evento"; +App::$strings["Link to Source"] = "Link al sito d'origine"; +App::$strings["calendar"] = "calendario"; +App::$strings["Edit Event"] = "Modifica l'evento"; +App::$strings["Create Event"] = "Crea un evento"; +App::$strings["Export"] = "Esporta"; +App::$strings["Month"] = "Mese"; +App::$strings["Week"] = "Settimana"; +App::$strings["Day"] = "Giorno"; +App::$strings["Today"] = "Oggi"; +App::$strings["Event removed"] = "Evento eliminato"; +App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; +App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; +App::$strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; +App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; +App::$strings["Import completed."] = "L'importazione è terminata con successo."; +App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; +App::$strings["Import Channel"] = "Importa un canale"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."; +App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; +App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; +App::$strings["Your old login password"] = "La password per il vecchio hub"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."; +App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; App::$strings["Create Channel"] = "Crea un canale"; App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati."; App::$strings["or import an existing channel from another location."] = "oppure importa un canale esistente da un altro server/hub."; @@ -1221,24 +1203,10 @@ App::$strings["Visible To"] = "Visibile a"; App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; App::$strings["Configuration Editor"] = "Editor di configurazione"; App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."; -App::$strings["Not found"] = "Non trovato"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Sandbox"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\""; -App::$strings["Revision Comparison"] = "Confronto tra revisioni"; -App::$strings["Revert"] = "Ripristina"; -App::$strings["Enter the name of your new wiki:"] = "Nome della tua nuova pagina wiki:"; -App::$strings["Enter the name of the new page:"] = "Nome della tua nuova pagina:"; -App::$strings["Enter the new name:"] = "Nuovo nome:"; -App::$strings["Embed image from photo albums"] = "Inserisci un'immagine dall'album foto"; -App::$strings["Embed an image from your albums"] = "Inserisci un'immagine dai tuoi album"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Scegli le immagini da inserire"; -App::$strings["Choose an album"] = "Scegli un album"; -App::$strings["Choose a different album..."] = "Scegli un altro album..."; -App::$strings["Error getting album list"] = "Errore nell'ottenere l'elenco degli album"; -App::$strings["Error getting photo link"] = "Errore nell'ottenere il link alla foto"; -App::$strings["Error getting album"] = "Errore nell'ottenere l'album"; +App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; +App::$strings["Posts and comments"] = "Post e commenti"; +App::$strings["Only posts"] = "Solo post"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; App::$strings["Version %s"] = "Versione %s"; App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; @@ -1258,15 +1226,10 @@ App::$strings["Layouts"] = "Layout"; App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; App::$strings["Layout Description"] = "Descrizione del layout"; App::$strings["Download PDL file"] = "Scarica il file PDL"; -App::$strings["Public Hubs"] = "Hub pubblici"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; -App::$strings["Hub URL"] = "URL del hub"; -App::$strings["Access Type"] = "Tipo di accesso"; -App::$strings["Registration Policy"] = "Politica di registrazione"; -App::$strings["Stats"] = "Statistiche"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valutazioni"; -App::$strings["Rate"] = "Valuta"; +App::$strings["No ratings"] = "Nessuna valutazione"; +App::$strings["Rating: "] = "Valutazione:"; +App::$strings["Website: "] = "Sito web:"; +App::$strings["Description: "] = "Descrizione:"; App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."; App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; App::$strings["Permissions denied."] = "Permesso negato."; @@ -1274,61 +1237,90 @@ App::$strings["Import"] = "Importa"; App::$strings["No channel."] = "Nessun canale."; App::$strings["Common connections"] = "Contatti in comune"; App::$strings["No connections in common."] = "Nessun contatto in comune."; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; -App::$strings["Passwords do not match."] = "Le password non corrispondono."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; -App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; -App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; -App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; -App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; -App::$strings["Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -App::$strings["Terms of Service"] = "Condizioni d'Uso"; -App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; -App::$strings["Your email address"] = "Il tuo indirizzo email"; -App::$strings["Choose a password"] = "Scegli una password"; -App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; -App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; -App::$strings["no"] = "no"; -App::$strings["yes"] = "sì"; -App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; -App::$strings["Register"] = "Registrati"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se ti sarà mostrata la pagina di login, segui le istruzioni sull'email per continuare."; -App::$strings["No ratings"] = "Nessuna valutazione"; -App::$strings["Rating: "] = "Valutazione:"; -App::$strings["Website: "] = "Sito web:"; -App::$strings["Description: "] = "Descrizione:"; -App::$strings["Apps"] = "App"; -App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; -App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; -App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; -App::$strings["Menu Item Permissions"] = "Permessi del menu"; -App::$strings["Link Name"] = "Nome link"; -App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; -App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; -App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; -App::$strings["Order in list"] = "Ordine dell'elenco"; -App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; -App::$strings["Submit and finish"] = "Salva e termina"; -App::$strings["Submit and continue"] = "Salva e continua"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Destinazione link"; -App::$strings["Edit menu"] = "Modifica il menù"; -App::$strings["Edit element"] = "Modifica l'elemento"; -App::$strings["Drop element"] = "Elimina l'elemento"; -App::$strings["New element"] = "Nuovo elemento"; -App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; -App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; -App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; -App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; -App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; -App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; -App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; -App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; -App::$strings["Link text"] = "Testo del link"; +App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; +App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; +App::$strings["Messages"] = "Messaggi"; +App::$strings["Message recalled."] = "Messaggio revocato."; +App::$strings["Conversation removed."] = "Conversazione rimossa."; +App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; +App::$strings["Send Private Message"] = "Invia un messaggio privato"; +App::$strings["To:"] = "A:"; +App::$strings["Subject:"] = "Oggetto:"; +App::$strings["Attach file"] = "Allega file"; +App::$strings["Send"] = "Invia"; +App::$strings["Set expiration date"] = "Data di scadenza"; +App::$strings["Encrypt text"] = "Cifratura del messaggio"; +App::$strings["Delete message"] = "Elimina il messaggio"; +App::$strings["Delivery report"] = "Rapporto di trasmissione"; +App::$strings["Recall message"] = "Revoca il messaggio"; +App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; +App::$strings["Delete Conversation"] = "Elimina la conversazione"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; +App::$strings["Send Reply"] = "Invia la risposta"; +App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; +App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; +App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; +App::$strings["Connection updated."] = "Contatto aggiornato."; +App::$strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; +App::$strings["is now connected to"] = "ha come nuovo contatto"; +App::$strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; +App::$strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; +App::$strings["Connection has been removed."] = "Il contatto è stato rimosso."; +App::$strings["View Profile"] = "Profilo"; +App::$strings["View %s's profile"] = "Guarda il profilo di %s"; +App::$strings["Refresh Permissions"] = "Modifica i permessi"; +App::$strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati"; +App::$strings["Recent Activity"] = "Attività recenti"; +App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; +App::$strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!"; +App::$strings["Unignore"] = "Non ignorare"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; +App::$strings["This connection is ignored!"] = "Questa connessione è tra quelle ignorate!"; +App::$strings["Unarchive"] = "Non archiviare"; +App::$strings["Archive"] = "Archivia"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; +App::$strings["This connection is archived!"] = "Questa connessione è tra quelle archiviate!"; +App::$strings["Unhide"] = "Non nascondere"; +App::$strings["Hide"] = "Nascondi"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"; +App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!"; +App::$strings["Delete this connection"] = "Elimina questo contatto"; +App::$strings["Me"] = "Me"; +App::$strings["Family"] = "Famiglia"; +App::$strings["Acquaintances"] = "Conoscenti"; +App::$strings["Approve this connection"] = "Approva questo contatto"; +App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; +App::$strings["Set Affinity"] = "Scegli l'affinità"; +App::$strings["Set Profile"] = "Scegli il profilo da mostrare"; +App::$strings["Set Affinity & Profile"] = "Affinità e profilo"; +App::$strings["none"] = "--"; +App::$strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti"; +App::$strings["Connection: %s"] = "Contatto: %s"; +App::$strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi"; +App::$strings["Connection requests will be approved without your interaction"] = "Le richieste di entrare in contatto saranno approvate in automatico"; +App::$strings["This connection's primary address is"] = "Indirizzo primario di questo canale"; +App::$strings["Available locations:"] = "Indirizzi disponibili"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi."; +App::$strings["Connection Tools"] = "Gestione dei contatti"; +App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; +App::$strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione"; +App::$strings["Optionally explain your rating"] = "Commento facoltativo"; +App::$strings["Custom Filter"] = "Filtro personalizzato"; +App::$strings["Only import posts with this text"] = "Importa solo i post che contengono queste parole chiave"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto"; +App::$strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave"; +App::$strings["This information is public!"] = "Questa informazione è pubblica!"; +App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; +App::$strings["Last update:"] = "Ultimo aggiornamento:"; +App::$strings["Apps"] = "App"; App::$strings["Continue"] = "Continua"; App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; @@ -1342,13 +1334,10 @@ App::$strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; App::$strings["Save Bookmark"] = "Salva segnalibro"; App::$strings["URL of bookmark"] = "URL del segnalibro"; App::$strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; -App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; -App::$strings["No such channel"] = "Canale sconosciuto"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Cerca risultati con:"; -App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; -App::$strings["Privacy group: "] = "Gruppo di canali:"; -App::$strings["Invalid connection."] = "Contatto non valido."; +App::$strings["Authentication failed."] = "Autenticazione fallita."; +App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; +App::$strings["Authenticate"] = "Accedi"; App::$strings["Please login."] = "Effettua l'accesso."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password."; App::$strings["Remove This Account"] = "Elimina questo account"; @@ -1372,6 +1361,11 @@ App::$strings["You may also export your posts and conversations for a particular App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2\$s "; App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2\$s"; App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Questi contenuti potranno essere importati o ripristinati visitando %2\$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)"; +App::$strings["Item is not editable"] = "L'elemento non è modificabile"; +App::$strings["Edit post"] = "Modifica post"; +App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; +App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; +App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; App::$strings["Thing updated"] = "L'oggetto è stato aggiornato"; App::$strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; App::$strings["Thing added"] = "L'Oggetto è stato aggiunto"; @@ -1386,22 +1380,36 @@ App::$strings["Name of thing e.g. something"] = "Nome dell'oggetto"; App::$strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto (facoltativo)"; App::$strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; -App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; -App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; -App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; -App::$strings["Website:"] = "Sito web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; -App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; -App::$strings["Authentication failed."] = "Autenticazione fallita."; -App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; -App::$strings["Authenticate"] = "Accedi"; +App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; +App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; +App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; +App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; +App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; App::$strings["Files: shared with me"] = "File: condivisi con me"; App::$strings["NEW"] = "NOVITÀ"; App::$strings["Remove all files"] = "Elimina tutti i file"; App::$strings["Remove this file"] = "Elimina questo file"; -App::$strings["Channel added."] = "Canale aggiunto."; +App::$strings["Not found"] = "Non trovato"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Sandbox"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\""; +App::$strings["Revision Comparison"] = "Confronto tra revisioni"; +App::$strings["Revert"] = "Ripristina"; +App::$strings["Enter the name of your new wiki:"] = "Nome della tua nuova pagina wiki:"; +App::$strings["Enter the name of the new page:"] = "Nome della tua nuova pagina:"; +App::$strings["Enter the new name:"] = "Nuovo nome:"; +App::$strings["Embed image from photo albums"] = "Inserisci un'immagine dall'album foto"; +App::$strings["Embed an image from your albums"] = "Inserisci un'immagine dai tuoi album"; +App::$strings["OK"] = "OK"; +App::$strings["Choose images to embed"] = "Scegli le immagini da inserire"; +App::$strings["Choose an album"] = "Scegli un album"; +App::$strings["Choose a different album..."] = "Scegli un altro album..."; +App::$strings["Error getting album list"] = "Errore nell'ottenere l'elenco degli album"; +App::$strings["Error getting photo link"] = "Errore nell'ottenere il link alla foto"; +App::$strings["Error getting album"] = "Errore nell'ottenere l'album"; App::$strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato."; App::$strings["Source created."] = "Sorgente creata."; App::$strings["Source updated."] = "Sorgente aggiornata."; @@ -1429,29 +1437,25 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s App::$strings["Tag removed"] = "Tag rimosso"; App::$strings["Remove Item Tag"] = "Rimuovi il tag"; App::$strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -App::$strings["Authorize application connection"] = "Autorizza la app"; -App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; -App::$strings["Please login to continue."] = "Accedi al sito per continuare."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; -App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; -App::$strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; -App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; -App::$strings["Import completed."] = "L'importazione è terminata con successo."; -App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; -App::$strings["Import Channel"] = "Importa un canale"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."; -App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; -App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; -App::$strings["Your old login password"] = "La password per il vecchio hub"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."; -App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; +App::$strings["Channel added."] = "Canale aggiunto."; App::$strings["No connections."] = "Nessun contatto."; App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; App::$strings["View Connections"] = "Elenco contatti"; App::$strings["Source of Item"] = "Sorgente"; +App::$strings["Room not found"] = "Chat non trovata"; +App::$strings["Leave Room"] = "Lascia la chat"; +App::$strings["Delete Room"] = "Elimina questa chat"; +App::$strings["I am away right now"] = "Non sono presente"; +App::$strings["I am online"] = "Sono online"; +App::$strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri"; +App::$strings["Feature disabled."] = "Funzionalità disattivata."; +App::$strings["New Chatroom"] = "Nuova chat"; +App::$strings["Chatroom name"] = "Nome chat"; +App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; +App::$strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; +App::$strings["No chatrooms available"] = "Nessuna chat disponibile"; +App::$strings["Expiration"] = "Scadenza"; +App::$strings["min"] = "min"; App::$strings["Xchan Lookup"] = "Ricerca canale"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; App::$strings["Missing room name"] = "Chat senza nome"; @@ -1586,6 +1590,34 @@ App::$strings["Video"] = "Video"; App::$strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +App::$strings["view full size"] = "guarda nelle dimensioni reali"; +App::$strings["Administrator"] = "Amministratore"; +App::$strings["No Subject"] = "Nessun titolo"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Embedded content"] = "Contenuti incorporati"; +App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; +App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; +App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; +App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; +App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; +App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; App::$strings["(Unknown)"] = "(Sconosciuto)"; App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; App::$strings["Visible to you only."] = "Visibile solo a te."; @@ -1599,94 +1631,197 @@ App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; App::$strings["Connection not found."] = "Contatto non trovato."; App::$strings["profile photo"] = "foto del profilo"; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; -App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; -App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; -App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; -App::$strings["a new photo"] = "una nuova foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; -App::$strings["Photo Albums"] = "Album foto"; -App::$strings["Upload New Photos"] = "Carica nuove foto"; -App::$strings["General Features"] = "Funzionalità di base"; -App::$strings["Content Expiration"] = "Scadenza"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; -App::$strings["Multiple Profiles"] = "Profili multipli"; -App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; -App::$strings["Advanced Profiles"] = "Profili avanzati"; -App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; -App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; -App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; -App::$strings["Web Pages"] = "Pagine web"; -App::$strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; -App::$strings["Provide a wiki for your channel"] = "Fornisce una wiki per il tuo canale"; -App::$strings["Hide Rating"] = "Nascondi le valutazioni"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove."; -App::$strings["Private Notes"] = "Note private"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Abilita il riquadro per scrivere annotazioni (in chiaro)"; -App::$strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione"; -App::$strings["Photo Location"] = "Posizione geografica"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; -App::$strings["Access Controlled Chatrooms"] = "Chat ad accesso riservato"; -App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato"; -App::$strings["Smart Birthdays"] = "Compleanni intelligenti"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo."; -App::$strings["Expert Mode"] = "Modalità esperto"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate"; -App::$strings["Premium Channel"] = "Canale premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale"; -App::$strings["Post Composition Features"] = "Modalità di scrittura post"; -App::$strings["Large Photos"] = "Foto grandi"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; -App::$strings["Even More Encryption"] = "Cifratura addizionale"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi"; -App::$strings["Enable Voting Tools"] = "Permetti i post con votazione"; -App::$strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare"; -App::$strings["Delayed Posting"] = "Pubblicazione ritardata"; -App::$strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Impedisci post e commenti duplicati"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima."; -App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; -App::$strings["Search by Date"] = "Ricerca per data"; -App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; -App::$strings["Privacy Groups"] = "Gruppi di canali"; -App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; +App::$strings["prev"] = "prec"; +App::$strings["first"] = "inizio"; +App::$strings["last"] = "fine"; +App::$strings["next"] = "succ"; +App::$strings["older"] = "più recenti"; +App::$strings["newer"] = "più nuovi"; +App::$strings["No connections"] = "Nessun contatto"; +App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; +App::$strings["poke"] = "poke"; +App::$strings["poked"] = "ha mandato un poke"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "ha effettuato un ping"; +App::$strings["prod"] = "spintone"; +App::$strings["prodded"] = "ha ricevuto uno spintone"; +App::$strings["slap"] = "schiaffo"; +App::$strings["slapped"] = "ha ricevuto uno schiaffo"; +App::$strings["finger"] = "finger"; +App::$strings["fingered"] = "ha ricevuto un finger"; +App::$strings["rebuff"] = "rifiuto"; +App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; +App::$strings["happy"] = "felice"; +App::$strings["sad"] = "triste"; +App::$strings["mellow"] = "calmo"; +App::$strings["tired"] = "stanco"; +App::$strings["perky"] = "vivace"; +App::$strings["angry"] = "arrabbiato"; +App::$strings["stupefied"] = "stupito"; +App::$strings["puzzled"] = "confuso"; +App::$strings["interested"] = "attento"; +App::$strings["bitter"] = "amaro"; +App::$strings["cheerful"] = "allegro"; +App::$strings["alive"] = "vivace"; +App::$strings["annoyed"] = "seccato"; +App::$strings["anxious"] = "ansioso"; +App::$strings["cranky"] = "irritabile"; +App::$strings["disturbed"] = "turbato"; +App::$strings["frustrated"] = "frustrato"; +App::$strings["depressed"] = "in depressione"; +App::$strings["motivated"] = "motivato"; +App::$strings["relaxed"] = "rilassato"; +App::$strings["surprised"] = "sorpreso"; +App::$strings["Monday"] = "lunedì"; +App::$strings["Tuesday"] = "martedì"; +App::$strings["Wednesday"] = "mercoledì"; +App::$strings["Thursday"] = "giovedì"; +App::$strings["Friday"] = "venerdì"; +App::$strings["Saturday"] = "sabato"; +App::$strings["Sunday"] = "domenica"; +App::$strings["January"] = "gennaio"; +App::$strings["February"] = "febbraio"; +App::$strings["March"] = "marzo"; +App::$strings["April"] = "aprile"; +App::$strings["May"] = "Mag"; +App::$strings["June"] = "giugno"; +App::$strings["July"] = "luglio"; +App::$strings["August"] = "agosto"; +App::$strings["September"] = "settembre"; +App::$strings["October"] = "ottobre"; +App::$strings["November"] = "novembre"; +App::$strings["December"] = "dicembre"; +App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; +App::$strings["unknown"] = "sconosciuta"; +App::$strings["remove category"] = "rimuovi la categoria"; +App::$strings["remove from file"] = "rimuovi dal file"; +App::$strings["default"] = "predefinito"; +App::$strings["Page layout"] = "Layout della pagina"; +App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; +App::$strings["Page content type"] = "Tipo di contenuto della pagina"; +App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; +App::$strings["activity"] = "l'attività"; +App::$strings["Design Tools"] = "Strumenti di design"; +App::$strings["Pages"] = "Pagine"; +App::$strings["Import website..."] = "Importazione sito web..."; +App::$strings["Select folder to import"] = "Scegli la cartella da importare"; +App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; +App::$strings["Import from cloud files:"] = "Importa i file da un cloud:"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/percorso/alla/cartella"; +App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; +App::$strings["Select folder"] = "Scegli la cartella"; +App::$strings["Categories"] = "Categorie"; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nuova app"; +App::$strings["Suggestions"] = "Suggerimenti"; +App::$strings["See more..."] = "Altro..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; +App::$strings["Add New Connection"] = "Aggiungi un contatto"; +App::$strings["Enter channel address"] = "Indirizzo del canale"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; +App::$strings["Notes"] = "Note"; +App::$strings["Remove term"] = "Rimuovi termine"; App::$strings["Saved Searches"] = "Ricerche salvate"; -App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; -App::$strings["Network Personal Tab"] = "Attività personale"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; -App::$strings["Network New Tab"] = "Contenuti nuovi"; -App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; -App::$strings["Affinity Tool"] = "Filtro per affinità"; -App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; -App::$strings["Connection Filtering"] = "Filtro sui contatti"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; -App::$strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; -App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; -App::$strings["Community Tagging"] = "Tag della comunità"; -App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; -App::$strings["Post Categories"] = "Categorie dei post"; -App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; -App::$strings["Emoji Reactions"] = "Reazioni emoji"; -App::$strings["Add emoji reaction ability to posts"] = "Permetti le reazioni emoji ai post"; +App::$strings["add"] = "aggiungi"; App::$strings["Saved Folders"] = "Cartelle salvate"; -App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; -App::$strings["Dislike Posts"] = "Non mi piace"; -App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; -App::$strings["Star Posts"] = "Post con stella"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; -App::$strings["Tag Cloud"] = "Nuvola di tag"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; -App::$strings["Public Timeline"] = "Diario pubblico"; +App::$strings["Everything"] = "Tutto"; +App::$strings["Archives"] = "Archivi"; +App::$strings["Refresh"] = "Aggiorna"; +App::$strings["Account settings"] = "Il tuo account"; +App::$strings["Channel settings"] = "Impostazioni del canale"; +App::$strings["Additional features"] = "Funzionalità opzionali"; +App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; +App::$strings["Display settings"] = "Aspetto"; +App::$strings["Manage locations"] = "Gestione repliche"; +App::$strings["Export channel"] = "Esporta il canale"; +App::$strings["Connected apps"] = "App connesse"; +App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +App::$strings["Private Mail Menu"] = "Menu messaggi privati"; +App::$strings["Combined View"] = "Vista combinata"; +App::$strings["Inbox"] = "In arrivo"; +App::$strings["Outbox"] = "Inviati"; +App::$strings["New Message"] = "Nuovo messaggio"; +App::$strings["Conversations"] = "Conversazioni"; +App::$strings["Received Messages"] = "Ricevuti"; +App::$strings["Sent Messages"] = "Inviati"; +App::$strings["No messages."] = "Nessun messaggio."; +App::$strings["Delete conversation"] = "Elimina la conversazione"; +App::$strings["Events Tools"] = "Gestione eventi"; +App::$strings["Export Calendar"] = "Esporta calendario"; +App::$strings["Import Calendar"] = "Importa calendario"; +App::$strings["Chatrooms"] = "Chat"; +App::$strings["Overview"] = "Riepilogo"; +App::$strings["Chat Members"] = "Partecipanti"; +App::$strings["Wiki List"] = "Elenco wiki"; +App::$strings["Wiki Pages"] = "Pagine wiki"; +App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +App::$strings["Suggested Chatrooms"] = "Chat suggerite"; +App::$strings["photo/image"] = "foto/immagine"; +App::$strings["Click to show more"] = "Clicca per mostrare tutto"; +App::$strings["Rating Tools"] = "Valutazione"; +App::$strings["Rate Me"] = "Valutami"; +App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Attività"; +App::$strings["Documentation"] = "Guida"; +App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; +App::$strings["For Members"] = "Per gli utenti"; +App::$strings["For Administrators"] = "Per gli amministratori"; +App::$strings["For Developers"] = "Per sviluppatori"; +App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; +App::$strings["Inspect queue"] = "Coda di attesa"; +App::$strings["DB updates"] = "Aggiornamenti al DB"; +App::$strings["Admin"] = "Amministrazione"; +App::$strings["Plugin Features"] = "Plugin"; +App::$strings["New window"] = "Nuova finestra"; +App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; +App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; App::$strings["Who can see this?"] = "Chi può vederlo?"; App::$strings["Custom selection"] = "Selezione personalizzata"; App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"."; App::$strings["Show"] = "Mostra"; App::$strings["Don't show"] = "Non mostrare"; -App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni"; App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post."; +App::$strings["Public Timeline"] = "Diario pubblico"; +App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; +App::$strings["Empty name"] = "Nome vuoto"; +App::$strings["Name too long"] = "Nome troppo lungo"; +App::$strings["No account identifier"] = "Account senza identificativo"; +App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; +App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; +App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; +App::$strings["Default Profile"] = "Profilo predefinito"; +App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +App::$strings["Create New Profile"] = "Crea un nuovo profilo"; +App::$strings["Edit Profile"] = "Modifica il profilo"; +App::$strings["Visible to everybody"] = "Visibile a tutti"; +App::$strings["Gender:"] = "Sesso:"; +App::$strings["Status:"] = "Stato:"; +App::$strings["Homepage:"] = "Home page:"; +App::$strings["Online Now"] = "Online adesso"; +App::$strings["Like this channel"] = "Mi piace questo canale"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Compleanno:"; +App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; +App::$strings["Tags:"] = "Tag:"; +App::$strings["Political Views:"] = "Orientamento politico:"; +App::$strings["Religion:"] = "Religione:"; +App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; +App::$strings["Likes:"] = "Mi piace:"; +App::$strings["Dislikes:"] = "Non mi piace:"; +App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; +App::$strings["My other channels:"] = "I miei altri canali:"; +App::$strings["Musical interests:"] = "Gusti musicali:"; +App::$strings["Books, literature:"] = "Libri, letteratura:"; +App::$strings["Television:"] = "Televisione:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; +App::$strings["Love/Romance:"] = "Amore:"; +App::$strings["Work/employment:"] = "Lavoro:"; +App::$strings["School/education:"] = "Scuola:"; +App::$strings["Like this thing"] = "Mi piace"; App::$strings["Birthday"] = "Compleanno"; App::$strings["Age: "] = "Età:"; App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; @@ -1784,142 +1919,116 @@ App::$strings["Widowed"] = "Vedovo/a"; App::$strings["Uncertain"] = "Incerto/a"; App::$strings["It's complicated"] = "Relazione complicata"; App::$strings["Don't care"] = "Chi se ne frega"; -App::$strings["Ask me"] = "Chiedimelo"; -App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; -App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; -App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; -App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; -App::$strings["Protocol disabled."] = "Protocollo disabilitato."; -App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; -App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -App::$strings["prev"] = "prec"; -App::$strings["first"] = "inizio"; -App::$strings["last"] = "fine"; -App::$strings["next"] = "succ"; -App::$strings["older"] = "più recenti"; -App::$strings["newer"] = "più nuovi"; -App::$strings["No connections"] = "Nessun contatto"; -App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; -App::$strings["poke"] = "poke"; -App::$strings["poked"] = "ha mandato un poke"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "ha effettuato un ping"; -App::$strings["prod"] = "spintone"; -App::$strings["prodded"] = "ha ricevuto uno spintone"; -App::$strings["slap"] = "schiaffo"; -App::$strings["slapped"] = "ha ricevuto uno schiaffo"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "ha ricevuto un finger"; -App::$strings["rebuff"] = "rifiuto"; -App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; -App::$strings["happy"] = "felice"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "calmo"; -App::$strings["tired"] = "stanco"; -App::$strings["perky"] = "vivace"; -App::$strings["angry"] = "arrabbiato"; -App::$strings["stupefied"] = "stupito"; -App::$strings["puzzled"] = "confuso"; -App::$strings["interested"] = "attento"; -App::$strings["bitter"] = "amaro"; -App::$strings["cheerful"] = "allegro"; -App::$strings["alive"] = "vivace"; -App::$strings["annoyed"] = "seccato"; -App::$strings["anxious"] = "ansioso"; -App::$strings["cranky"] = "irritabile"; -App::$strings["disturbed"] = "turbato"; -App::$strings["frustrated"] = "frustrato"; -App::$strings["depressed"] = "in depressione"; -App::$strings["motivated"] = "motivato"; -App::$strings["relaxed"] = "rilassato"; -App::$strings["surprised"] = "sorpreso"; -App::$strings["Monday"] = "lunedì"; -App::$strings["Tuesday"] = "martedì"; -App::$strings["Wednesday"] = "mercoledì"; -App::$strings["Thursday"] = "giovedì"; -App::$strings["Friday"] = "venerdì"; -App::$strings["Saturday"] = "sabato"; -App::$strings["Sunday"] = "domenica"; -App::$strings["January"] = "gennaio"; -App::$strings["February"] = "febbraio"; -App::$strings["March"] = "marzo"; -App::$strings["April"] = "aprile"; -App::$strings["May"] = "Mag"; -App::$strings["June"] = "giugno"; -App::$strings["July"] = "luglio"; -App::$strings["August"] = "agosto"; -App::$strings["September"] = "settembre"; -App::$strings["October"] = "ottobre"; -App::$strings["November"] = "novembre"; -App::$strings["December"] = "dicembre"; -App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; -App::$strings["unknown"] = "sconosciuta"; -App::$strings["remove category"] = "rimuovi la categoria"; -App::$strings["remove from file"] = "rimuovi dal file"; -App::$strings["default"] = "predefinito"; -App::$strings["Page layout"] = "Layout della pagina"; -App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; -App::$strings["Page content type"] = "Tipo di contenuto della pagina"; -App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; -App::$strings["activity"] = "l'attività"; -App::$strings["Design Tools"] = "Strumenti di design"; -App::$strings["Pages"] = "Pagine"; -App::$strings["Import website..."] = "Importazione sito web..."; -App::$strings["Select folder to import"] = "Scegli la cartella da importare"; -App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; -App::$strings["Import from cloud files:"] = "Importa i file da un cloud:"; -App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/percorso/alla/cartella"; -App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; -App::$strings["Select folder"] = "Scegli la cartella"; -App::$strings["Logout"] = "Esci"; -App::$strings["End this session"] = "Chiudi questa sessione"; -App::$strings["Home"] = "Bacheca"; -App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; -App::$strings["Your profile page"] = "Il tuo profilo"; -App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; -App::$strings["Edit Profile"] = "Modifica il profilo"; -App::$strings["Edit your profile"] = "Modifica il tuo profilo"; -App::$strings["Your photos"] = "Le tue foto"; -App::$strings["Your files"] = "I tuoi file"; -App::$strings["Your chatrooms"] = "Le tue chat"; -App::$strings["Bookmarks"] = "Segnalibri"; -App::$strings["Your bookmarks"] = "I tuoi segnalibri"; -App::$strings["Your webpages"] = "Le tue pagine web"; -App::$strings["Your wiki"] = "La tua wiki"; -App::$strings["Sign in"] = "Accedi"; -App::$strings["%s - click to logout"] = "%s - clicca per uscire"; -App::$strings["Remote authentication"] = "Accedi dal tuo hub"; -App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; -App::$strings["Home Page"] = "Bacheca"; -App::$strings["Create an account"] = "Crea un account"; -App::$strings["Help and documentation"] = "Guida e documentazione"; -App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; -App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; -App::$strings["Your grid"] = "La tua rete"; -App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; -App::$strings["Channel home"] = "Bacheca del canale"; -App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; -App::$strings["Notices"] = "Avvisi"; -App::$strings["Notifications"] = "Notifiche"; -App::$strings["See all notifications"] = "Vedi tutte le notifiche"; -App::$strings["Private mail"] = "Messaggi privati"; -App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; -App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; -App::$strings["Inbox"] = "In arrivo"; -App::$strings["Outbox"] = "Inviati"; -App::$strings["New Message"] = "Nuovo messaggio"; -App::$strings["Event Calendar"] = "Calendario"; -App::$strings["See all events"] = "Guarda tutti gli eventi"; -App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; -App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; -App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; -App::$strings["Admin"] = "Amministrazione"; -App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; +App::$strings["Ask me"] = "Chiedimelo"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; +App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; +App::$strings["a new photo"] = "una nuova foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; +App::$strings["Photo Albums"] = "Album foto"; +App::$strings["Upload New Photos"] = "Carica nuove foto"; +App::$strings["guest:"] = "ospite:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; +App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +App::$strings["Categories:"] = "Categorie:"; +App::$strings["Filed under:"] = "Classificato come:"; +App::$strings["View in context"] = "Vedi nel contesto"; +App::$strings["remove"] = "rimuovi"; App::$strings["Loading..."] = "Caricamento in corso..."; -App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; -App::$strings["Please wait..."] = "Attendere..."; +App::$strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; +App::$strings["View Source"] = "Vedi il sorgente"; +App::$strings["Follow Thread"] = "Segui la discussione"; +App::$strings["Unfollow Thread"] = "Non seguire la discussione"; +App::$strings["Activity/Posts"] = "Attività e Post"; +App::$strings["Edit Connection"] = "Modifica il contatto"; +App::$strings["Message"] = "Messaggio"; +App::$strings["%s likes this."] = "Piace a %s."; +App::$strings["%s doesn't like this."] = "Non piace a %s."; +App::$strings["%2\$d people like this."] = array( + 0 => "", + 1 => "Piace a %2\$d persone.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "Non piace a %2\$d persone.", +); +App::$strings["and"] = "e"; +App::$strings[", and %d other people"] = array( + 0 => "", + 1 => "e altre %d persone", +); +App::$strings["%s like this."] = "Piace a %s."; +App::$strings["%s don't like this."] = "Non piace a %s."; +App::$strings["Set your location"] = "La tua località"; +App::$strings["Clear browser location"] = "Rimuovi la località data dal browser"; +App::$strings["Tag term:"] = "Tag:"; +App::$strings["Where are you right now?"] = "Dove sei ora?"; +App::$strings["Comments enabled"] = "Commenti abilitati"; +App::$strings["Comments disabled"] = "Commenti disabilitati"; +App::$strings["Page link name"] = "Nome del link alla pagina"; +App::$strings["Post as"] = "Pubblica come "; +App::$strings["Toggle voting"] = "Abilita/disabilita il voto"; +App::$strings["Disable comments"] = "Disabilita i commenti"; +App::$strings["Toggle comments"] = "Abilita/disabilita i commenti"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; +App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni"; +App::$strings["Set publish date"] = "Data di uscita programmata"; +App::$strings["Discover"] = "Scopri"; +App::$strings["Imported public streams"] = "Contenuti pubblici importati"; +App::$strings["Commented Order"] = "Commenti recenti"; +App::$strings["Sort by Comment Date"] = "Per data del commento"; +App::$strings["Posted Order"] = "Post recenti"; +App::$strings["Sort by Post Date"] = "Per data di creazione"; +App::$strings["Posts that mention or involve you"] = "Post che ti riguardano"; +App::$strings["Activity Stream - by date"] = "Elenco attività - per data"; +App::$strings["Starred"] = "Preferiti"; +App::$strings["Favourite Posts"] = "Post preferiti"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Post marcati come spam"; +App::$strings["Status Messages and Posts"] = "Post e messaggi di stato"; +App::$strings["About"] = "Informazioni"; +App::$strings["Profile Details"] = "Dettagli del profilo"; +App::$strings["Files and Storage"] = "Archivio file"; +App::$strings["Bookmarks"] = "Segnalibri"; +App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; +App::$strings["Manage Webpages"] = "Gestisci le pagine web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Partecipa", + 1 => "Partecipano", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Non partecipa", + 1 => "Non partecipano", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso", + 1 => "Indecisi", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "D'accordo", + 1 => "D'accordo", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Non d'accordo", + 1 => "Non d'accordo", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Astenuto", + 1 => "Astenuti", +); App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; +App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; +App::$strings["edit"] = "modifica"; +App::$strings["Privacy Groups"] = "Gruppi di canali"; +App::$strings["Edit group"] = "Modifica il gruppo"; +App::$strings["Add privacy group"] = "Crea un gruppo di canali"; +App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; +App::$strings["New Page"] = "Nuova pagina web"; +App::$strings["Title"] = "Titolo"; +App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; App::$strings["Starts:"] = "Inizio:"; App::$strings["Finishes:"] = "Fine:"; @@ -1929,66 +2038,6 @@ App::$strings["Needs Action"] = "Necessita di un intervento"; App::$strings["Completed"] = "Completato"; App::$strings["In Process"] = "In corso"; App::$strings["Cancelled"] = "Annullato"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; -App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; -App::$strings["edit"] = "modifica"; -App::$strings["Edit group"] = "Modifica il gruppo"; -App::$strings["Add privacy group"] = "Crea un gruppo di canali"; -App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; -App::$strings["add"] = "aggiungi"; -App::$strings["New Page"] = "Nuova pagina web"; -App::$strings["Title"] = "Titolo"; -App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; -App::$strings["Empty name"] = "Nome vuoto"; -App::$strings["Name too long"] = "Nome troppo lungo"; -App::$strings["No account identifier"] = "Account senza identificativo"; -App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; -App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; -App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; -App::$strings["Default Profile"] = "Profilo predefinito"; -App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; -App::$strings["Create New Profile"] = "Crea un nuovo profilo"; -App::$strings["Visible to everybody"] = "Visibile a tutti"; -App::$strings["Gender:"] = "Sesso:"; -App::$strings["Status:"] = "Stato:"; -App::$strings["Homepage:"] = "Home page:"; -App::$strings["Online Now"] = "Online adesso"; -App::$strings["Like this channel"] = "Mi piace questo canale"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Compleanno:"; -App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; -App::$strings["Tags:"] = "Tag:"; -App::$strings["Political Views:"] = "Orientamento politico:"; -App::$strings["Religion:"] = "Religione:"; -App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; -App::$strings["Likes:"] = "Mi piace:"; -App::$strings["Dislikes:"] = "Non mi piace:"; -App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; -App::$strings["My other channels:"] = "I miei altri canali:"; -App::$strings["Musical interests:"] = "Gusti musicali:"; -App::$strings["Books, literature:"] = "Libri, letteratura:"; -App::$strings["Television:"] = "Televisione:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; -App::$strings["Love/Romance:"] = "Amore:"; -App::$strings["Work/employment:"] = "Lavoro:"; -App::$strings["School/education:"] = "Scuola:"; -App::$strings["Like this thing"] = "Mi piace"; -App::$strings["view full size"] = "guarda nelle dimensioni reali"; -App::$strings["Administrator"] = "Amministratore"; -App::$strings["No Subject"] = "Nessun titolo"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; App::$strings["Attachments:"] = "Allegati:"; App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; App::$strings["Delete this item?"] = "Eliminare questo elemento?"; @@ -2049,8 +2098,116 @@ App::$strings["__ctx:calendar__ month"] = "mese"; App::$strings["__ctx:calendar__ week"] = "settimana"; App::$strings["__ctx:calendar__ day"] = "giorno"; App::$strings["__ctx:calendar__ All day"] = "Tutto il giorno"; -App::$strings["guest:"] = "ospite:"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; +App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; +App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; +App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; +App::$strings["Protocol disabled."] = "Protocollo disabilitato."; +App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; +App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; +App::$strings["Item was not found."] = "Elemento non trovato."; +App::$strings["No source file."] = "Nessun file di origine."; +App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; +App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; +App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; +App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; +App::$strings["Path not available."] = "Percorso non disponibile."; +App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; +App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; +App::$strings["Path not found."] = "Percorso del file non trovato."; +App::$strings["mkdir failed."] = "mkdir fallito."; +App::$strings["database storage failed."] = "scrittura su database fallita."; +App::$strings["Empty path"] = "La posizione è vuota"; +App::$strings["Logged out."] = "Uscita effettuata."; +App::$strings["Failed authentication"] = "Autenticazione fallita"; +App::$strings["Login failed."] = "Accesso fallito."; +App::$strings[" and "] = "e"; +App::$strings["public profile"] = "profilo pubblico"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; +App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; +App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["General Features"] = "Funzionalità di base"; +App::$strings["Content Expiration"] = "Scadenza"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; +App::$strings["Multiple Profiles"] = "Profili multipli"; +App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; +App::$strings["Advanced Profiles"] = "Profili avanzati"; +App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; +App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; +App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; +App::$strings["Web Pages"] = "Pagine web"; +App::$strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; +App::$strings["Provide a wiki for your channel"] = "Fornisce una wiki per il tuo canale"; +App::$strings["Private Notes"] = "Note private"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Abilita il riquadro per scrivere annotazioni (in chiaro)"; +App::$strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione"; +App::$strings["Photo Location"] = "Posizione geografica"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; +App::$strings["Access Controlled Chatrooms"] = "Chat ad accesso riservato"; +App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato"; +App::$strings["Smart Birthdays"] = "Compleanni intelligenti"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo."; +App::$strings["Expert Mode"] = "Modalità esperto"; +App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate"; +App::$strings["Post Composition Features"] = "Modalità di scrittura post"; +App::$strings["Large Photos"] = "Foto grandi"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)"; +App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; +App::$strings["Even More Encryption"] = "Cifratura addizionale"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi"; +App::$strings["Enable Voting Tools"] = "Permetti i post con votazione"; +App::$strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare"; +App::$strings["Disable Comments"] = "Disabilita i commenti"; +App::$strings["Provide the option to disable comments for a post"] = "Permetti di disabilitare i commenti"; +App::$strings["Delayed Posting"] = "Pubblicazione ritardata"; +App::$strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Impedisci post e commenti duplicati"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima."; +App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; +App::$strings["Search by Date"] = "Ricerca per data"; +App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; +App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; +App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; +App::$strings["Network Personal Tab"] = "Attività personale"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; +App::$strings["Network New Tab"] = "Contenuti nuovi"; +App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; +App::$strings["Affinity Tool"] = "Filtro per affinità"; +App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; +App::$strings["Connection Filtering"] = "Filtro sui contatti"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; +App::$strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; +App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; +App::$strings["Community Tagging"] = "Tag della comunità"; +App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; +App::$strings["Post Categories"] = "Categorie dei post"; +App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; +App::$strings["Emoji Reactions"] = "Reazioni emoji"; +App::$strings["Add emoji reaction ability to posts"] = "Permetti le reazioni emoji ai post"; +App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; +App::$strings["Dislike Posts"] = "Non mi piace"; +App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; +App::$strings["Star Posts"] = "Post con stella"; +App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; +App::$strings["Tag Cloud"] = "Nuvola di tag"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; +App::$strings["Premium Channel"] = "Canale premium"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale"; +App::$strings["Tags"] = "Tag"; +App::$strings["Keywords"] = "Parole chiave"; +App::$strings["have"] = "ho"; +App::$strings["has"] = "ha"; +App::$strings["want"] = "voglio"; +App::$strings["wants"] = "vuole"; +App::$strings["likes"] = "gli piace"; +App::$strings["dislikes"] = "non gli piace"; App::$strings["Not a valid email address"] = "Email non valida"; App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; @@ -2074,189 +2231,7 @@ App::$strings["This post contains an installable %s element, however you lack pe App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; App::$strings["$1 wrote:"] = "$1 ha scritto:"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; -App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -App::$strings["Categories:"] = "Categorie:"; -App::$strings["Filed under:"] = "Classificato come:"; -App::$strings["View in context"] = "Vedi nel contesto"; -App::$strings["remove"] = "rimuovi"; -App::$strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; -App::$strings["View Source"] = "Vedi il sorgente"; -App::$strings["Follow Thread"] = "Segui la discussione"; -App::$strings["Unfollow Thread"] = "Non seguire la discussione"; -App::$strings["Activity/Posts"] = "Attività e Post"; -App::$strings["Edit Connection"] = "Modifica il contatto"; -App::$strings["Message"] = "Messaggio"; -App::$strings["%s likes this."] = "Piace a %s."; -App::$strings["%s doesn't like this."] = "Non piace a %s."; -App::$strings["%2\$d people like this."] = array( - 0 => "", - 1 => "Piace a %2\$d persone.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "Non piace a %2\$d persone.", -); -App::$strings["and"] = "e"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => "e altre %d persone", -); -App::$strings["%s like this."] = "Piace a %s."; -App::$strings["%s don't like this."] = "Non piace a %s."; -App::$strings["Set your location"] = "La tua località"; -App::$strings["Clear browser location"] = "Rimuovi la località data dal browser"; -App::$strings["Tag term:"] = "Tag:"; -App::$strings["Where are you right now?"] = "Dove sei ora?"; -App::$strings["Page link name"] = "Nome del link alla pagina"; -App::$strings["Post as"] = "Pubblica come "; -App::$strings["Toggle voting"] = "Abilita/disabilita il voto"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; -App::$strings["Set publish date"] = "Data di uscita programmata"; -App::$strings["Discover"] = "Scopri"; -App::$strings["Imported public streams"] = "Contenuti pubblici importati"; -App::$strings["Commented Order"] = "Commenti recenti"; -App::$strings["Sort by Comment Date"] = "Per data del commento"; -App::$strings["Posted Order"] = "Post recenti"; -App::$strings["Sort by Post Date"] = "Per data di creazione"; -App::$strings["Posts that mention or involve you"] = "Post che ti riguardano"; -App::$strings["Activity Stream - by date"] = "Elenco attività - per data"; -App::$strings["Starred"] = "Preferiti"; -App::$strings["Favourite Posts"] = "Post preferiti"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Post marcati come spam"; -App::$strings["Status Messages and Posts"] = "Post e messaggi di stato"; -App::$strings["About"] = "Informazioni"; -App::$strings["Profile Details"] = "Dettagli del profilo"; -App::$strings["Files and Storage"] = "Archivio file"; -App::$strings["Chatrooms"] = "Chat"; -App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; -App::$strings["Manage Webpages"] = "Gestisci le pagine web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Partecipa", - 1 => "Partecipano", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Non partecipa", - 1 => "Non partecipano", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso", - 1 => "Indecisi", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "D'accordo", - 1 => "D'accordo", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Non d'accordo", - 1 => "Non d'accordo", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Astenuto", - 1 => "Astenuti", -); -App::$strings["Embedded content"] = "Contenuti incorporati"; -App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -App::$strings[" and "] = "e"; -App::$strings["public profile"] = "profilo pubblico"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; -App::$strings["Categories"] = "Categorie"; -App::$strings["Tags"] = "Tag"; -App::$strings["Keywords"] = "Parole chiave"; -App::$strings["have"] = "ho"; -App::$strings["has"] = "ha"; -App::$strings["want"] = "voglio"; -App::$strings["wants"] = "vuole"; -App::$strings["likes"] = "gli piace"; -App::$strings["dislikes"] = "non gli piace"; -App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; -App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; -App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; -App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; -App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nuova app"; -App::$strings["Suggestions"] = "Suggerimenti"; -App::$strings["See more..."] = "Altro..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; -App::$strings["Add New Connection"] = "Aggiungi un contatto"; -App::$strings["Enter channel address"] = "Indirizzo del canale"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; -App::$strings["Notes"] = "Note"; -App::$strings["Remove term"] = "Rimuovi termine"; -App::$strings["Everything"] = "Tutto"; -App::$strings["Archives"] = "Archivi"; -App::$strings["Refresh"] = "Aggiorna"; -App::$strings["Account settings"] = "Il tuo account"; -App::$strings["Channel settings"] = "Impostazioni del canale"; -App::$strings["Additional features"] = "Funzionalità opzionali"; -App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; -App::$strings["Display settings"] = "Aspetto"; -App::$strings["Manage locations"] = "Gestione repliche"; -App::$strings["Export channel"] = "Esporta il canale"; -App::$strings["Connected apps"] = "App connesse"; -App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -App::$strings["Private Mail Menu"] = "Menu messaggi privati"; -App::$strings["Combined View"] = "Vista combinata"; -App::$strings["Conversations"] = "Conversazioni"; -App::$strings["Received Messages"] = "Ricevuti"; -App::$strings["Sent Messages"] = "Inviati"; -App::$strings["No messages."] = "Nessun messaggio."; -App::$strings["Delete conversation"] = "Elimina la conversazione"; -App::$strings["Events Tools"] = "Gestione eventi"; -App::$strings["Export Calendar"] = "Esporta calendario"; -App::$strings["Import Calendar"] = "Importa calendario"; -App::$strings["Overview"] = "Riepilogo"; -App::$strings["Chat Members"] = "Partecipanti"; -App::$strings["Wiki List"] = "Elenco wiki"; -App::$strings["Wiki Pages"] = "Pagine wiki"; -App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; -App::$strings["Suggested Chatrooms"] = "Chat suggerite"; -App::$strings["photo/image"] = "foto/immagine"; -App::$strings["Click to show more"] = "Clicca per mostrare tutto"; -App::$strings["Rating Tools"] = "Valutazione"; -App::$strings["Rate Me"] = "Valutami"; -App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Attività"; -App::$strings["Documentation"] = "Guida"; -App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; -App::$strings["For Members"] = "Per gli utenti"; -App::$strings["For Administrators"] = "Per gli amministratori"; -App::$strings["For Developers"] = "Per sviluppatori"; -App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; -App::$strings["Inspect queue"] = "Coda di attesa"; -App::$strings["DB updates"] = "Aggiornamenti al DB"; -App::$strings["Plugin Features"] = "Plugin"; -App::$strings["Item was not found."] = "Elemento non trovato."; -App::$strings["No source file."] = "Nessun file di origine."; -App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; -App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; -App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; -App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; -App::$strings["Path not available."] = "Percorso non disponibile."; -App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; -App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; -App::$strings["Path not found."] = "Percorso del file non trovato."; -App::$strings["mkdir failed."] = "mkdir fallito."; -App::$strings["database storage failed."] = "scrittura su database fallita."; -App::$strings["Empty path"] = "La posizione è vuota"; App::$strings["%d invitation available"] = array( 0 => "%d invito disponibile", 1 => "%d inviti disponibili", @@ -2281,19 +2256,51 @@ App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; App::$strings["[no subject]"] = "[nessun titolo]"; App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; -App::$strings["Logged out."] = "Uscita effettuata."; -App::$strings["Failed authentication"] = "Autenticazione fallita"; -App::$strings["Login failed."] = "Accesso fallito."; -App::$strings["New window"] = "Nuova finestra"; -App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; -App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; -App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; -App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; +App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +App::$strings["Logout"] = "Esci"; +App::$strings["End this session"] = "Chiudi questa sessione"; +App::$strings["Home"] = "Bacheca"; +App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; +App::$strings["Your profile page"] = "Il tuo profilo"; +App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; +App::$strings["Edit your profile"] = "Modifica il tuo profilo"; +App::$strings["Your photos"] = "Le tue foto"; +App::$strings["Your files"] = "I tuoi file"; +App::$strings["Your chatrooms"] = "Le tue chat"; +App::$strings["Your bookmarks"] = "I tuoi segnalibri"; +App::$strings["Your webpages"] = "Le tue pagine web"; +App::$strings["Your wiki"] = "La tua wiki"; +App::$strings["Sign in"] = "Accedi"; +App::$strings["%s - click to logout"] = "%s - clicca per uscire"; +App::$strings["Remote authentication"] = "Accedi dal tuo hub"; +App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; +App::$strings["Home Page"] = "Bacheca"; +App::$strings["Create an account"] = "Crea un account"; +App::$strings["Help and documentation"] = "Guida e documentazione"; +App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; +App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; +App::$strings["Your grid"] = "La tua rete"; +App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; +App::$strings["Channel home"] = "Bacheca del canale"; +App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; +App::$strings["Notices"] = "Avvisi"; +App::$strings["Notifications"] = "Notifiche"; +App::$strings["See all notifications"] = "Vedi tutte le notifiche"; +App::$strings["Private mail"] = "Messaggi privati"; +App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; +App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; +App::$strings["Event Calendar"] = "Calendario"; +App::$strings["See all events"] = "Guarda tutti gli eventi"; +App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; +App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; +App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; +App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; +App::$strings["Please wait..."] = "Attendere..."; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)"; App::$strings["Theme settings"] = "Impostazioni del tema"; -App::$strings["Select scheme"] = "Scegli uno schema"; App::$strings["Narrow navbar"] = "Barra di navigazione ristretta"; App::$strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo"; App::$strings["Navigation bar gradient top color"] = "Barra di navigazione: Gradiente superiore"; -- cgit v1.2.3 From 85d8300421818f81788fcf082b00f14c444be567 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 30 Aug 2016 17:23:14 -0700 Subject: increase timeout on oembed remote fetches. This is a balancing act. Too short and many sites won't show up. Too long and you could be watching a spinner anxiously waiting for the page to load even if your own site is blindingly fast. --- include/oembed.php | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/include/oembed.php b/include/oembed.php index fe6f10d71..085637a00 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -156,9 +156,12 @@ function oembed_fetch_url($embedurl){ if ($action !== 'block') { // try oembed autodiscovery $redirects = 0; - $result = z_fetch_url($furl, false, $redirects, array('timeout' => 15, 'accept_content' => "text/*", 'novalidate' => true )); + $result = z_fetch_url($furl, false, $redirects, array('timeout' => 30, 'accept_content' => "text/*", 'novalidate' => true )); + if($result['success']) $html_text = $result['body']; + else + logger('fetch failure: ' . $furl); if($html_text) { $dom = @DOMDocument::loadHTML($html_text); @@ -171,7 +174,10 @@ function oembed_fetch_url($embedurl){ foreach($entries as $e){ $href = $e->getAttributeNode("href")->nodeValue; $x = z_fetch_url($href . '&maxwidth=' . App::$videowidth); - $txt = $x['body']; + if($x['success']) + $txt = $x['body']; + else + logger('fetch failed: ' . $href); break; } // soundcloud is now using text/json+oembed instead of application/json+oembed, @@ -180,7 +186,10 @@ function oembed_fetch_url($embedurl){ foreach($entries as $e){ $href = $e->getAttributeNode("href")->nodeValue; $x = z_fetch_url($href . '&maxwidth=' . App::$videowidth); - $txt = $x['body']; + if($x['success']) + $txt = $x['body']; + else + logger('json fetch failed: ' . $href); break; } } -- cgit v1.2.3 From 9bd8384a571fb691a77bbe42c3def32ada1b7cb5 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 30 Aug 2016 18:40:37 -0700 Subject: first cut at project governance doc --- doc/general.bb | 2 ++ doc/project/governance.bb | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 doc/project/governance.bb diff --git a/doc/general.bb b/doc/general.bb index bbc85c900..89451beaf 100644 --- a/doc/general.bb +++ b/doc/general.bb @@ -1,6 +1,8 @@ [h2]Project and site information[/h2] [h3]$Projectname[/h3] [zrl=[baseurl]/help/Privacy]Privacy Policy[/zrl] +[zrl=[baseurl]/help/project/governance]Project Governance[/zrl] +[zrl=[baseurl]/help/contributor/convenant]Project Covenant and Code of Conduct[/zrl] [zrl=[baseurl]/help/history]$Projectname history[/zrl] [h3]External resources[/h3] [zrl=[baseurl]/help/external-resource-links]List of external resources[/zrl] diff --git a/doc/project/governance.bb b/doc/project/governance.bb new file mode 100644 index 000000000..e13f6218c --- /dev/null +++ b/doc/project/governance.bb @@ -0,0 +1,45 @@ +[h2]$Projectname Governance[/h2] + +Governance relates to the management of a project and particularly how this relates to conflict resolution. + +This project uses a dual-governance model. + +The project as a whole and the repository were created initially by Mike Macgirvin; who controls the project copyright, and the project license, and manages the project as a Self Appointed Benevolent Dictator for Life. He holds veto power over any project proposal or decision and his word is final. + +That said, Mike has no interest in running the day to day activities of the project and influencing its direction, other than to protect his own work from sabotage. + +The internal project structure contains multiple "configurations" known as 'basic', 'standard', and 'pro'. Mike's veto power extends to any proposal or decision which he feels might adversely affect the 'pro' configuration. + +The 'basic and 'standard' configurations are controlled completely by the community. If the proposal or decision is crafted in such a way that its effects are limited to these configurations, Mike will consider relinquishing his power of veto and convert it to a normal community vote. + +Mario Vavti has done an incredible amount of work on the usability and theming of the project and holds veto power over any proposal or decision which might impact usability and "look and feel"; and his decision is also final. + +Mario's veto power is likewise restricted to anything using the standard project 'theme'. If a new theme is created and an otherwise vetoed decision is implemented entirely in this different theme and has no impact on the standard project theme, his veto [b]may[/b] also be turned into a normal community vote. + +This ability to work around a veto is at the discretion of Mike and Mario. They [b]may[/b] choose to relinquish their veto if the scope of the work is limited as described above, and in most circumstances they will leave the decision to the community. They are not obligated to do so. + +[h3]Community Governance[/h3] + +Beyond those two special cases, the project is maintained and decisions made by the 'community'. The governance structure is still evolving. Until the structure is finalised, decisions are made in the following order: + +[ol] +[*] Lazy Consensus + +If a project proposal is made to one of the community governance forums and there are no serious objections in a "reasonable" amount of time from date of proposal (we usually provide 2-3 days for all interested parties to weigh in), no vote needs to be taken and the proposal will be considered approved. Some concerns may be raised at this time, but if these are addressed during discussion and work-arounds provided, it will still be considered approved. + +[*] Veto + +If a proposal is vetoed, it is not necessarily the final word. See above on how to convert a veto into a normal community vote. This can be done by framing the proposal so that it does not impact the 'pro' configuration or the standard theme. + +[*] Community Vote + +A decision which does not have a clear mandate or clear consensus, but is not vetoed, can be taken to a community vote. At present this is a simple popular vote in one of the applicable community forums. At this time, popular vote decides the outcome. This may change in the future if the community adopts a 'council' governance model. This document will be updated at that time with the updated governance rules. +[/ol] + +Community Voting does not always provide a pleasant outcome and can generate polarised factions in the community (hence the reason why other models are under consideration). If the proposal is 'down voted' there are still several things which can be done and the proposal re-submitted with slightly different parameters (convert to an addon, convert to an optional feature which is disabled by default, etc.). If interest in the feature is high and the vote is "close", it can generate lots of bad feelings amongst the losing voters. On such close votes, it is [b]strongly recommended[/b] that the proposer take steps to address any concerns that were raised and re-submit. + + + + + + -- cgit v1.2.3 From 16b7df37170483aa8d3dba9080a5f3f3940ec202 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Tue, 30 Aug 2016 22:11:14 -0400 Subject: Imported webpage elements update existing elements properly. AllowCode permission is checked correctly and issues error on import if denied. --- Zotlabs/Module/Webpages.php | 2 -- include/import.php | 23 +++++++++++------------ 2 files changed, 11 insertions(+), 14 deletions(-) diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php index 028cc5114..acaca16c3 100644 --- a/Zotlabs/Module/Webpages.php +++ b/Zotlabs/Module/Webpages.php @@ -316,7 +316,6 @@ class Webpages extends \Zotlabs\Web\Controller { $path = $website; } $elements['pages'] = scan_webpage_elements($path, 'page', $cloud); - logger('$elements pages: ' . json_encode($elements['pages'])); $elements['layouts'] = scan_webpage_elements($path, 'layout', $cloud); $elements['blocks'] = scan_webpage_elements($path, 'block', $cloud); $_SESSION['blocks'] = $elements['blocks']; @@ -426,7 +425,6 @@ class Webpages extends \Zotlabs\Web\Controller { break; case 'exportcloud': - logger('exportcloud', LOGGER_DEBUG); if(isset($_POST['exportcloudpath']) && $_POST['exportcloudpath'] !== '') { $_SESSION['action'] = 'export_select_list'; $_SESSION['export'] = 'cloud'; diff --git a/include/import.php b/include/import.php index 10664aa53..ddffb2ac3 100644 --- a/include/import.php +++ b/include/import.php @@ -1311,8 +1311,6 @@ function scan_webpage_elements($path, $type, $cloud = false) { return false; } $content = file_get_contents($folder . '/' . $contentfilename); - logger('contentfile: ' . $folder . '/' . $contentfilename, LOGGER_DEBUG); - logger('content: ' . $content, LOGGER_DEBUG); if (!$content) { if(is_readable($folder . '/' . $contentfilename)) { $content = ''; @@ -1401,18 +1399,14 @@ function scan_webpage_elements($path, $type, $cloud = false) { ); $arr['mid'] = $arr['parent_mid'] = $iteminfo[0]['mid']; $arr['created'] = $iteminfo[0]['created']; - $arr['edited'] = (($element['edited']) ? datetime_convert('UTC', 'UTC', $element['edited']) : datetime_convert()); } else { // otherwise, generate the creation times and unique id - $arr['created'] = (($element['created']) ? datetime_convert('UTC', 'UTC', $element['created']) : datetime_convert()); - $arr['edited'] = datetime_convert('UTC', 'UTC', '0000-00-00 00:00:00'); + $arr['created'] = datetime_convert('UTC', 'UTC'); $arr['mid'] = $arr['parent_mid'] = item_message_id(); } + // Update the edited time whether or not the element already exists + $arr['edited'] = datetime_convert('UTC', 'UTC'); // Import the actual element content $arr['body'] = file_get_contents($element['path']); - if($arr['item_type'] === ITEM_TYPE_PDL) { - logger(' body: ' . $arr['body'], LOGGER_DEBUG); - logger(' path: ' . $element['path'], LOGGER_DEBUG); - } // The element owner is the channel importing the elements $arr['owner_xchan'] = get_observer_hash(); // The author is either the owner or whomever was specified @@ -1425,7 +1419,7 @@ function scan_webpage_elements($path, $type, $cloud = false) { 'application/x-pdl', 'application/x-php' ]; - // Blocks and pages can have any mimetype, but layouts must be text/bbcode + // Blocks and pages can have any of the valid mimetypes, but layouts must be text/bbcode if((in_array($element['mimetype'], $mimetypes)) && ($type === 'page' || $type === 'block') ) { $arr['mimetype'] = $element['mimetype']; } else { @@ -1434,7 +1428,7 @@ function scan_webpage_elements($path, $type, $cloud = false) { // Verify ability to use html or php!!! $execflag = false; - if ($arr['mimetype'] === 'application/x-php') { + if ($arr['mimetype'] === 'application/x-php' || $arr['mimetype'] === 'text/html') { $z = q("select account_id, account_roles, channel_pageflags from account " . "left join channel on channel_account_id = account_id where channel_id = %d limit 1", intval(local_channel()) @@ -1442,10 +1436,15 @@ function scan_webpage_elements($path, $type, $cloud = false) { if ($z && (($z[0]['account_roles'] & ACCOUNT_ROLE_ALLOWCODE) || ($z[0]['channel_pageflags'] & PAGE_ALLOWCODE))) { $execflag = true; + } else { + logger('Unable to import element "' . $name .'" because AllowCode permission is denied.'); + notice( t('Unable to import element "' . $name .'" because AllowCode permission is denied.') . EOL); + $element['import_success'] = 0; + return $element; } } - $z = q("select * from iconfig where v = '%s' and k = '%s' and cat = 'service' limit 1", + $z = q("select * from iconfig where v = '%s' and k = '%s' and cat = 'system' limit 1", dbesc($name), dbesc($namespace) ); -- cgit v1.2.3 From 5994fadebbbc9b12137d23eb52f6218df53cf613 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 30 Aug 2016 20:22:05 -0700 Subject: version and release policy guide --- doc/project/versions.bb | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 doc/project/versions.bb diff --git a/doc/project/versions.bb b/doc/project/versions.bb new file mode 100644 index 000000000..451cd0448 --- /dev/null +++ b/doc/project/versions.bb @@ -0,0 +1,30 @@ +[h2]Versions and Releases[/h2] + +$Projectname currently uses a standard version numbering sequence of $x.$y(.$z), for instance '1.12' or '1.12.1'. The first digit is the major version number. Major versions are released "roughly" once per year; often in December. + +The second digit is the minor release number. If this number is odd, it is a development version. If the number is even, it is a released version. Minor versions are released (moved from dev to master) typically once per month when development is 'stable', but this is likely to increase. Going forward minor releases will be made somewhere between one and three months; corresponding to a stable code point and when there is general community consensus that the current code base is stable enough to consider a release. + +The final digit is an interface or patch designator. + +The release process involves changing the version number (by definition the minor version number will be odd, and the minor number will be incremented). Once a year for a major release the major version will be incremented, and the minor number reset to 0. + +The release candidate is moved to a new branch; and testing will commence/continue for a period of 1-2 weeks afterward or until any significant issues have been resolved. This branch is usually labelled with RC (release candidate); for instance 1.8RC represents the pending release of version 1.8. At this time, the minor version number on the dev branch is incremented to the next odd number. (For instance 1.9). New development can then take place in the dev branch. + +Bug fixes should always be applied to 'dev' and from there merged forward (typically with git cherry-pick) to the RC branch and if necessary applied to the master or official release branch. + +At the time a release candidate is produced, the language strings file is frozen until a release is made. Translation work may continue, but all translations should be submitted to 'dev' and merged forward to RC. + + +Once RC testing is completed, RC is merged to 'master' and the RC version designator removed; resulting in one final checkin to change the version number. The CHANGELOG file should also be updated at or just prior to this time. If there are merge conflicts during this final merge, the merge will be abandoned; and 'git merge -s ours' applied. This results in a replacement of master with the contents of the RC branch. Conflicts often arise with string updates which were made to master after the last release and cannot easily be resolved without hand editing. Since this is a release of tested code, hand editing is discouraged, and the replacement merge strategy should be used instead. It is assumed that RC now contains the most recent well-tested code. + +Once the release is live and merged to master, the RC branch may be removed. + +Fixes may be made to master after release. Where possible these should be made to dev and 'git cherry-pick' used to merge forward; which preserves the commit info and prevents merge conflicts in the next cycle. Only rarely does a patch only apply to the master branch. If necessary this can be made. If the change is severe, the interface version number should be incremented. This is at the discretion of the community. In any event, a 'git pull' of the master branch should always result in the latest release with any post-release patches applied. + +The interface number (the $z in $x.$y.$z) should be incremented in dev whenever a change is made which changes the interfaces or API in incompatible ways so that any external packages (especially addons and API clients) relying on a the current behaviour can discover and change their own interfaces accordingly at the point that it changed. + + + + + + \ No newline at end of file -- cgit v1.2.3 From bf3a4095694808486106fcce7cc371ce5c13f587 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 30 Aug 2016 20:54:54 -0700 Subject: only check permissions on normal photos and force cover photos as well as profile photos to be public. As a side effect 'thing' photos will also be considered public. --- Zotlabs/Module/Photo.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Zotlabs/Module/Photo.php b/Zotlabs/Module/Photo.php index 66aaec49f..a16206299 100644 --- a/Zotlabs/Module/Photo.php +++ b/Zotlabs/Module/Photo.php @@ -133,7 +133,16 @@ class Photo extends \Zotlabs\Web\Controller { $allowed = (($r[0]['uid']) ? perm_is_allowed($r[0]['uid'],$observer_xchan,'view_storage') : true); $sql_extra = permissions_sql($r[0]['uid']); + + if(! $sql_extra) + $sql_extra = ' and true '; + + // Only check permissions on normal photos. Those photos we don't check includes + // profile photos, xchan photos (which are also profile photos), 'thing' photos, + // and cover photos + $sql_extra = " and (( photo_usage = 0 $sql_extra ) or photo_usage != 0 )"; + $channel = channelx_by_n($r[0]['uid']); // Now we'll see if we can access the photo -- cgit v1.2.3 From b775a1aa0e36a74f0f937d85f458fd12af18a264 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 30 Aug 2016 21:43:33 -0700 Subject: The 'save to folder' modal dialog looked like crap. Now it only looks like dung. --- view/css/conversation.css | 8 ++++++++ view/tpl/field_combobox.tpl | 10 +++++----- view/tpl/filer_dialog.tpl | 2 ++ 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/view/css/conversation.css b/view/css/conversation.css index 6c5171545..677198149 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -319,3 +319,11 @@ img.smiley.emoji:hover { width: 32px; height: 32px; } + +.combobox { + padding: 15px; +} + +#filer_save { + margin-left: 15px; +} \ No newline at end of file diff --git a/view/tpl/field_combobox.tpl b/view/tpl/field_combobox.tpl index 337c60673..523595c0b 100755 --- a/view/tpl/field_combobox.tpl +++ b/view/tpl/field_combobox.tpl @@ -1,13 +1,13 @@ -
    +
    - {{* html5 don't work on Chrome, Safari and IE9 see https://github.com/thgreasi/datalist-polyfill + {{* {{foreach $field.4 as $opt=>$val}} *}} + *}} - - + diff --git a/view/tpl/filer_dialog.tpl b/view/tpl/filer_dialog.tpl index ae59ab713..71e075958 100755 --- a/view/tpl/filer_dialog.tpl +++ b/view/tpl/filer_dialog.tpl @@ -1,4 +1,6 @@ +
    {{include file="field_combobox.tpl"}}
    +
    -- cgit v1.2.3 From 2b9322fc7d879fecbe334083bbd028538c985c54 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 31 Aug 2016 09:38:47 +0200 Subject: provide a possibility to create checklists in bbcode [x] creates a checked checkbox, [] creates an unchecked checkbox --- include/bbcode.php | 2 ++ view/css/conversation.css | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/include/bbcode.php b/include/bbcode.php index db3a1011b..2d86bd263 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -769,6 +769,8 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true, $cache = false) } // Check for list text $Text = str_replace("[*]", "
  • ", $Text); + $Text = str_replace("[]", "
  • ", $Text); + $Text = str_replace("[x]", "
  • ", $Text); // handle nested lists $endlessloop = 0; diff --git a/view/css/conversation.css b/view/css/conversation.css index 6c5171545..fe89e2536 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -319,3 +319,8 @@ img.smiley.emoji:hover { width: 32px; height: 32px; } + +input.listcheckbox { + margin: 0px; + vertical-align: middle; +} -- cgit v1.2.3 From 37ad734cead89df63edd75a4c3c3a4fb5b4847bc Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Wed, 31 Aug 2016 13:17:23 +0200 Subject: Dutch and Spanish string update --- view/es-es/hmessages.po | 12461 +++++++++++++++++++++++----------------------- view/es-es/hstrings.php | 3118 ++++++------ view/nl/hmessages.po | 12257 +++++++++++++++++++++++---------------------- view/nl/hstrings.php | 3986 +++++++-------- 4 files changed, 16046 insertions(+), 15776 deletions(-) diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 0c3c85159..0e6b25df5 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-29 07:05+0000\n" +"POT-Creation-Date: 2016-08-26 00:02-0700\n" +"PO-Revision-Date: 2016-08-31 06:34+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -24,83 +24,84 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 +#: ../../include/permissions.php:939 msgid "Social Networking" msgstr "Redes sociales" #: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 +#: ../../include/permissions.php:939 msgid "Social - Mostly Public" msgstr "Social - Público en su mayor parte" #: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 +#: ../../include/permissions.php:939 msgid "Social - Restricted" msgstr "Social - Restringido" #: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 +#: ../../include/permissions.php:939 msgid "Social - Private" msgstr "Social - Privado" #: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 +#: ../../include/permissions.php:940 msgid "Community Forum" msgstr "Foro de discusión" #: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 +#: ../../include/permissions.php:940 msgid "Forum - Mostly Public" msgstr "Foro - Público en su mayor parte" #: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 +#: ../../include/permissions.php:940 msgid "Forum - Restricted" msgstr "Foro - Restringido" #: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 +#: ../../include/permissions.php:940 msgid "Forum - Private" msgstr "Foro - Privado" #: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 +#: ../../include/permissions.php:941 msgid "Feed Republish" msgstr "Republicar un \"feed\"" #: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 +#: ../../include/permissions.php:941 msgid "Feed - Mostly Public" msgstr "Feed - Público en su mayor parte" #: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 +#: ../../include/permissions.php:941 msgid "Feed - Restricted" msgstr "Feed - Restringido" #: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 +#: ../../include/permissions.php:942 msgid "Special Purpose" msgstr "Propósito especial" #: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 +#: ../../include/permissions.php:942 msgid "Special - Celebrity/Soapbox" msgstr "Especial - Celebridad / Tribuna improvisada" #: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 +#: ../../include/permissions.php:942 msgid "Special - Group Repository" msgstr "Especial - Repositorio de grupo" -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../Zotlabs/Access/PermissionRoles.php:204 +#: ../../include/permissions.php:943 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:908 +#: ../../include/selectors.php:140 msgid "Other" msgstr "Otro" #: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 +#: ../../include/permissions.php:943 msgid "Custom/Expert Mode" msgstr "Modo personalizado/experto" @@ -108,19 +109,19 @@ msgstr "Modo personalizado/experto" msgid "Can view my channel stream and posts" msgstr "Pueden verse la actividad y publicaciones de mi canal" -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:36 msgid "Can send me their channel stream and posts" msgstr "Se me pueden enviar entradas y contenido de un canal" -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:30 msgid "Can view my default channel profile" msgstr "Puede verse mi perfil de canal predeterminado." -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:31 msgid "Can view my connections" msgstr "Pueden verse mis conexiones" -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:32 msgid "Can view my file storage and photos" msgstr "Pueden verse mi repositorio de ficheros y mis fotos" @@ -140,11 +141,11 @@ msgstr "Pueden crearse / modificarse páginas personales en mi canal" msgid "Can post on my channel (wall) page" msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:38 msgid "Can comment on or like my posts" msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:39 msgid "Can send me private mail messages" msgstr "Se me pueden enviar mensajes privados" @@ -160,7 +161,7 @@ msgstr "Pueden reenviarse publicaciones a todas las conexiones de mi canal a tra msgid "Can chat with me" msgstr "Se puede chatear conmigo" -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:47 msgid "Can source my public posts in derived channels" msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" @@ -172,7 +173,7 @@ msgstr "Se puede administrar mi canal" msgid "parent" msgstr "padre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2657 msgid "Collection" msgstr "Colección" @@ -196,17 +197,17 @@ msgstr "Programar bandeja de entrada" msgid "Schedule Outbox" msgstr "Programar bandeja de salida" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 -#: ../../Zotlabs/Module/Photos.php:1241 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 +#: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1599 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1613 +#: ../../include/conversation.php:1033 msgid "Unknown" msgstr "Desconocido" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 -#: ../../include/conversation.php:1654 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1672 +#: ../../include/nav.php:95 msgid "Files" msgstr "Ficheros" @@ -218,25 +219,24 @@ msgstr "Total" msgid "Shared" msgstr "Compartido" -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:216 #: ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 msgid "Create" msgstr "Crear" -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 +#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1626 msgid "Upload" msgstr "Subir" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 -#: ../../Zotlabs/Module/Settings.php:672 -#: ../../Zotlabs/Module/Sharedwithme.php:99 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:684 +#: ../../Zotlabs/Module/Settings.php:710 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 msgid "Name" msgstr "Nombre" @@ -245,7 +245,7 @@ msgid "Type" msgstr "Tipo" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1326 msgid "Size" msgstr "Tamaño" @@ -254,124 +254,121 @@ msgstr "Tamaño" msgid "Last Modified" msgstr "Última modificación" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Storage/Browser.php:240 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:145 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 #: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:976 -#: ../../include/channel.php:980 ../../include/menu.php:108 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Admin.php:2127 +#: ../../Zotlabs/Module/Webpages.php:217 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/menu.php:113 msgid "Edit" msgstr "Editar" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Storage/Browser.php:241 #: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 -#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Editwebpage.php:170 +#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1226 ../../Zotlabs/Module/Admin.php:2128 +#: ../../Zotlabs/Module/Webpages.php:219 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../include/conversation.php:660 msgid "Delete" msgstr "Eliminar" -#: ../../Zotlabs/Storage/Browser.php:285 +#: ../../Zotlabs/Storage/Browser.php:301 #, php-format msgid "You are using %1$s of your available file storage." msgstr "Está usando %1$s de su espacio disponible para ficheros." -#: ../../Zotlabs/Storage/Browser.php:290 +#: ../../Zotlabs/Storage/Browser.php:306 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "Está usando %1$s de %2$s que tiene a su disposición para ficheros. (%3$s%)" -#: ../../Zotlabs/Storage/Browser.php:302 +#: ../../Zotlabs/Storage/Browser.php:317 msgid "WARNING:" msgstr "ATENCIÓN:" -#: ../../Zotlabs/Storage/Browser.php:305 +#: ../../Zotlabs/Storage/Browser.php:322 msgid "Create new folder" msgstr "Crear nueva carpeta" -#: ../../Zotlabs/Storage/Browser.php:307 +#: ../../Zotlabs/Storage/Browser.php:324 msgid "Upload file" msgstr "Subir fichero" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 -msgid "Permission denied" -msgstr "Permiso denegado" +#: ../../Zotlabs/Storage/Browser.php:337 +msgid "Drop files here to immediately upload" +msgstr "Arrastre los ficheros aquí para subirlos de forma inmediata" -#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Bookmarks.php:61 #: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Setup.php:219 +#: ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 #: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 #: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 -#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Webpages.php:95 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 #: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 +#: ../../Zotlabs/Module/Channel.php:268 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Webpages.php:73 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 -#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/attach.php:141 -#: ../../include/attach.php:189 ../../include/attach.php:252 -#: ../../include/attach.php:266 ../../include/attach.php:273 -#: ../../include/attach.php:338 ../../include/attach.php:352 -#: ../../include/attach.php:359 ../../include/attach.php:439 -#: ../../include/attach.php:901 ../../include/attach.php:972 -#: ../../include/attach.php:1124 ../../include/items.php:3448 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/items.php:3477 ../../include/photos.php:27 +#: ../../include/attach.php:142 ../../include/attach.php:190 +#: ../../include/attach.php:253 ../../include/attach.php:267 +#: ../../include/attach.php:274 ../../include/attach.php:339 +#: ../../include/attach.php:353 ../../include/attach.php:360 +#: ../../include/attach.php:440 ../../include/attach.php:902 +#: ../../include/attach.php:973 ../../include/attach.php:1125 msgid "Permission denied." msgstr "Acceso denegado." @@ -379,31 +376,40 @@ msgstr "Acceso denegado." msgid "Not Found" msgstr "No encontrado" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 #: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 #: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Página no encontrada." +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../include/items.php:384 +msgid "Permission denied" +msgstr "Permiso denegado" + #: ../../Zotlabs/Zot/Auth.php:138 msgid "" "Remote authentication blocked. You are logged into this site locally. Please" " logout and retry." msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo." -#: ../../Zotlabs/Zot/Auth.php:246 ../../Zotlabs/Module/Openid.php:76 -#: ../../Zotlabs/Module/Openid.php:183 +#: ../../Zotlabs/Zot/Auth.php:246 #, php-format msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." #: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Filestorage.php:59 +#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../include/channel.php:876 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 +#: ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "El perfil solicitado no está disponible." @@ -419,1200 +425,1288 @@ msgstr "Ausente" msgid "Online" msgstr "Conectado/a" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "No se ha podido acceder al registro de contacto." +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Mensaje no válido" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "No se ha podido localizar el perfil seleccionado." +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "sin resultados" -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Connection updated." -msgstr "Conexión actualizada." +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "se ha realizado la sincronización del canal" -#: ../../Zotlabs/Module/Connedit.php:250 -msgid "Failed to update connection record." -msgstr "Error al actualizar el registro de la conexión." +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "encolado" -#: ../../Zotlabs/Module/Connedit.php:300 -msgid "is now connected to" -msgstr "ahora está conectado/a" +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "enviado" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 -msgid "No" -msgstr "No" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "aceptado para el envío" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 -msgid "Yes" -msgstr "Sí" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "actualizado" -#: ../../Zotlabs/Module/Connedit.php:435 -msgid "Could not access address book record." -msgstr "No se pudo acceder al registro en su libreta de direcciones." +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "actualización ignorada" -#: ../../Zotlabs/Module/Connedit.php:455 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Recarga fallida - no se puede encontrar el canal en este momento." +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permiso denegado" -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 -msgid "Unable to set address book parameters." -msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "destinatario no encontrado" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Connection has been removed." -msgstr "La conexión ha sido eliminada." +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "mensaje de correo revocado" -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 -msgid "View Profile" -msgstr "Ver el perfil" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "se ha recibido mensaje duplicado" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "correo enviado" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Dreport.php:146 #, php-format -msgid "View %s's profile" -msgstr "Ver el perfil de %s" +msgid "Delivery report for %1$s" +msgstr "Informe de entrega para %1$s" -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Refresh Permissions" -msgstr "Recargar los permisos" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opciones" -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "Fetch updated permissions" -msgstr "Obtener los permisos actualizados" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Volver a enviar" -#: ../../Zotlabs/Module/Connedit.php:563 -msgid "Recent Activity" -msgstr "Actividad reciente" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Al intentar obtener la dirección, retorna el error: %1$s" -#: ../../Zotlabs/Module/Connedit.php:566 -msgid "View recent posts and comments" -msgstr "Ver publicaciones y comentarios recientes" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Autorizar una conexión de aplicación" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Desbloquear" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Volver a su aplicación e introducir este código de seguridad:" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Bloquear" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Por favor inicie sesión para continuar." -#: ../../Zotlabs/Module/Connedit.php:573 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "This connection is blocked!" -msgstr "¡Esta conexión está bloqueada!" +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "Yes" +msgstr "Sí" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Unignore" -msgstr "Dejar de ignorar" +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:463 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "No" +msgstr "No" -#: ../../Zotlabs/Module/Connedit.php:578 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignorar" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valoración" -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Sitio web:" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is ignored!" -msgstr "¡Esta conexión es ignorada!" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unarchive" -msgstr "Desarchivar" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Valoración (esta información es pública)" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Archive" -msgstr "Archivar" +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" -#: ../../Zotlabs/Module/Connedit.php:589 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Setup.php:316 +#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Settings.php:682 ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:886 ../../Zotlabs/Module/Settings.php:912 +#: ../../Zotlabs/Module/Settings.php:935 +#: ../../Zotlabs/Module/Settings.php:1040 +#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:701 ../../Zotlabs/Module/Admin.php:784 +#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Admin.php:1662 +#: ../../Zotlabs/Module/Admin.php:1747 ../../Zotlabs/Module/Admin.php:2130 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:711 +#: ../../include/widgets.php:763 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" +msgstr "Enviar" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "This connection is archived!" -msgstr "¡Esta conexión esta archivada!" +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1351 +msgid "Public Hubs" +msgstr "Servidores públicos" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Unhide" -msgstr "Mostrar" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Hide" -msgstr "Ocultar" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "Dirección del hub" -#: ../../Zotlabs/Module/Connedit.php:597 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo de acceso" -#: ../../Zotlabs/Module/Connedit.php:598 -msgid "This connection is hidden!" -msgstr "¡Esta conexión está oculta!" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Normas de registro" -#: ../../Zotlabs/Module/Connedit.php:605 -msgid "Delete this connection" -msgstr "Eliminar esta conexión" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Estadísticas" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 -msgid "Me" -msgstr "Yo" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 -msgid "Family" -msgstr "Familia" +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Valoraciones" -#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 -#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 -#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:495 -msgid "Friends" -msgstr "Amigos/as" +#: ../../Zotlabs/Module/Pubsites.php:43 +msgid "Rate" +msgstr "Valorar" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "Conocidos/as" +#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ubicación" -#: ../../Zotlabs/Module/Connedit.php:624 -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 -msgid "All" -msgstr "Todos/as" +#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Webpages.php:223 +#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Ver" -#: ../../Zotlabs/Module/Connedit.php:685 -msgid "Approve this connection" -msgstr "Aprobar esta conexión" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." -#: ../../Zotlabs/Module/Connedit.php:685 -msgid "Accept connection to allow communication" -msgstr "Aceptar la conexión para permitir la comunicación" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." -#: ../../Zotlabs/Module/Connedit.php:690 -msgid "Set Affinity" -msgstr "Ajustar la afinidad" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Las contraseñas no coinciden." -#: ../../Zotlabs/Module/Connedit.php:693 -msgid "Set Profile" -msgstr "Ajustar el perfil" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." -#: ../../Zotlabs/Module/Connedit.php:696 -msgid "Set Affinity & Profile" -msgstr "Ajustar la afinidad y el perfil" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Su registro está pendiente de aprobación por el propietario del sitio." -#: ../../Zotlabs/Module/Connedit.php:745 -msgid "none" -msgstr "-" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Su registro no puede ser procesado." -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 -msgid "Connection Default Permissions" -msgstr "Permisos predeterminados de conexión" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "El registro está deshabilitado en este sitio." -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 -#, php-format -msgid "Connection: %s" -msgstr "Conexión: %s" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "El registro en este hub está sometido a aprobación previa." -#: ../../Zotlabs/Module/Connedit.php:750 -msgid "Apply these permissions automatically" -msgstr "Aplicar estos permisos automaticamente" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrarse en otro hub afiliado." -#: ../../Zotlabs/Module/Connedit.php:750 -msgid "Connection requests will be approved without your interaction" -msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." -#: ../../Zotlabs/Module/Connedit.php:752 -msgid "This connection's primary address is" -msgstr "La dirección primaria de esta conexión es" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Términos del servicio" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "Available locations:" -msgstr "Ubicaciones disponibles:" +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Acepto los %s de este sitio" -#: ../../Zotlabs/Module/Connedit.php:757 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "Connection Tools" -msgstr "Gestión de las conexiones" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Su dirección de correo electrónico" -#: ../../Zotlabs/Module/Connedit.php:760 -msgid "Slide to adjust your degree of friendship" -msgstr "Deslizar para ajustar el grado de amistad" +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Elija una contraseña" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valoración" +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../Zotlabs/Module/Connedit.php:762 -msgid "Slide to adjust your rating" -msgstr "Deslizar para ajustar su valoración" +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Por favor, introduzca el código de su invitación" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 -msgid "Optionally explain your rating" -msgstr "Opcionalmente, puede explicar su valoración" +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Name or caption" +msgstr "Nombre o descripción" -#: ../../Zotlabs/Module/Connedit.php:765 -msgid "Custom Filter" -msgstr "Filtro personalizado" +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Only import posts with this text" -msgstr "Importar solo entradas que contengan este texto" +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +msgid "Choose a short nickname" +msgstr "Elija un alias corto" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +#, php-format msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" - -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Do not import posts with this text" -msgstr "No importar entradas que contengan este texto" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" -#: ../../Zotlabs/Module/Connedit.php:769 -msgid "This information is public!" -msgstr "¡Esta información es pública!" +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Channel role and privacy" +msgstr "Clase de canal y privacidad" -#: ../../Zotlabs/Module/Connedit.php:774 -msgid "Connection Pending Approval" -msgstr "Conexión pendiente de aprobación" +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Select a channel role with your privacy requirements." +msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" -#: ../../Zotlabs/Module/Connedit.php:777 -msgid "inherited" -msgstr "heredado" +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Read more about roles" +msgstr "Leer más sobre los roles" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 -#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:161 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 -#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 -#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 -#: ../../Zotlabs/Module/Settings.php:943 -#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Connedit.php:779 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "sí" -#: ../../Zotlabs/Module/Connedit.php:781 -msgid "Their Settings" -msgstr "Sus ajustes" +#: ../../Zotlabs/Module/Register.php:248 ../../Zotlabs/Module/Admin.php:503 +msgid "Registration" +msgstr "Registro" -#: ../../Zotlabs/Module/Connedit.php:782 -msgid "My Settings" -msgstr "Mis ajustes" +#: ../../Zotlabs/Module/Register.php:253 +msgid "Membership on this site is by invitation only." +msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../Zotlabs/Module/Connedit.php:784 -msgid "Individual Permissions" -msgstr "Permisos individuales" +#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 +#: ../../boot.php:1720 +msgid "Register" +msgstr "Registrarse" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Register.php:266 msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones." -#: ../../Zotlabs/Module/Connedit.php:786 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Marcador añadido" -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "Last update:" -msgstr "Última actualización:" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mis marcadores" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Marcadores de mis conexiones" #: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 #: ../../Zotlabs/Module/Search.php:17 #: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." msgstr "Acceso público denegado." #: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 +#: ../../Zotlabs/Module/Admin.php:1575 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3398 msgid "Item not found." msgstr "Elemento no encontrado." -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Nombre" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/conversation.php:1665 ../../include/nav.php:94 +msgid "Photos" +msgstr "Fotos" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Apellido" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Settings.php:683 ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Admin.php:1420 ../../Zotlabs/Module/Wiki.php:171 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 +#: ../../include/conversation.php:1292 +msgid "Cancel" +msgstr "Cancelar" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Sobrenombre o Alias" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Elemento no válido." -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nombre completo" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal no encontrado." -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "Correo electrónico" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Foto del perfil" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Guardar en carpeta:" -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Foto del perfil 16px" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- seleccionar -" -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Foto del perfil 32px" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2047 +#: ../../Zotlabs/Module/Admin.php:2067 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Guardar" -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Foto del perfil 48px" +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "No se encuentra el grupo" -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Foto del perfil 64px" +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "No se encuentra el canal" -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Foto del perfil 80px" +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "foro" -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Foto del perfil 128px" +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Buscar resultados para:" -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Huso horario" +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "El grupo de canales está vacío" -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Dirección de la página personal" +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Grupo de canales: " -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Idioma" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Conexión no válida." -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Año de nacimiento" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloqueadas" -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mes de nacimiento" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignoradas" -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Día de nacimiento" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Ocultas" -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Fecha de nacimiento" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archivadas" -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Género" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1568 +msgid "New" +msgstr "Nuevas" -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Hombre" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:497 +msgid "All" +msgstr "Todos/as" -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Mujer" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canal añadido." +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Mostrar conexiones (nuevas) pendientes" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valoración" -msgstr[1] "%d valoraciones" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Todas las conexiones" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Género:" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Mostrar todas las conexiones" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Estado:" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostrar solo las conexiones bloqueadas" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Página personal:" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostrar solo conexiones ignoradas" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 -msgid "Age:" -msgstr "Edad:" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostrar solo las conexiones archivadas" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 -#: ../../include/event.php:52 ../../include/event.php:84 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Ubicación:" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostrar solo las conexiones ocultas" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Descripción:" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Pendiente de aprobación" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 -msgid "Hometown:" -msgstr "Lugar de nacimiento:" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 -msgid "About:" -msgstr "Sobre mí:" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Editar conexión" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 -#: ../../include/connections.php:78 ../../include/conversation.php:959 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 -msgid "Connect" -msgstr "Conectar" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Eliminar conexión" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Foro público:" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Dirección del canal" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Palabras clave:" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Red" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "No sugerir:" +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:723 +msgid "Status" +msgstr "Estado" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Conexiones comunes:" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "Conectado/a" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Directorio global:" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Directorio local:" +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Approve" +msgstr "Aprobar" -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Encontrar" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Ignorar esta conexión" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Encontrar:" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Ignorar" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Sugerencias de canales" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "siguiente página" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:855 ../../include/nav.php:190 +msgid "Connections" +msgstr "Conexiones" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "página anterior" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:925 +#: ../../include/text.php:937 ../../include/acl_selectors.php:174 +#: ../../include/nav.php:169 +msgid "Search" +msgstr "Buscar" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Ordenar opciones" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Buscar sus conexiones" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabético" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Buscar conexiones" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Alfabético inverso" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Encontrar" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "De más nuevo a más antiguo" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "De más antiguo a más nuevo" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Imágenes de portada del perfil" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Sin entradas (algunas entradas pueden estar ocultas)." +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "El ajuste del tamaño de la imagen ha fallado." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continuar" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "No ha sido posible procesar la imagen" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Configuración del canal premium" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "La carga de la imagen ha fallado." -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restricciones de conexión del canal premium" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "No ha sido posible procesar la imagen." -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4312 +msgid "female" +msgstr "mujer" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4313 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4314 +msgid "male" +msgstr "hombre" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4315 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4317 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal premium o restringido" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 +msgid "cover photo" +msgstr "Imagen de portada del perfil" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Entradas de calendario importadas." +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto no disponible." -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "No se han encontrado entradas de calendario." +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Subir fichero:" -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de que haya comenzado." +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Seleccionar un perfil:" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "No se puede crear la vista previa." +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Subir imagen de portada del perfil" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Se requieren el título del evento y su hora de inicio." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "or" +msgstr "o" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento no encontrado." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "Omitir este paso" -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "evento" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "Seleccione una foto de sus álbumes de fotos" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Editar el título del evento" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Recortar imagen" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Título del evento" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obligatorio" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Edición completada" -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categorías (lista separada por comas)" +#: ../../Zotlabs/Module/Setup.php:183 +msgid "$Projectname Server - Setup" +msgstr "Servidor $Projectname - Instalación" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Editar la categoría" +#: ../../Zotlabs/Module/Setup.php:187 +msgid "Could not connect to database." +msgstr "No se ha podido conectar a la base de datos." -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categoría" +#: ../../Zotlabs/Module/Setup.php:191 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Modificar la fecha y hora de comienzo" +#: ../../Zotlabs/Module/Setup.php:198 +msgid "Could not create table." +msgstr "No se puede crear la tabla." -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Fecha y hora de comienzo" +#: ../../Zotlabs/Module/Setup.php:203 +msgid "Your site database has been installed." +msgstr "La base de datos del sitio ha sido instalada." -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "La fecha y hora de terminación no se conocen o no son relevantes" +#: ../../Zotlabs/Module/Setup.php:207 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Modificar la fecha y hora de terminación" +#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:270 +#: ../../Zotlabs/Module/Setup.php:733 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Fecha y hora de terminación" +#: ../../Zotlabs/Module/Setup.php:267 +msgid "System check" +msgstr "Verificación del sistema" -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Ajustar para obtener el visor de los husos horarios" +#: ../../Zotlabs/Module/Setup.php:271 ../../Zotlabs/Module/Photos.php:960 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +msgid "Next" +msgstr "Siguiente" -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." +#: ../../Zotlabs/Module/Setup.php:272 +msgid "Check again" +msgstr "Verificar de nuevo" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Editar la descripción" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database connection" +msgstr "Conexión a la base de datos" -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descripción" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Modificar la dirección" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ubicación" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Compartir este evento" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Server Name" +msgstr "Nombre del servidor de base de datos" -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Previsualizar" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Default is 127.0.0.1" +msgstr "De forma predeterminada es 127.0.0.1" -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Configuración de permisos" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Port" +msgstr "Puerto de la base de datos" -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Opciones avanzadas" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Communication port number - use 0 for default" +msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Login Name" +msgstr "Usuario de la base de datos" -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Editar evento" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Password" +msgstr "Contraseña de acceso a la base de datos" -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Borrar evento" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Name" +msgstr "Nombre de la base de datos" -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Enlazar con la entrada en su ubicación original" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Type" +msgstr "Tipo de base de datos" -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "calendario" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "Site administrator email address" +msgstr "Dirección de correo electrónico del administrador del sitio" -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Editar el evento" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crear un evento" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Website URL" +msgstr "Dirección del sitio web" -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Anterior" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Please use SSL (https) URL if available." +msgstr "Por favor, use SSL (https) si está disponible." -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Siguiente" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:360 +msgid "Please select a default timezone for your website" +msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exportar" +#: ../../Zotlabs/Module/Setup.php:335 ../../Zotlabs/Module/Admin.php:489 +msgid "Basic/Minimal Social Networking" +msgstr "Red social básica o mínima" -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Ver" +#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:490 +msgid "Standard Configuration (default)" +msgstr "Configuración estándar (por defecto)" -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "Mes" +#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:491 +msgid "Professional" +msgstr "Profesional" -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "Semana" +#: ../../Zotlabs/Module/Setup.php:343 +msgid "Site settings" +msgstr "Ajustes del sitio" -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "Día" +#: ../../Zotlabs/Module/Setup.php:358 ../../Zotlabs/Module/Admin.php:512 +msgid "Server Configuration/Role" +msgstr "Configuración del servidor" -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Hoy" +#: ../../Zotlabs/Module/Setup.php:399 +msgid "PHP version 5.5 or greater is required." +msgstr "Se requiere la versión 5.5, o superior, de PHP." -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Evento borrado" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version" +msgstr "Versión de PHP" -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Error al eliminar el evento" +#: ../../Zotlabs/Module/Setup.php:415 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Marcador añadido" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron." -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mis marcadores" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "PHP executable path" +msgstr "Ruta del ejecutable PHP" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Marcadores de mis conexiones" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -msgid "Item not found" -msgstr "Elemento no encontrado" +#: ../../Zotlabs/Module/Setup.php:425 +msgid "Command line PHP" +msgstr "PHP en línea de comandos" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "El elemento no es editable" +#: ../../Zotlabs/Module/Setup.php:434 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Editar la entrada" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "This is required for message delivery to work." +msgstr "Esto es necesario para que funcione la transmisión de mensajes." -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Setup.php:438 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Cancelar" +#: ../../Zotlabs/Module/Setup.php:456 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento no válido." +#: ../../Zotlabs/Module/Setup.php:461 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canal no encontrado." +#: ../../Zotlabs/Module/Setup.php:463 +msgid "PHP upload limits" +msgstr "Límites PHP de subida" -#: ../../Zotlabs/Module/Page.php:131 +#: ../../Zotlabs/Module/Setup.php:486 msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Guardar en carpeta:" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- seleccionar -" +#: ../../Zotlabs/Module/Setup.php:490 +msgid "Generate encryption keys" +msgstr "Generar claves de cifrado" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Guardar" +#: ../../Zotlabs/Module/Setup.php:502 +msgid "libCurl PHP module" +msgstr "módulo libCurl PHP" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloqueadas" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "GD graphics PHP module" +msgstr "módulo PHP GD graphics" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignoradas" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "OpenSSL PHP module" +msgstr "módulo PHP OpenSSL" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Ocultas" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "mysqli or postgres PHP module" +msgstr "módulo PHP mysqli o postgres" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archivadas" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mb_string PHP module" +msgstr "módulo PHP mb_string" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 -msgid "New" -msgstr "Nuevas" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "xml PHP module" +msgstr "módulo PHP xml" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuevas conexiones" +#: ../../Zotlabs/Module/Setup.php:511 ../../Zotlabs/Module/Setup.php:513 +msgid "Apache mod_rewrite module" +msgstr "módulo Apache mod_rewrite " -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Mostrar conexiones (nuevas) pendientes" +#: ../../Zotlabs/Module/Setup.php:511 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Todas las conexiones" +#: ../../Zotlabs/Module/Setup.php:517 ../../Zotlabs/Module/Setup.php:520 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostrar todas las conexiones" +#: ../../Zotlabs/Module/Setup.php:517 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostrar solo las conexiones bloqueadas" +#: ../../Zotlabs/Module/Setup.php:525 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostrar solo conexiones ignoradas" +#: ../../Zotlabs/Module/Setup.php:529 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostrar solo las conexiones archivadas" +#: ../../Zotlabs/Module/Setup.php:533 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostrar solo las conexiones ocultas" +#: ../../Zotlabs/Module/Setup.php:537 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Pendiente de aprobación" +#: ../../Zotlabs/Module/Setup.php:541 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Setup.php:545 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Editar conexión" +#: ../../Zotlabs/Module/Setup.php:563 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Eliminar conexión" +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Dirección del canal" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Red" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" -msgstr "Estado" +#: ../../Zotlabs/Module/Setup.php:569 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php tiene permisos de escritura" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "Conectado/a" +#: ../../Zotlabs/Module/Setup.php:583 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Aprobar esta conexión" +#: ../../Zotlabs/Module/Setup.php:584 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal." -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" -msgstr "Aprobar" +#: ../../Zotlabs/Module/Setup.php:585 ../../Zotlabs/Module/Setup.php:606 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignorar esta conexión" +#: ../../Zotlabs/Module/Setup.php:586 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Actividad reciente" +#: ../../Zotlabs/Module/Setup.php:589 +#, php-format +msgid "%s is writable" +msgstr "%s tiene permisos de escritura" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:188 ../../include/text.php:855 -msgid "Connections" -msgstr "Conexiones" +#: ../../Zotlabs/Module/Setup.php:605 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:274 -msgid "Search" -msgstr "Buscar" +#: ../../Zotlabs/Module/Setup.php:609 +msgid "store is writable" +msgstr "\"store\" tiene permisos de escritura" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Buscar sus conexiones" +#: ../../Zotlabs/Module/Setup.php:642 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Buscar conexiones" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." -msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Imágenes de portada del perfil" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." -msgstr "El ajuste del tamaño de la imagen ha fallado." +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" -msgstr "No ha sido posible procesar la imagen" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." -msgstr "La carga de la imagen ha fallado." +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor." -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." -msgstr "No ha sido posible procesar la imagen." +#: ../../Zotlabs/Module/Setup.php:652 +msgid "SSL certificate validation" +msgstr "validación del certificado SSL" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 -msgid "female" -msgstr "mujer" +#: ../../Zotlabs/Module/Setup.php:658 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s ha actualizado su %2$s" +#: ../../Zotlabs/Module/Setup.php:661 +msgid "Url rewrite is working" +msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 -msgid "male" -msgstr "hombre" +#: ../../Zotlabs/Module/Setup.php:670 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s ha actualizado su %2$s" +#: ../../Zotlabs/Module/Setup.php:694 +msgid "Errors encountered creating database tables." +msgstr "Se han encontrado errores al crear las tablas de la base de datos." + +#: ../../Zotlabs/Module/Setup.php:731 +msgid "

    What next

    " +msgstr "

    Siguiente paso

    " + +#: ../../Zotlabs/Module/Setup.php:732 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Directory.php:243 #, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s ha actualizado su %2$s" +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valoración" +msgstr[1] "%d valoraciones" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 -msgid "cover photo" -msgstr "Imagen de portada del perfil" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Género:" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." -msgstr "Foto no disponible." +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Estado:" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" -msgstr "Subir fichero:" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Página personal:" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" -msgstr "Seleccionar un perfil:" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Edad:" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Subir imagen de portada del perfil" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../include/bb2diaspora.php:507 +msgid "Location:" +msgstr "Ubicación:" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1080 -msgid "or" -msgstr "o" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Descripción:" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" -msgstr "Omitir este paso" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Lugar de nacimiento:" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" -msgstr "Seleccione una foto de sus álbumes de fotos" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Sobre mí:" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" -msgstr "Recortar imagen" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/channel.php:1034 ../../include/conversation.php:957 +msgid "Connect" +msgstr "Conectar" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Foro público:" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "Edición completada" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Palabras clave:" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "página web" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "No sugerir:" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloque" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Conexiones comunes:" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "plantilla" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Directorio global:" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menú" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Directorio local:" -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "%s elemento instalado" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Encontrar:" -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "Elemento con instalación fallida: %s" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Sugerencias de canales" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permisos denegados." +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "siguiente página" -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Importar" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "página anterior" + +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Ordenar opciones" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabético" + +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Alfabético inverso" + +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "De más nuevo a más antiguo" + +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "De más antiguo a más nuevo" + +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Sin entradas (algunas entradas pueden estar ocultas)." #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1622,161 +1716,32 @@ msgstr "Este sitio no es un servidor de directorio" msgid "This directory server requires an access token" msgstr "El servidor de este directorio necesita un \"token\" de acceso" -#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "Debe haber iniciado sesión para poder ver esta página." +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Elemento no encontrado" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Sala no encontrada" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Nombre del bloque" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Abandonar la sala" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Insertar enlace web" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Eliminar esta sala" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 +msgid "Title (optional)" +msgstr "Título (opcional)" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Estoy ausente momentáneamente" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Estoy conectado/a" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Añadir esta sala a Marcadores" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 -msgid "Please enter a link URL:" -msgstr "Por favor, introduzca la dirección del enlace:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1271 -msgid "Encrypt text" -msgstr "Cifrar texto" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 -msgid "Insert web link" -msgstr "Insertar enlace web" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funcionalidad deshabilitada." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nueva sala de chat" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Nombre de la sala de chat" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Caducidad de los mensajes en los chats (en minutos)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "Permisos" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salas de chat de %1$s" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "No hay salas de chat disponibles" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Crear" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Caducidad" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" -msgstr "Mensaje no válido" - -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" -msgstr "sin resultados" - -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "se ha realizado la sincronización del canal" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "encolado" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "enviado" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "aceptado para el envío" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "actualizado" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "actualización ignorada" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permiso denegado" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "destinatario no encontrado" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "mensaje de correo revocado" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "se ha recibido mensaje duplicado" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "correo enviado" - -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Informe de entrega para %1$s" - -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opciones" - -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Volver a enviar" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modificar este bloque" #: ../../Zotlabs/Module/Editlayout.php:127 #: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 @@ -1796,62 +1761,122 @@ msgstr "Modificar la plantilla" msgid "Page link" msgstr "Enlace de la página" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Editar la página web" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "El grupo de canales ha sido creado." +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No se puede actualizar el menú." -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "No se puede crear el grupo de canales" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "No se puede crear el menú." -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 -msgid "Privacy group not found." -msgstr "Grupo de canales no encontrado." +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nombre del menú" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Grupo de canales actualizado." +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nombre único (no será visible en la página web) - requerido" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Crear un grupo de canales." +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Título del menú" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Nombre del grupo de canales:" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible en la página web - no ponga nada si no desea un título" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "Los miembros son visibles para otros canales" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permitir marcadores" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Grupo de canales eliminado." +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú se puede usar para guardar marcadores" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Imposible eliminar el grupo de canales." +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Enviar y proceder" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Editor de grupos de canales" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 +msgid "Menus" +msgstr "Menús" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Miembros" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Eliminar" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Todos los canales conectados" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:228 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creado" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Haga clic en un canal para agregarlo o quitarlo." +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:229 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Editado" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadores permitidos" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Borrar este menú" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Editar los contenidos del menú" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modificar este menú" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menú no puede ser eliminado." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no encontrado" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modificar el menú" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Añadir o quitar entradas en este menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nombre del menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Debe ser único, solo será visible para usted" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Título del menú" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "El título del menú tal como será visto por los demás" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permitir marcadores" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No encontrado." #: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 msgid "App installed." @@ -1877,13 +1902,25 @@ msgstr "Crear una aplicación" msgid "Name of app" msgstr "Nombre de la aplicación" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Obligatorio" + #: ../../Zotlabs/Module/Appman.php:116 msgid "Location (URL) of app" msgstr "Dirección (URL) de la aplicación" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Dirección del icono" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descripción" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Dirección del icono" #: ../../Zotlabs/Module/Appman.php:118 msgid "80 x 80 pixels - optional" @@ -1891,7 +1928,7 @@ msgstr "80 x 80 pixels - opcional" #: ../../Zotlabs/Module/Appman.php:119 msgid "Categories (optional, comma separated list)" -msgstr "Categorías (opcional, lista separada por comas)" +msgstr "Temas (opcional, lista separada por comas)" #: ../../Zotlabs/Module/Appman.php:120 msgid "Version ID" @@ -1916,7 +1953,7 @@ msgstr "Ayuda:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 +#: ../../include/nav.php:163 msgid "Help" msgstr "Ayuda" @@ -1956,13 +1993,23 @@ msgstr "Compartir contenido desde Firefox a $Projectname" msgid "Activate the Firefox $Projectname provider" msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "red" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "La información privada remota no está disponible." + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visible para:" #: ../../Zotlabs/Module/Filestorage.php:87 msgid "Permission Denied." @@ -1976,636 +2023,883 @@ msgstr "Fichero no encontrado." msgid "Edit file permissions" msgstr "Modificar los permisos del fichero" -#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permisos" + +#: ../../Zotlabs/Module/Filestorage.php:159 msgid "Set/edit permissions" msgstr "Establecer/editar los permisos" -#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:160 msgid "Include all files and sub folders" msgstr "Incluir todos los ficheros y subcarpetas" -#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:161 msgid "Return to file list" msgstr "Volver a la lista de ficheros" -#: ../../Zotlabs/Module/Filestorage.php:159 +#: ../../Zotlabs/Module/Filestorage.php:163 msgid "Copy/paste this code to attach file to a post" msgstr "Copiar/pegar este código para adjuntar el fichero al envío" -#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:164 msgid "Copy/paste this URL to link file from a web page" msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" -#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Filestorage.php:166 msgid "Share this file" msgstr "Compartir este fichero" -#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Module/Filestorage.php:167 msgid "Show URL to this file" msgstr "Mostrar la dirección de este fichero" -#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Filestorage.php:168 msgid "Notify your contacts about this file" msgstr "Avisar a sus contactos sobre este fichero" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 -msgid "Layouts" -msgstr "Plantillas" +#: ../../Zotlabs/Module/Settings.php:64 +msgid "Name is required" +msgstr "El nombre es obligatorio" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" +#: ../../Zotlabs/Module/Settings.php:68 +msgid "Key and Secret are required" +msgstr "\"Key\" y \"Secret\" son obligatorios" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Descripción de la plantilla" +#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Admin.php:1449 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "Actualizar" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creado" +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Este canal tiene un límite de %d tokens" -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Editado" +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "Se requiere el nombre y la contraseña." -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Compartir" +#: ../../Zotlabs/Module/Settings.php:184 +msgid "Token saved." +msgstr "Token salvado." -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Descargar el fichero PDL" +#: ../../Zotlabs/Module/Settings.php:312 +msgid "Not valid email." +msgstr "Correo electrónico no válido." -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Me gusta/No me gusta" +#: ../../Zotlabs/Module/Settings.php:315 +msgid "Protected email address. Cannot change to that email." +msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Esta acción está restringida solo para miembros." +#: ../../Zotlabs/Module/Settings.php:324 +msgid "System failure storing new email. Please try again." +msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." +#: ../../Zotlabs/Module/Settings.php:341 +msgid "Password verification failed." +msgstr "La comprobación de la contraseña ha fallado." -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Solicitud incorrecta." +#: ../../Zotlabs/Module/Settings.php:348 +msgid "Passwords do not match. Password unchanged." +msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "el canal" +#: ../../Zotlabs/Module/Settings.php:352 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "elemento" +#: ../../Zotlabs/Module/Settings.php:366 +msgid "Password changed." +msgstr "Contraseña cambiada." -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Canal no disponible." +#: ../../Zotlabs/Module/Settings.php:368 +msgid "Password update failed. Please try again." +msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Acción anterior revocada." +#: ../../Zotlabs/Module/Settings.php:429 ../../Zotlabs/Module/Settings.php:433 +#: ../../Zotlabs/Module/Settings.php:434 ../../Zotlabs/Module/Settings.php:437 +#: ../../Zotlabs/Module/Settings.php:448 ../../Zotlabs/Module/Connedit.php:627 +#: ../../include/widgets.php:495 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/selectors.php:123 +msgid "Friends" +msgstr "Amigos/as" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 -msgid "photo" -msgstr "foto" +#: ../../Zotlabs/Module/Settings.php:617 +msgid "Settings updated." +msgstr "Ajustes actualizados." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 -msgid "status" -msgstr "el mensaje de estado" +#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 +#: ../../Zotlabs/Module/Settings.php:743 +msgid "Add application" +msgstr "Añadir aplicación" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s le gusta %3$s de %2$s" +#: ../../Zotlabs/Module/Settings.php:684 +msgid "Name of application" +msgstr "Nombre de la aplicación" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s no le gusta %3$s de %2$s" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s está de acuerdo" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s no está de acuerdo" +#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s se abstiene" +#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 +msgid "Redirect" +msgstr "Redirigir" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s participa" +#: ../../Zotlabs/Module/Settings.php:687 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s no participa" +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 +msgid "Icon url" +msgstr "Dirección del icono" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s quizá participe" +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Opcional" -#: ../../Zotlabs/Module/Like.php:536 -msgid "Action completed." -msgstr "Acción completada." +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Application not found." +msgstr "Aplicación no encontrada." -#: ../../Zotlabs/Module/Like.php:537 -msgid "Thank you." -msgstr "Gracias." +#: ../../Zotlabs/Module/Settings.php:742 +msgid "Connected Apps" +msgstr "Aplicaciones (apps) conectadas" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Perfil no encontrado." +#: ../../Zotlabs/Module/Settings.php:746 +msgid "Client key starts with" +msgstr "La \"client key\" empieza por" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Perfil eliminado." +#: ../../Zotlabs/Module/Settings.php:747 +msgid "No name" +msgstr "Sin nombre" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Perfil-" +#: ../../Zotlabs/Module/Settings.php:748 +msgid "Remove authorization" +msgstr "Eliminar autorización" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "El nuevo perfil ha sido creado." +#: ../../Zotlabs/Module/Settings.php:761 +msgid "No feature settings configured" +msgstr "No se ha establecido la configuración de los complementos" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Perfil no disponible para clonar." +#: ../../Zotlabs/Module/Settings.php:768 +msgid "Feature/Addon Settings" +msgstr "Ajustes de los complementos" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Perfil no disponible para exportar." +#: ../../Zotlabs/Module/Settings.php:791 +msgid "Account Settings" +msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Se necesita el nombre del perfil." +#: ../../Zotlabs/Module/Settings.php:792 +msgid "Current Password" +msgstr "Contraseña actual" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Estado civil" +#: ../../Zotlabs/Module/Settings.php:793 +msgid "Enter New Password" +msgstr "Escribir una nueva contraseña" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Pareja sentimental" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Confirm New Password" +msgstr "Confirmar la nueva contraseña" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Me gusta" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Leave password fields blank unless changing" +msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "No me gusta" +#: ../../Zotlabs/Module/Settings.php:796 +#: ../../Zotlabs/Module/Settings.php:1236 +msgid "Email Address:" +msgstr "Dirección de correo electrónico:" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Trabajo:" +#: ../../Zotlabs/Module/Settings.php:797 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Eliminar cuenta" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religión" +#: ../../Zotlabs/Module/Settings.php:798 +msgid "Remove this account including all its channels" +msgstr "Eliminar esta cuenta incluyendo todos sus canales" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Ideas políticas" +#: ../../Zotlabs/Module/Settings.php:832 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." +msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado." -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferencia sexual" +#: ../../Zotlabs/Module/Settings.php:834 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: " -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Página personal" +#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "Tokens de acceso para invitados" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Intereses" +#: ../../Zotlabs/Module/Settings.php:876 +msgid "Login Name" +msgstr "Nombre de inicio de sesión" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Dirección" +#: ../../Zotlabs/Module/Settings.php:877 +msgid "Login Password" +msgstr "Contraseña de inicio de sesión" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Perfil actualizado." +#: ../../Zotlabs/Module/Settings.php:878 +msgid "Expires (yyyy-mm-dd)" +msgstr "Expira (aaaa-mm-dd)" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Ocultar la lista de conexiones a los visitantes del perfil" +#: ../../Zotlabs/Module/Settings.php:879 ../../Zotlabs/Module/Connedit.php:782 +msgid "Their Settings" +msgstr "Sus ajustes" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modificar los detalles de este perfil" +#: ../../Zotlabs/Module/Settings.php:880 ../../Zotlabs/Module/Connedit.php:783 +msgid "My Settings" +msgstr "Mis ajustes" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Ver este perfil" +#: ../../Zotlabs/Module/Settings.php:882 ../../Zotlabs/Module/Connedit.php:778 +msgid "inherited" +msgstr "heredado" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 -msgid "Edit visibility" -msgstr "Editar visibilidad" +#: ../../Zotlabs/Module/Settings.php:884 ../../Zotlabs/Module/Connedit.php:785 +msgid "Individual Permissions" +msgstr "Permisos individuales" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Gestión del perfil" +#: ../../Zotlabs/Module/Settings.php:885 ../../Zotlabs/Module/Connedit.php:786 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Cambiar la imagen de portada del perfil" +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "Off" +msgstr "Desactivado" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 -msgid "Change profile photo" -msgstr "Cambiar la foto del perfil" +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "On" +msgstr "Activado" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crear un nuevo perfil usando estos ajustes" +#: ../../Zotlabs/Module/Settings.php:910 +msgid "Additional Features" +msgstr "Funcionalidades" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clonar este perfil" +#: ../../Zotlabs/Module/Settings.php:934 +msgid "Connector Settings" +msgstr "Configuración del conector" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Eliminar este perfil" +#: ../../Zotlabs/Module/Settings.php:981 +msgid "No special theme for mobile devices" +msgstr "Sin tema especial para dispositivos móviles" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Añadir cosas al perfil" +#: ../../Zotlabs/Module/Settings.php:984 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personales" +#: ../../Zotlabs/Module/Settings.php:987 ../../Zotlabs/Module/Admin.php:414 +msgid "mobile" +msgstr "móvil" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relación" +#: ../../Zotlabs/Module/Settings.php:1035 +msgid "Display Settings" +msgstr "Ajustes de visualización" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Varios" +#: ../../Zotlabs/Module/Settings.php:1036 +msgid "Theme Settings" +msgstr "Ajustes del tema" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importar perfil desde un fichero" +#: ../../Zotlabs/Module/Settings.php:1037 +msgid "Custom Theme Settings" +msgstr "Ajustes personalizados del tema" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Exportar perfil a un fichero" +#: ../../Zotlabs/Module/Settings.php:1038 +msgid "Content Settings" +msgstr "Ajustes del contenido" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Género" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Display Theme:" +msgstr "Tema gráfico del perfil:" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Estado civil" +#: ../../Zotlabs/Module/Settings.php:1045 +msgid "Select scheme" +msgstr "Elegir un esquema" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferencia sexual" +#: ../../Zotlabs/Module/Settings.php:1047 +msgid "Mobile Theme:" +msgstr "Tema para el móvil:" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nombre del perfil" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Preload images before rendering the page" +msgstr "Carga previa de las imágenes antes de generar la página" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Este es su perfil principal." +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "" +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Nombre completo" +#: ../../Zotlabs/Module/Settings.php:1049 +msgid "Enable user zoom on mobile devices" +msgstr "Habilitar zoom de usuario en dispositivos móviles" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Título o descripción" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Update browser every xx seconds" +msgstr "Actualizar navegador cada xx segundos" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Dirección" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínimo de 10 segundos, sin máximo" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Ciudad" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum number of conversations to load at any time:" +msgstr "Máximo número de conversaciones a cargar en cualquier momento:" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Región o Estado" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum of 100 items" +msgstr "Máximo de 100 elementos" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Código postal" +#: ../../Zotlabs/Module/Settings.php:1052 +msgid "Show emoticons (smilies) as images" +msgstr "Mostrar emoticonos (smilies) como imágenes" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "País" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Link post titles to source" +msgstr "Enlazar título de la publicación a la fuente original" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Quién (si es pertinente)" +#: ../../Zotlabs/Module/Settings.php:1054 +msgid "System Page Layout Editor - (advanced)" +msgstr "Editor de plantilla de página del sistema - (avanzado)" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Use blog/list mode on channel page" +msgstr "Usar modo blog/lista en la página de inicio del canal" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "Desde (fecha)" +#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "(comments displayed separately)" +msgstr "(comentarios mostrados de forma separada)" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Háblenos de usted" +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Use blog/list mode on grid page" +msgstr "Mostrar mi red en modo blog" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Lugar de nacimiento" +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Channel page max height of content (in pixels)" +msgstr "Altura máxima del contenido de la página del canal (en píxeles)" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Ideas políticas" +#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "click to expand content exceeding this height" +msgstr "Pulsar para expandir el contenido que exceda de esta altura" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Creencias religiosas" +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "Grid page max height of content (in pixels)" +msgstr "Altura máxima del contenido de mi red (en píxeles)" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Palabras clave utilizadas en los listados de directorios" +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Nobody except yourself" +msgstr "Nadie excepto usted" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Por ejemplo: software de fotografía submarina" +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "Only those you specifically allow" +msgstr "Solo aquellos a los que usted permita explícitamente" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Preferencias musicales" +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "Approved connections" +msgstr "Conexiones aprobadas" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Libros, literatura" +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "Any connections" +msgstr "Cualquier conexión" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisión" +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "Anybody on this website" +msgstr "Cualquiera en este sitio web" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Cine, danza, cultura, entretenimiento" +#: ../../Zotlabs/Module/Settings.php:1095 +msgid "Anybody in this network" +msgstr "Cualquiera en esta red" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Aficiones o intereses" +#: ../../Zotlabs/Module/Settings.php:1096 +msgid "Anybody authenticated" +msgstr "Cualquiera que esté autenticado" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Vida sentimental o amorosa" +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Anybody on the internet" +msgstr "Cualquiera en internet" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Estudios" - -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Información de contacto y redes sociales" +#: ../../Zotlabs/Module/Settings.php:1171 +msgid "Publish your default profile in the network directory" +msgstr "Publicar su perfil principal en el directorio de la red" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mis otros canales" +#: ../../Zotlabs/Module/Settings.php:1176 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 -msgid "Profile Image" -msgstr "Imagen del perfil" +#: ../../Zotlabs/Module/Settings.php:1185 +msgid "Your channel address is" +msgstr "Su dirección de canal es" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 -msgid "Edit Profiles" -msgstr "Editar perfiles" +#: ../../Zotlabs/Module/Settings.php:1227 +msgid "Channel Settings" +msgstr "Ajustes del canal" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Su paquete de servicios solo permite %d canales." +#: ../../Zotlabs/Module/Settings.php:1234 +msgid "Basic Settings" +msgstr "Configuración básica" -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "No hay nada para importar." +#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Nombre completo:" -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "No se han podido descargar datos de su antiguo servidor" +#: ../../Zotlabs/Module/Settings.php:1237 +msgid "Your Timezone:" +msgstr "Su huso horario:" -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "El fichero importado está vacío." +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Default Post Location:" +msgstr "Localización geográfica predeterminada para sus publicaciones:" -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Geographical location to display on your posts" +msgstr "Localización geográfica que debe mostrarse en sus publicaciones" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." +#: ../../Zotlabs/Module/Settings.php:1239 +msgid "Use Browser Location:" +msgstr "Usar la localización geográfica del navegador:" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "No hay canal. La importación ha fallado" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "Adult Content" +msgstr "Contenido solo para adultos" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Importación completada." +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Debe estar registrado para poder usar esta funcionalidad." +#: ../../Zotlabs/Module/Settings.php:1243 +msgid "Security and Privacy Settings" +msgstr "Configuración de seguridad y privacidad" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importar canal" +#: ../../Zotlabs/Module/Settings.php:1246 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" -#: ../../Zotlabs/Module/Import.php:548 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Hide my online presence" +msgstr "Ocultar mi presencia en línea" -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fichero para subir" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Prevents displaying in your profile that you are online" +msgstr "Evitar mostrar en su perfil que está en línea" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "O proporcione los detalles de su antiguo servidor/hub" +#: ../../Zotlabs/Module/Settings.php:1250 +msgid "Simple Privacy Settings:" +msgstr "Configuración de privacidad sencilla:" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" +#: ../../Zotlabs/Module/Settings.php:1251 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Su antigua dirección de correo electrónico" +#: ../../Zotlabs/Module/Settings.php:1252 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Su antigua contraseña" +#: ../../Zotlabs/Module/Settings.php:1253 +msgid "Private - default private, never open or public" +msgstr "Privado - por defecto, privado, nunca abierto o público" -#: ../../Zotlabs/Module/Import.php:554 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." +#: ../../Zotlabs/Module/Settings.php:1254 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Convertir este servidor en mi ubicación primaria" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "Allow others to tag your posts" +msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../Zotlabs/Module/Import.php:556 +#: ../../Zotlabs/Module/Settings.php:1256 msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." +#: ../../Zotlabs/Module/Settings.php:1258 +msgid "Advanced Privacy Settings" +msgstr "Configuración de privacidad avanzada" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "Expire other channel content after this many days" +msgstr "Caducar contenido de otros canales después de este número de días" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "0 or blank to use the website limit." +msgstr "0 o en blanco para usar el límite del sitio web." + +#: ../../Zotlabs/Module/Settings.php:1260 #, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" +msgid "This website expires after %d days." +msgstr "Este sitio web caduca después de %d días." -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "No ha sido posible encontrar la entrada original." +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "This website does not expire imported content." +msgstr "Este sitio web no caduca el contenido importado." -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "La entrada vacía ha sido desechada." +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "The website limit takes precedence if lower than your limit." +msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Contenido de tipo ejecutable no permitido en este canal." +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "Maximum Friend Requests/Day:" +msgstr "Máximo de solicitudes de amistad por día:" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Se ha suprimido la entrada duplicada." +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "May reduce spam activity" +msgstr "Podría reducir la actividad de spam" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Error del sistema. La entrada no se ha podido salvar." +#: ../../Zotlabs/Module/Settings.php:1262 +msgid "Default Post and Publish Permissions" +msgstr "Permisos predeterminados de entradas y publicaciones" -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "No ha sido posible obtener información de la entrada en la base de datos." +#: ../../Zotlabs/Module/Settings.php:1263 ../../Zotlabs/Module/Mitem.php:154 +#: ../../Zotlabs/Module/Mitem.php:231 +msgid "(click to open/close)" +msgstr "(pulsar para abrir o cerrar)" -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "Use my default audience setting for the type of object published" +msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Ha alcanzado su límite de %1$.0f páginas web." +#: ../../Zotlabs/Module/Settings.php:1271 +msgid "Channel permissions category:" +msgstr "Categoría de los permisos del canal:" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "La información del propietario de la página no pudo ser recuperada." +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Maximum private messages per day from unknown people:" +msgstr "Máximo de mensajes privados por día de gente desconocida:" -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Fotos del perfil" +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Useful to reduce spamming" +msgstr "Útil para reducir el envío de correo no deseado" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Álbum no encontrado." +#: ../../Zotlabs/Module/Settings.php:1280 +msgid "Notification Settings" +msgstr "Configuración de las notificaciones" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Borrar álbum" +#: ../../Zotlabs/Module/Settings.php:1281 +msgid "By default post a status message when:" +msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "accepting a friend request" +msgstr "Acepte una solicitud de amistad" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Borrar foto" +#: ../../Zotlabs/Module/Settings.php:1283 +msgid "joining a forum/community" +msgstr "al unirse a un foro o comunidad" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "No hay fotos seleccionadas" +#: ../../Zotlabs/Module/Settings.php:1284 +msgid "making an interesting profile change" +msgstr "Realice un cambio interesante en su perfil" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." +#: ../../Zotlabs/Module/Settings.php:1285 +msgid "Send a notification email when:" +msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "You receive a connection request" +msgstr "Reciba una solicitud de conexión" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB de almacenamiento de fotos utilizado." +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "Your connections are confirmed" +msgstr "Sus conexiones hayan sido confirmadas" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Subir fotos" +#: ../../Zotlabs/Module/Settings.php:1288 +msgid "Someone writes on your profile wall" +msgstr "Alguien escriba en la página de su perfil (\"muro\")" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Introducir un nombre de álbum" +#: ../../Zotlabs/Module/Settings.php:1289 +msgid "Someone writes a followup comment" +msgstr "Alguien escriba un comentario sobre sus publicaciones" + +#: ../../Zotlabs/Module/Settings.php:1290 +msgid "You receive a private message" +msgstr "Reciba un mensaje privado" + +#: ../../Zotlabs/Module/Settings.php:1291 +msgid "You receive a friend suggestion" +msgstr "Reciba una sugerencia de amistad" + +#: ../../Zotlabs/Module/Settings.php:1292 +msgid "You are tagged in a post" +msgstr "Usted sea etiquetado en una publicación" + +#: ../../Zotlabs/Module/Settings.php:1293 +msgid "You are poked/prodded/etc. in a post" +msgstr "Reciba un toque o incitación en una publicación" + +#: ../../Zotlabs/Module/Settings.php:1296 +msgid "Show visual notifications including:" +msgstr "Mostrar notificaciones visuales que incluyan:" + +#: ../../Zotlabs/Module/Settings.php:1298 +msgid "Unseen grid activity" +msgstr "Nueva actividad en la red" + +#: ../../Zotlabs/Module/Settings.php:1299 +msgid "Unseen channel activity" +msgstr "Actividad no vista en el canal" + +#: ../../Zotlabs/Module/Settings.php:1300 +msgid "Unseen private messages" +msgstr "Mensajes privados no leídos" + +#: ../../Zotlabs/Module/Settings.php:1300 +#: ../../Zotlabs/Module/Settings.php:1305 +#: ../../Zotlabs/Module/Settings.php:1306 +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "Recommended" +msgstr "Recomendado" + +#: ../../Zotlabs/Module/Settings.php:1301 +msgid "Upcoming events" +msgstr "Próximos eventos" + +#: ../../Zotlabs/Module/Settings.php:1302 +msgid "Events today" +msgstr "Eventos de hoy" + +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Upcoming birthdays" +msgstr "Próximos cumpleaños" + +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Not available in all themes" +msgstr "No disponible en todos los temas" + +#: ../../Zotlabs/Module/Settings.php:1304 +msgid "System (personal) notifications" +msgstr "Notificaciones del sistema (personales)" + +#: ../../Zotlabs/Module/Settings.php:1305 +msgid "System info messages" +msgstr "Mensajes de información del sistema" + +#: ../../Zotlabs/Module/Settings.php:1306 +msgid "System critical alerts" +msgstr "Alertas críticas del sistema" + +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "New connections" +msgstr "Nuevas conexiones" + +#: ../../Zotlabs/Module/Settings.php:1308 +msgid "System Registrations" +msgstr "Registros del sistema" + +#: ../../Zotlabs/Module/Settings.php:1309 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" + +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Notify me of events this many days in advance" +msgstr "Avisarme de los eventos con algunos días de antelación" + +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Must be greater than 0" +msgstr "Debe ser mayor que 0" + +#: ../../Zotlabs/Module/Settings.php:1313 +msgid "Advanced Account/Page Type Settings" +msgstr "Ajustes avanzados de la cuenta y de los tipos de página" + +#: ../../Zotlabs/Module/Settings.php:1314 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" + +#: ../../Zotlabs/Module/Settings.php:1317 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." + +#: ../../Zotlabs/Module/Settings.php:1318 +msgid "Miscellaneous Settings" +msgstr "Ajustes diversos" + +#: ../../Zotlabs/Module/Settings.php:1319 +msgid "Default photo upload folder" +msgstr "Carpeta por defecto de las fotos subidas" + +#: ../../Zotlabs/Module/Settings.php:1319 +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "%Y - current year, %m - current month" +msgstr "%Y - año en curso, %m - mes actual" + +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "Default file upload folder" +msgstr "Carpeta por defecto de los archivos subidos" + +#: ../../Zotlabs/Module/Settings.php:1322 +msgid "Personal menu to display in your channel pages" +msgstr "Menú personal que debe mostrarse en las páginas de su canal" + +#: ../../Zotlabs/Module/Settings.php:1323 ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove Channel" +msgstr "Eliminar el canal" + +#: ../../Zotlabs/Module/Settings.php:1324 +msgid "Remove this channel." +msgstr "Eliminar este canal." + +#: ../../Zotlabs/Module/Settings.php:1325 +msgid "Firefox Share $Projectname provider" +msgstr "Servicio de compartición de Firefox: proveedor $Projectname" + +#: ../../Zotlabs/Module/Settings.php:1326 +msgid "Start calendar week on monday" +msgstr "Comenzar el calendario semanal por el lunes" + +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "red" + +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" + +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "El grupo de canales ha sido creado." + +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "No se puede crear el grupo de canales" + +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3931 +msgid "Privacy group not found." +msgstr "Grupo de canales no encontrado." + +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Grupo de canales actualizado." + +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Crear un grupo de canales." + +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Nombre del grupo de canales:" + +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "Los miembros son visibles para otros canales" + +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Grupo de canales eliminado." + +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "No se puede eliminar el grupo de canales." + +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Editor de grupos de canales" + +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Miembros" + +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Todos los canales conectados" + +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Haga clic en un canal para agregarlo o quitarlo." + +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "La información del propietario de la página no pudo ser recuperada." + +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Fotos del perfil" + +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Borrar álbum" + +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" + +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Borrar foto" + +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "No hay fotos seleccionadas" + +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." + +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB de almacenamiento de fotos utilizado." + +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Subir fotos" + +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Introducir un nombre de álbum" #: ../../Zotlabs/Module/Photos.php:663 msgid "or select an existing album (doubleclick)" @@ -2623,240 +2917,300 @@ msgstr "Título (opcional):" msgid "Description (optional):" msgstr "Descripción (opcional):" -#: ../../Zotlabs/Module/Photos.php:693 +#: ../../Zotlabs/Module/Photos.php:697 msgid "Album name could not be decoded" msgstr "El nombre del álbum no ha podido ser descifrado" -#: ../../Zotlabs/Module/Photos.php:741 +#: ../../Zotlabs/Module/Photos.php:745 msgid "Contact Photos" msgstr "Fotos de contacto" -#: ../../Zotlabs/Module/Photos.php:764 +#: ../../Zotlabs/Module/Photos.php:768 msgid "Show Newest First" msgstr "Mostrar lo más reciente primero" -#: ../../Zotlabs/Module/Photos.php:766 +#: ../../Zotlabs/Module/Photos.php:770 msgid "Show Oldest First" msgstr "Mostrar lo más antiguo primero" -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 +#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 msgid "View Photo" msgstr "Ver foto" -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 +#: ../../Zotlabs/Module/Photos.php:825 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 msgid "Edit Album" msgstr "Editar álbum" -#: ../../Zotlabs/Module/Photos.php:868 +#: ../../Zotlabs/Module/Photos.php:872 msgid "Permission denied. Access to this item may be restricted." msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." -#: ../../Zotlabs/Module/Photos.php:870 +#: ../../Zotlabs/Module/Photos.php:874 msgid "Photo not available" msgstr "Foto no disponible" -#: ../../Zotlabs/Module/Photos.php:928 +#: ../../Zotlabs/Module/Photos.php:932 msgid "Use as profile photo" msgstr "Usar como foto del perfil" -#: ../../Zotlabs/Module/Photos.php:929 +#: ../../Zotlabs/Module/Photos.php:933 msgid "Use as cover photo" msgstr "Usar como imagen de portada del perfil" -#: ../../Zotlabs/Module/Photos.php:936 +#: ../../Zotlabs/Module/Photos.php:940 msgid "Private Photo" msgstr "Foto privada" -#: ../../Zotlabs/Module/Photos.php:951 +#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 +msgid "Previous" +msgstr "Anterior" + +#: ../../Zotlabs/Module/Photos.php:955 msgid "View Full Size" msgstr "Ver tamaño completo" -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1451 #: ../../Zotlabs/Module/Tagrm.php:137 msgid "Remove" msgstr "Eliminar" -#: ../../Zotlabs/Module/Photos.php:1030 +#: ../../Zotlabs/Module/Photos.php:1034 msgid "Edit photo" msgstr "Editar foto" -#: ../../Zotlabs/Module/Photos.php:1032 +#: ../../Zotlabs/Module/Photos.php:1036 msgid "Rotate CW (right)" msgstr "Girar CW (a la derecha)" -#: ../../Zotlabs/Module/Photos.php:1033 +#: ../../Zotlabs/Module/Photos.php:1037 msgid "Rotate CCW (left)" msgstr "Girar CCW (a la izquierda)" -#: ../../Zotlabs/Module/Photos.php:1036 +#: ../../Zotlabs/Module/Photos.php:1040 msgid "Enter a new album name" msgstr "Introducir un nuevo nombre de álbum" -#: ../../Zotlabs/Module/Photos.php:1037 +#: ../../Zotlabs/Module/Photos.php:1041 msgid "or select an existing one (doubleclick)" msgstr "o seleccionar uno (doble click) existente" -#: ../../Zotlabs/Module/Photos.php:1040 +#: ../../Zotlabs/Module/Photos.php:1044 msgid "Caption" msgstr "Título" -#: ../../Zotlabs/Module/Photos.php:1042 +#: ../../Zotlabs/Module/Photos.php:1046 msgid "Add a Tag" msgstr "Añadir una etiqueta" -#: ../../Zotlabs/Module/Photos.php:1046 +#: ../../Zotlabs/Module/Photos.php:1054 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" -#: ../../Zotlabs/Module/Photos.php:1049 +#: ../../Zotlabs/Module/Photos.php:1057 msgid "Flag as adult in album view" msgstr "Marcar como \"solo para adultos\" en el álbum" -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 msgid "I like this (toggle)" msgstr "Me gusta (cambiar)" -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 msgid "I don't like this (toggle)" msgstr "No me gusta esto (cambiar)" -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../include/conversation.php:1227 +msgid "Share" +msgstr "Compartir" + +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 #: ../../include/conversation.php:743 msgid "Please wait" msgstr "Espere por favor" -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:708 msgid "This is you" msgstr "Este es usted" -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 msgid "Comment" msgstr "Comentar" -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:224 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:720 +#: ../../include/conversation.php:1200 ../../include/page_widgets.php:43 +msgid "Preview" +msgstr "Previsualizar" + +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 msgctxt "title" msgid "Likes" msgstr "Me gusta" -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 msgctxt "title" msgid "Dislikes" msgstr "No me gusta" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Agree" msgstr "De acuerdo" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Disagree" msgstr "En desacuerdo" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Abstain" msgstr "Abstención" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Attending" msgstr "Participaré" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Not attending" msgstr "No participaré" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Might attend" msgstr "Quizá participe" -#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 #: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1738 +#: ../../include/conversation.php:1756 msgid "View all" msgstr "Ver todo" -#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 -#: ../../include/conversation.php:1762 +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1780 +#: ../../include/taxonomy.php:403 msgctxt "noun" msgid "Like" msgid_plural "Likes" msgstr[0] "Me gusta" msgstr[1] "Me gusta" -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1783 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "No me gusta" msgstr[1] "No me gusta" -#: ../../Zotlabs/Module/Photos.php:1233 +#: ../../Zotlabs/Module/Photos.php:1241 msgid "Photo Tools" msgstr "Gestión de las fotos" -#: ../../Zotlabs/Module/Photos.php:1242 +#: ../../Zotlabs/Module/Photos.php:1250 msgid "In This Photo:" msgstr "En esta foto:" -#: ../../Zotlabs/Module/Photos.php:1247 +#: ../../Zotlabs/Module/Photos.php:1255 msgid "Map" msgstr "Mapa" -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 msgctxt "noun" msgid "Likes" msgstr "Me gusta" -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 msgctxt "noun" msgid "Dislikes" msgstr "No me gusta" -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../include/acl_selectors.php:181 msgid "Close" msgstr "Cerrar" -#: ../../Zotlabs/Module/Photos.php:1335 +#: ../../Zotlabs/Module/Photos.php:1343 msgid "View Album" msgstr "Ver álbum" -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 msgid "Recent Photos" msgstr "Fotos recientes" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "La información privada remota no está disponible." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible para:" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "página web" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importación completada" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloque" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importar elementos" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "plantilla" -#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menú" + +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "%s elemento instalado" + +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Elemento con instalación fallida: %s" + +#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 +msgid "Nothing to import." +msgstr "No hay nada para importar." + +#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "No se han podido descargar datos de su antiguo servidor" + +#: ../../Zotlabs/Module/Import_items.php:72 +#: ../../Zotlabs/Module/Import.php:101 +msgid "Imported file is empty." +msgstr "El fichero importado está vacío." + +#: ../../Zotlabs/Module/Import_items.php:88 +#: ../../Zotlabs/Module/Import.php:123 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." + +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Importación completada" + +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importar elementos" + +#: ../../Zotlabs/Module/Import_items.php:120 msgid "" "Use this form to import existing posts and content from an export file." msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." +#: ../../Zotlabs/Module/Import_items.php:121 +#: ../../Zotlabs/Module/Import.php:549 +msgid "File to Upload" +msgstr "Fichero para subir" + #: ../../Zotlabs/Module/Invite.php:29 msgid "Total invitation limit exceeded." msgstr "Se ha superado el límite máximo de invitaciones." @@ -2943,7 +3297,7 @@ msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo e #: ../../Zotlabs/Module/Locs.php:95 msgid "Syncing locations" -msgstr "Sincronización de ubicaciones" +msgstr "Sincronizando ubicaciones" #: ../../Zotlabs/Module/Locs.php:105 msgid "No locations found." @@ -2953,14 +3307,15 @@ msgstr "No encontrada ninguna dirección." msgid "Manage Channel Locations" msgstr "Gestionar las direcciones del canal" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1237 +#: ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Dirección" + #: ../../Zotlabs/Module/Locs.php:119 msgid "Primary" msgstr "Primario" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Eliminar" - #: ../../Zotlabs/Module/Locs.php:122 msgid "Sync Now" msgstr "Sincronizar ahora" @@ -2983,102 +3338,105 @@ msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no est msgid "Hub not found." msgstr "Servidor no encontrado" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Imposible asociar a un destinatario." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Imposible comunicar con el canal solicitado." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Me gusta/No me gusta" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Esta acción está restringida solo para miembros." -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Mensajes" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Mensaje revocado." +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Solicitud incorrecta." -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversación eliminada." +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "el canal" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Caduca YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "elemento" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "El canal solicitado no existe en esta red" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canal no disponible." -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Acción anterior revocada." -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Para:" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 +#: ../../include/conversation.php:120 +msgid "photo" +msgstr "foto" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Asunto:" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1951 ../../include/conversation.php:148 +msgid "status" +msgstr "el mensaje de estado" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Adjuntar fichero" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 +#: ../../include/conversation.php:123 ../../include/event.php:958 +msgid "event" +msgstr "evento" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Enviar" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Configurar fecha de caducidad" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s no le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Borrar mensaje" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s está de acuerdo" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Informe de transmisión" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s no está de acuerdo" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revocar el mensaje" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s se abstiene" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "El mensaje ha sido revocado." +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s participa" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Eliminar conversación" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s no participa" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s quizá participe" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Responder" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Acción completada." -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Su mensaje para %s (%s):" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Gracias." #: ../../Zotlabs/Module/Manage.php:136 #: ../../Zotlabs/Module/New_channel.php:121 @@ -3090,8 +3448,13 @@ msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." msgid "Create a new channel" msgstr "Crear un nuevo canal" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Crear" + #: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 +#: ../../include/nav.php:210 msgid "Channel Manager" msgstr "Administración de canales" @@ -3125,370 +3488,115 @@ msgstr "%d nuevas isolicitudes de conexión" msgid "Delegated Channel" msgstr "Canal delegado" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "No se puede actualizar el menú." +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "No se puede crear el elemento." -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "No se puede crear el menú." +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "No es posible actualizar el elemento del menú." -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nombre del menú" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "No es posible añadir el elemento al menú" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nombre único (no será visible en la página web) - requerido" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permisos del elemento del menú" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Título del menú" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nombre del enlace" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible en la página web - no ponga nada si no desea un título" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Destino del enlace o submenú" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permitir marcadores" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú se puede usar para guardar marcadores" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Usar la autenticación mágica si está disponible" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Enviar y proceder" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Abrir el enlace en una nueva ventana" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menús" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Orden en la lista" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Marcadores permitidos" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Los números más altos irán al final de la lista" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Borrar este menú" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Editar los contenidos del menú" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modificar este menú" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "El menú no puede ser eliminado." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menú no encontrado" - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modificar el menú" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Añadir o quitar entradas en este menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nombre del menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Debe ser único, solo será visible para usted" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Título del menú" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "El título del menú tal como será visto por los demás" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permitir marcadores" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No encontrado." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "No se ha encontrado una cuenta válida." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Se ha solicitado restablecer la contraseña en %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Su contraseña ha sido restablecida según lo solicitó." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Su nueva contraseña es" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Guarde o copie su nueva contraseña - y después" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "pulse aquí para conectarse" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Dirección de correo electrónico" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reiniciar" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s está %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Estado de ánimo" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" - -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "No se encuentra el grupo" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "No se encuentra el canal" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "foro" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Buscar resultados para:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "El grupo de canales está vacío" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Grupo de canales: " - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Conexión no válida." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notificaciones del sistema" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Perfil compatible" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "está interesado en:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "No se han encontrado perfiles compatibles" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Publicaciones y comentarios" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo publicaciones" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Imposible crear el elemento." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "No es posible actualizar el elemento del menú." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "No es posible añadir el elemento al menú" - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos del elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(pulsar para abrir o cerrar)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nombre del enlace" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Destino del enlace o submenú" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Usar la autenticación mágica si está disponible" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Abrir el enlace en una nueva ventana" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Orden en la lista" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Los números más altos irán al final de la lista" - -#: ../../Zotlabs/Module/Mitem.php:161 +#: ../../Zotlabs/Module/Mitem.php:165 msgid "Submit and finish" msgstr "Enviar y terminar" -#: ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:166 msgid "Submit and continue" msgstr "Enviar y continuar" -#: ../../Zotlabs/Module/Mitem.php:170 +#: ../../Zotlabs/Module/Mitem.php:174 msgid "Menu:" msgstr "Menú:" -#: ../../Zotlabs/Module/Mitem.php:173 +#: ../../Zotlabs/Module/Mitem.php:177 msgid "Link Target" msgstr "Destino del enlace" -#: ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:180 msgid "Edit menu" msgstr "Editar menú" -#: ../../Zotlabs/Module/Mitem.php:179 +#: ../../Zotlabs/Module/Mitem.php:183 msgid "Edit element" msgstr "Editar el elemento" -#: ../../Zotlabs/Module/Mitem.php:180 +#: ../../Zotlabs/Module/Mitem.php:184 msgid "Drop element" msgstr "Eliminar el elemento" -#: ../../Zotlabs/Module/Mitem.php:181 +#: ../../Zotlabs/Module/Mitem.php:185 msgid "New element" msgstr "Nuevo elemento" -#: ../../Zotlabs/Module/Mitem.php:182 +#: ../../Zotlabs/Module/Mitem.php:186 msgid "Edit this menu container" msgstr "Modificar el contenedor del menú" -#: ../../Zotlabs/Module/Mitem.php:183 +#: ../../Zotlabs/Module/Mitem.php:187 msgid "Add menu element" msgstr "Añadir un elemento al menú" -#: ../../Zotlabs/Module/Mitem.php:184 +#: ../../Zotlabs/Module/Mitem.php:188 msgid "Delete this menu item" msgstr "Eliminar este elemento del menú" -#: ../../Zotlabs/Module/Mitem.php:185 +#: ../../Zotlabs/Module/Mitem.php:189 msgid "Edit this menu item" msgstr "Modificar este elemento del menú" -#: ../../Zotlabs/Module/Mitem.php:202 +#: ../../Zotlabs/Module/Mitem.php:206 msgid "Menu item not found." msgstr "Este elemento del menú no se ha encontrado" -#: ../../Zotlabs/Module/Mitem.php:215 +#: ../../Zotlabs/Module/Mitem.php:219 msgid "Menu item deleted." msgstr "Este elemento del menú ha sido borrado" -#: ../../Zotlabs/Module/Mitem.php:217 +#: ../../Zotlabs/Module/Mitem.php:221 msgid "Menu item could not be deleted." msgstr "Este elemento del menú no puede ser borrado." -#: ../../Zotlabs/Module/Mitem.php:224 +#: ../../Zotlabs/Module/Mitem.php:228 msgid "Edit Menu Element" msgstr "Editar elemento del menú" -#: ../../Zotlabs/Module/Mitem.php:230 +#: ../../Zotlabs/Module/Mitem.php:238 msgid "Link text" msgstr "Texto del enlace" @@ -3532,12 +3640,12 @@ msgstr "Mensajes en cola" msgid "Your software should be updated" msgstr "Debe actualizar su software" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:724 ../../Zotlabs/Module/Admin.php:768 +#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1342 ../../Zotlabs/Module/Admin.php:1433 +#: ../../Zotlabs/Module/Admin.php:1626 ../../Zotlabs/Module/Admin.php:1660 +#: ../../Zotlabs/Module/Admin.php:1745 msgid "Administration" msgstr "Administración" @@ -3549,7 +3657,7 @@ msgstr "Sumario" msgid "Registered accounts" msgstr "Cuentas registradas" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:728 msgid "Pending registrations" msgstr "Registros pendientes" @@ -3557,7 +3665,7 @@ msgstr "Registros pendientes" msgid "Registered channels" msgstr "Canales registrados" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:729 msgid "Active plugins" msgstr "Extensiones (plugins) activas" @@ -3573,2677 +3681,2446 @@ msgstr "Versión del repositorio (master)" msgid "Repository version (dev)" msgstr "Versión del repositorio (dev)" -#: ../../Zotlabs/Module/Admin.php:373 +#: ../../Zotlabs/Module/Admin.php:377 msgid "Site settings updated." msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:404 ../../include/text.php:2888 msgid "Default" msgstr "Predeterminado" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 -msgid "mobile" -msgstr "móvil" - -#: ../../Zotlabs/Module/Admin.php:412 +#: ../../Zotlabs/Module/Admin.php:416 msgid "experimental" msgstr "experimental" -#: ../../Zotlabs/Module/Admin.php:414 +#: ../../Zotlabs/Module/Admin.php:418 msgid "unsupported" msgstr "no soportado" -#: ../../Zotlabs/Module/Admin.php:460 +#: ../../Zotlabs/Module/Admin.php:464 msgid "Yes - with approval" msgstr "Sí - con aprobación" -#: ../../Zotlabs/Module/Admin.php:466 +#: ../../Zotlabs/Module/Admin.php:470 msgid "My site is not a public server" msgstr "Mi sitio no es un servidor público" -#: ../../Zotlabs/Module/Admin.php:467 +#: ../../Zotlabs/Module/Admin.php:471 msgid "My site has paid access only" msgstr "Mi sitio es un servicio de pago" -#: ../../Zotlabs/Module/Admin.php:468 +#: ../../Zotlabs/Module/Admin.php:472 msgid "My site has free access only" msgstr "Mi sitio es un servicio gratuito" -#: ../../Zotlabs/Module/Admin.php:469 +#: ../../Zotlabs/Module/Admin.php:473 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:501 ../../include/widgets.php:1490 msgid "Site" msgstr "Sitio" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registro" - -#: ../../Zotlabs/Module/Admin.php:494 +#: ../../Zotlabs/Module/Admin.php:504 msgid "File upload" msgstr "Subir fichero" -#: ../../Zotlabs/Module/Admin.php:495 +#: ../../Zotlabs/Module/Admin.php:505 msgid "Policies" msgstr "Políticas" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +#: ../../Zotlabs/Module/Admin.php:506 ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "Avanzado" -#: ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:510 msgid "Site name" msgstr "Nombre del sitio" -#: ../../Zotlabs/Module/Admin.php:501 +#: ../../Zotlabs/Module/Admin.php:514 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:515 msgid "Administrator Information" msgstr "Información del Administrador" -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:515 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" -#: ../../Zotlabs/Module/Admin.php:503 +#: ../../Zotlabs/Module/Admin.php:516 msgid "System language" msgstr "Idioma del sistema" -#: ../../Zotlabs/Module/Admin.php:504 +#: ../../Zotlabs/Module/Admin.php:517 msgid "System theme" msgstr "Tema gráfico del sistema" -#: ../../Zotlabs/Module/Admin.php:504 +#: ../../Zotlabs/Module/Admin.php:517 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" -#: ../../Zotlabs/Module/Admin.php:505 +#: ../../Zotlabs/Module/Admin.php:518 msgid "Mobile system theme" msgstr "Tema del sistema para móviles" -#: ../../Zotlabs/Module/Admin.php:505 +#: ../../Zotlabs/Module/Admin.php:518 msgid "Theme for mobile devices" msgstr "Tema para dispositivos móviles" -#: ../../Zotlabs/Module/Admin.php:507 +#: ../../Zotlabs/Module/Admin.php:520 msgid "Allow Feeds as Connections" msgstr "Permitir contenidos RSS como conexiones" -#: ../../Zotlabs/Module/Admin.php:507 +#: ../../Zotlabs/Module/Admin.php:520 msgid "(Heavy system resource usage)" msgstr "(Uso intenso de los recursos del sistema)" -#: ../../Zotlabs/Module/Admin.php:508 +#: ../../Zotlabs/Module/Admin.php:521 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: ../../Zotlabs/Module/Admin.php:508 +#: ../../Zotlabs/Module/Admin.php:521 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." -#: ../../Zotlabs/Module/Admin.php:509 +#: ../../Zotlabs/Module/Admin.php:522 msgid "Does this site allow new member registration?" msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" -#: ../../Zotlabs/Module/Admin.php:510 +#: ../../Zotlabs/Module/Admin.php:523 msgid "Invitation only" msgstr "Solo con una invitación" -#: ../../Zotlabs/Module/Admin.php:510 +#: ../../Zotlabs/Module/Admin.php:523 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." -#: ../../Zotlabs/Module/Admin.php:511 +#: ../../Zotlabs/Module/Admin.php:524 msgid "Which best describes the types of account offered by this hub?" msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" -#: ../../Zotlabs/Module/Admin.php:512 +#: ../../Zotlabs/Module/Admin.php:525 msgid "Register text" msgstr "Texto del registro" -#: ../../Zotlabs/Module/Admin.php:512 +#: ../../Zotlabs/Module/Admin.php:525 msgid "Will be displayed prominently on the registration page." msgstr "Se mostrará de forma destacada en la página de registro." -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Admin.php:526 msgid "Site homepage to show visitors (default: login box)" msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Admin.php:526 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." -#: ../../Zotlabs/Module/Admin.php:514 +#: ../../Zotlabs/Module/Admin.php:527 msgid "Preserve site homepage URL" msgstr "Preservar la dirección de la página personal" -#: ../../Zotlabs/Module/Admin.php:514 +#: ../../Zotlabs/Module/Admin.php:527 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Admin.php:528 msgid "Accounts abandoned after x days" msgstr "Cuentas abandonadas después de x días" -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Admin.php:528 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." -#: ../../Zotlabs/Module/Admin.php:516 +#: ../../Zotlabs/Module/Admin.php:529 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: ../../Zotlabs/Module/Admin.php:516 +#: ../../Zotlabs/Module/Admin.php:529 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Admin.php:530 msgid "Allowed email domains" msgstr "Se aceptan dominios de correo electrónico" -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Admin.php:530 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Admin.php:531 msgid "Not allowed email domains" msgstr "No se permiten dominios de correo electrónico" -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Admin.php:531 msgid "" "Comma separated list of domains which are not allowed in email addresses for" " registrations to this site. Wildcards are accepted. Empty to allow any " "domains, unless allowed domains have been defined." msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Admin.php:532 msgid "Verify Email Addresses" msgstr "Verificar las direcciones de correo electrónico" -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Admin.php:532 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." -#: ../../Zotlabs/Module/Admin.php:520 +#: ../../Zotlabs/Module/Admin.php:533 msgid "Force publish" msgstr "Forzar la publicación" -#: ../../Zotlabs/Module/Admin.php:520 +#: ../../Zotlabs/Module/Admin.php:533 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." -#: ../../Zotlabs/Module/Admin.php:521 +#: ../../Zotlabs/Module/Admin.php:534 msgid "Import Public Streams" msgstr "Importar contenido público" -#: ../../Zotlabs/Module/Admin.php:521 +#: ../../Zotlabs/Module/Admin.php:534 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." -#: ../../Zotlabs/Module/Admin.php:522 +#: ../../Zotlabs/Module/Admin.php:535 msgid "Login on Homepage" msgstr "Iniciar sesión en la página personal" -#: ../../Zotlabs/Module/Admin.php:522 +#: ../../Zotlabs/Module/Admin.php:535 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Admin.php:536 msgid "Enable context help" msgstr "Habilitar la ayuda contextual" -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Admin.php:536 msgid "" "Display contextual help for the current page when the help button is " "pressed." msgstr "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda." -#: ../../Zotlabs/Module/Admin.php:525 +#: ../../Zotlabs/Module/Admin.php:538 msgid "Directory Server URL" msgstr "URL del servidor de directorio" -#: ../../Zotlabs/Module/Admin.php:525 +#: ../../Zotlabs/Module/Admin.php:538 msgid "Default directory server" msgstr "Servidor de directorio predeterminado" -#: ../../Zotlabs/Module/Admin.php:527 +#: ../../Zotlabs/Module/Admin.php:540 msgid "Proxy user" msgstr "Usuario del proxy" -#: ../../Zotlabs/Module/Admin.php:528 +#: ../../Zotlabs/Module/Admin.php:541 msgid "Proxy URL" msgstr "Dirección del proxy" -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Admin.php:542 msgid "Network timeout" msgstr "Tiempo de espera de la red" -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Admin.php:542 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Admin.php:543 msgid "Delivery interval" msgstr "Intervalo de entrega" -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Admin.php:543 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Admin.php:544 msgid "Deliveries per process" msgstr "Intentos de envío por proceso" -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Admin.php:544 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust" " if necessary to tune system performance. Recommend: 1-5." msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Admin.php:545 msgid "Poll interval" msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Admin.php:545 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Admin.php:546 msgid "Maximum Load Average" msgstr "Carga media máxima" -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Admin.php:546 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." -#: ../../Zotlabs/Module/Admin.php:534 +#: ../../Zotlabs/Module/Admin.php:547 msgid "Expiration period in days for imported (grid/network) content" msgstr "Caducidad del contenido importado de otros sitios (en días)" -#: ../../Zotlabs/Module/Admin.php:534 +#: ../../Zotlabs/Module/Admin.php:547 msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "Off" -msgstr "Desactivado" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "On" -msgstr "Activado" - -#: ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Admin.php:691 #, php-format msgid "Lock feature %s" msgstr "Bloquear la funcionalidad %s" -#: ../../Zotlabs/Module/Admin.php:686 +#: ../../Zotlabs/Module/Admin.php:699 msgid "Manage Additional Features" msgstr "Gestionar las funcionalidades" -#: ../../Zotlabs/Module/Admin.php:703 +#: ../../Zotlabs/Module/Admin.php:716 msgid "No server found" msgstr "Servidor no encontrado" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +#: ../../Zotlabs/Module/Admin.php:723 ../../Zotlabs/Module/Admin.php:1059 msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin.php:710 +#: ../../Zotlabs/Module/Admin.php:723 msgid "for channel" msgstr "por canal" -#: ../../Zotlabs/Module/Admin.php:710 +#: ../../Zotlabs/Module/Admin.php:723 msgid "on server" msgstr "en el servidor" -#: ../../Zotlabs/Module/Admin.php:712 +#: ../../Zotlabs/Module/Admin.php:725 msgid "Server" msgstr "Servidor" -#: ../../Zotlabs/Module/Admin.php:746 +#: ../../Zotlabs/Module/Admin.php:759 msgid "" "By default, unfiltered HTML is allowed in embedded media. This is inherently" " insecure." msgstr "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro." -#: ../../Zotlabs/Module/Admin.php:749 +#: ../../Zotlabs/Module/Admin.php:762 msgid "" "The recommended setting is to only allow unfiltered HTML from the following " "sites:" msgstr "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: " -#: ../../Zotlabs/Module/Admin.php:750 +#: ../../Zotlabs/Module/Admin.php:763 msgid "" "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/https://vimeo.com/
    https://soundcloud.com/
    " msgstr "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    " -#: ../../Zotlabs/Module/Admin.php:751 +#: ../../Zotlabs/Module/Admin.php:764 msgid "" "All other embedded content will be filtered, unless " "embedded content from that site is explicitly blocked." msgstr "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:769 ../../include/widgets.php:1493 msgid "Security" msgstr "Seguridad" -#: ../../Zotlabs/Module/Admin.php:758 +#: ../../Zotlabs/Module/Admin.php:771 msgid "Block public" msgstr "Bloquear páginas públicas" -#: ../../Zotlabs/Module/Admin.php:758 +#: ../../Zotlabs/Module/Admin.php:771 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently authenticated." msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado." -#: ../../Zotlabs/Module/Admin.php:759 +#: ../../Zotlabs/Module/Admin.php:772 msgid "Set \"Transport Security\" HTTP header" msgstr "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP" -#: ../../Zotlabs/Module/Admin.php:760 +#: ../../Zotlabs/Module/Admin.php:773 msgid "Set \"Content Security Policy\" HTTP header" msgstr "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP" -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Admin.php:774 msgid "Allow communications only from these sites" msgstr "Permitir la comunicación solo desde estos sitios" -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Admin.php:774 msgid "" "One site per line. Leave empty to allow communication from anywhere by " "default" msgstr "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../Zotlabs/Module/Admin.php:762 +#: ../../Zotlabs/Module/Admin.php:775 msgid "Block communications from these sites" msgstr "Bloquear la comunicación desde estos sitios" -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Admin.php:776 msgid "Allow communications only from these channels" msgstr "Permitir la comunicación solo desde estos canales" -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Admin.php:776 msgid "" "One channel (hash) per line. Leave empty to allow from any channel by " "default" msgstr "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../Zotlabs/Module/Admin.php:764 +#: ../../Zotlabs/Module/Admin.php:777 msgid "Block communications from these channels" msgstr "Bloquear la comunicación desde estos canales" -#: ../../Zotlabs/Module/Admin.php:765 +#: ../../Zotlabs/Module/Admin.php:778 msgid "Only allow embeds from secure (SSL) websites and links." msgstr "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)." -#: ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:779 msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "Permitir contenido HTML sin filtrar sólo desde estos dominios " -#: ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:779 msgid "One site per line. By default embedded content is filtered." msgstr "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada." -#: ../../Zotlabs/Module/Admin.php:767 +#: ../../Zotlabs/Module/Admin.php:780 msgid "Block embedded HTML from these domains" msgstr "Bloquear contenido con HTML incorporado desde estos dominios" -#: ../../Zotlabs/Module/Admin.php:785 +#: ../../Zotlabs/Module/Admin.php:798 msgid "Update has been marked successful" msgstr "La actualización ha sido marcada como exitosa" -#: ../../Zotlabs/Module/Admin.php:795 +#: ../../Zotlabs/Module/Admin.php:808 #, php-format msgid "Executing %s failed. Check system logs." msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." -#: ../../Zotlabs/Module/Admin.php:798 +#: ../../Zotlabs/Module/Admin.php:811 #, php-format msgid "Update %s was successfully applied." msgstr "La actualización de %s se ha realizado exitosamente." -#: ../../Zotlabs/Module/Admin.php:802 +#: ../../Zotlabs/Module/Admin.php:815 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." -#: ../../Zotlabs/Module/Admin.php:805 +#: ../../Zotlabs/Module/Admin.php:818 #, php-format msgid "Update function %s could not be found." msgstr "No se encuentra la función de actualización de %s." -#: ../../Zotlabs/Module/Admin.php:821 +#: ../../Zotlabs/Module/Admin.php:834 msgid "No failed updates." msgstr "No ha fallado ninguna actualización." -#: ../../Zotlabs/Module/Admin.php:825 +#: ../../Zotlabs/Module/Admin.php:838 msgid "Failed Updates" msgstr "Han fallado las actualizaciones" -#: ../../Zotlabs/Module/Admin.php:827 +#: ../../Zotlabs/Module/Admin.php:840 msgid "Mark success (if update was manually applied)" msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" -#: ../../Zotlabs/Module/Admin.php:828 +#: ../../Zotlabs/Module/Admin.php:841 msgid "Attempt to execute this update step automatically" msgstr "Intentar ejecutar este paso de actualización automáticamente" -#: ../../Zotlabs/Module/Admin.php:859 +#: ../../Zotlabs/Module/Admin.php:872 msgid "Queue Statistics" msgstr "Estadísticas de la cola" -#: ../../Zotlabs/Module/Admin.php:860 +#: ../../Zotlabs/Module/Admin.php:873 msgid "Total Entries" msgstr "Total de entradas" -#: ../../Zotlabs/Module/Admin.php:861 +#: ../../Zotlabs/Module/Admin.php:874 msgid "Priority" msgstr "Prioridad" -#: ../../Zotlabs/Module/Admin.php:862 +#: ../../Zotlabs/Module/Admin.php:875 msgid "Destination URL" msgstr "Dirección de destino" -#: ../../Zotlabs/Module/Admin.php:863 +#: ../../Zotlabs/Module/Admin.php:876 msgid "Mark hub permanently offline" msgstr "Marcar el servidor como permanentemente fuera de línea" -#: ../../Zotlabs/Module/Admin.php:864 +#: ../../Zotlabs/Module/Admin.php:877 msgid "Empty queue for this hub" msgstr "Vaciar la cola para este servidor" -#: ../../Zotlabs/Module/Admin.php:865 +#: ../../Zotlabs/Module/Admin.php:878 msgid "Last known contact" msgstr "Último contacto conocido" -#: ../../Zotlabs/Module/Admin.php:901 +#: ../../Zotlabs/Module/Admin.php:914 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "%s cuenta bloqueada/desbloqueada" msgstr[1] "%s cuenta bloqueada/desbloqueada" -#: ../../Zotlabs/Module/Admin.php:908 +#: ../../Zotlabs/Module/Admin.php:921 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "%s cuentas eliminadas" msgstr[1] "%s cuentas eliminadas" -#: ../../Zotlabs/Module/Admin.php:944 +#: ../../Zotlabs/Module/Admin.php:957 msgid "Account not found" msgstr "Cuenta no encontrada" -#: ../../Zotlabs/Module/Admin.php:955 +#: ../../Zotlabs/Module/Admin.php:968 #, php-format msgid "Account '%s' deleted" msgstr "La cuenta '%s' ha sido eliminada" -#: ../../Zotlabs/Module/Admin.php:963 +#: ../../Zotlabs/Module/Admin.php:976 #, php-format msgid "Account '%s' blocked" msgstr "La cuenta '%s' ha sido bloqueada" -#: ../../Zotlabs/Module/Admin.php:971 +#: ../../Zotlabs/Module/Admin.php:984 #, php-format msgid "Account '%s' unblocked" msgstr "La cuenta '%s' ha sido desbloqueada" -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 +#: ../../include/widgets.php:1491 msgid "Accounts" msgstr "Cuentas" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 msgid "select all" msgstr "seleccionar todo" -#: ../../Zotlabs/Module/Admin.php:1034 +#: ../../Zotlabs/Module/Admin.php:1047 msgid "Registrations waiting for confirm" msgstr "Inscripciones en espera de confirmación" -#: ../../Zotlabs/Module/Admin.php:1035 +#: ../../Zotlabs/Module/Admin.php:1048 msgid "Request date" msgstr "Fecha de solicitud" -#: ../../Zotlabs/Module/Admin.php:1036 +#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 +#: ../../include/network.php:2208 +msgid "Email" +msgstr "Correo electrónico" + +#: ../../Zotlabs/Module/Admin.php:1049 msgid "No registrations." msgstr "Sin registros." -#: ../../Zotlabs/Module/Admin.php:1038 +#: ../../Zotlabs/Module/Admin.php:1051 msgid "Deny" msgstr "Rechazar" -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Bloquear" + +#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Desbloquear" + +#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 msgid "All Channels" msgstr "Todos los canales" -#: ../../Zotlabs/Module/Admin.php:1049 +#: ../../Zotlabs/Module/Admin.php:1062 msgid "Register date" msgstr "Fecha de registro" -#: ../../Zotlabs/Module/Admin.php:1050 +#: ../../Zotlabs/Module/Admin.php:1063 msgid "Last login" msgstr "Último acceso" -#: ../../Zotlabs/Module/Admin.php:1051 +#: ../../Zotlabs/Module/Admin.php:1064 msgid "Expires" msgstr "Caduca" -#: ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1065 msgid "Service Class" msgstr "Clase de servicio" -#: ../../Zotlabs/Module/Admin.php:1054 +#: ../../Zotlabs/Module/Admin.php:1067 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted" " on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin.php:1055 +#: ../../Zotlabs/Module/Admin.php:1068 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin.php:1091 +#: ../../Zotlabs/Module/Admin.php:1104 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "%s canales censurados/no censurados" msgstr[1] "%s canales censurados/no censurados" -#: ../../Zotlabs/Module/Admin.php:1100 +#: ../../Zotlabs/Module/Admin.php:1113 #, php-format msgid "%s channel code allowed/disallowed" msgid_plural "%s channels code allowed/disallowed" msgstr[0] "%s código permitido/no permitido al canal" msgstr[1] "%s código permitido/no permitido al canal" -#: ../../Zotlabs/Module/Admin.php:1106 +#: ../../Zotlabs/Module/Admin.php:1119 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "%s canales eliminados" msgstr[1] "%s canales eliminados" -#: ../../Zotlabs/Module/Admin.php:1126 +#: ../../Zotlabs/Module/Admin.php:1139 msgid "Channel not found" msgstr "Canal no encontrado" -#: ../../Zotlabs/Module/Admin.php:1136 +#: ../../Zotlabs/Module/Admin.php:1149 #, php-format msgid "Channel '%s' deleted" msgstr "Canal '%s' eliminado" -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Admin.php:1161 #, php-format msgid "Channel '%s' censored" msgstr "Canal '%s' censurado" -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Admin.php:1161 #, php-format msgid "Channel '%s' uncensored" msgstr "Canal '%s' no censurado" -#: ../../Zotlabs/Module/Admin.php:1159 +#: ../../Zotlabs/Module/Admin.php:1172 #, php-format msgid "Channel '%s' code allowed" msgstr "Código permitido al canal '%s'" -#: ../../Zotlabs/Module/Admin.php:1159 +#: ../../Zotlabs/Module/Admin.php:1172 #, php-format msgid "Channel '%s' code disallowed" msgstr "Código no permitido al canal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1492 msgid "Channels" msgstr "Canales" -#: ../../Zotlabs/Module/Admin.php:1214 +#: ../../Zotlabs/Module/Admin.php:1227 msgid "Censor" msgstr "Censurar" -#: ../../Zotlabs/Module/Admin.php:1215 +#: ../../Zotlabs/Module/Admin.php:1228 msgid "Uncensor" msgstr "No censurar" -#: ../../Zotlabs/Module/Admin.php:1216 +#: ../../Zotlabs/Module/Admin.php:1229 msgid "Allow Code" msgstr "Permitir código" -#: ../../Zotlabs/Module/Admin.php:1217 +#: ../../Zotlabs/Module/Admin.php:1230 msgid "Disallow Code" msgstr "No permitir código" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1644 msgid "Channel" msgstr "Canal" -#: ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1235 msgid "UID" msgstr "UID" -#: ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Admin.php:1239 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " "channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin.php:1227 +#: ../../Zotlabs/Module/Admin.php:1240 msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin.php:1284 +#: ../../Zotlabs/Module/Admin.php:1297 #, php-format msgid "Plugin %s disabled." msgstr "Extensión %s desactivada." -#: ../../Zotlabs/Module/Admin.php:1288 +#: ../../Zotlabs/Module/Admin.php:1301 #, php-format msgid "Plugin %s enabled." msgstr "Extensión %s activada." -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1599 msgid "Disable" msgstr "Desactivar" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +#: ../../Zotlabs/Module/Admin.php:1314 ../../Zotlabs/Module/Admin.php:1601 msgid "Enable" msgstr "Activar" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../Zotlabs/Module/Admin.php:1343 ../../Zotlabs/Module/Admin.php:1434 +#: ../../include/widgets.php:1495 msgid "Plugins" msgstr "Extensiones (plugins)" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +#: ../../Zotlabs/Module/Admin.php:1344 ../../Zotlabs/Module/Admin.php:1628 msgid "Toggle" msgstr "Cambiar" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1629 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 +#: ../../include/nav.php:212 msgid "Settings" msgstr "Ajustes" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1638 msgid "Author: " msgstr "Autor:" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1639 msgid "Maintainer: " msgstr "Mantenedor:" -#: ../../Zotlabs/Module/Admin.php:1341 +#: ../../Zotlabs/Module/Admin.php:1354 msgid "Minimum project version: " msgstr "Versión mínima del proyecto:" -#: ../../Zotlabs/Module/Admin.php:1342 +#: ../../Zotlabs/Module/Admin.php:1355 msgid "Maximum project version: " msgstr "Versión máxima del proyecto:" -#: ../../Zotlabs/Module/Admin.php:1343 +#: ../../Zotlabs/Module/Admin.php:1356 msgid "Minimum PHP version: " msgstr "Versión mínima de PHP:" -#: ../../Zotlabs/Module/Admin.php:1344 +#: ../../Zotlabs/Module/Admin.php:1357 +msgid "Compatible Server Roles: " +msgstr "Configuraciones compatibles con este servidor:" + +#: ../../Zotlabs/Module/Admin.php:1358 msgid "Requires: " msgstr "Se requiere:" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +#: ../../Zotlabs/Module/Admin.php:1359 ../../Zotlabs/Module/Admin.php:1439 msgid "Disabled - version incompatibility" msgstr "Deshabilitado - versiones incompatibles" -#: ../../Zotlabs/Module/Admin.php:1394 +#: ../../Zotlabs/Module/Admin.php:1408 msgid "Enter the public git repository URL of the plugin repo." msgstr "Escriba la URL pública del repositorio git del plugin." -#: ../../Zotlabs/Module/Admin.php:1395 +#: ../../Zotlabs/Module/Admin.php:1409 msgid "Plugin repo git URL" msgstr "URL del repositorio git del plugin" -#: ../../Zotlabs/Module/Admin.php:1396 +#: ../../Zotlabs/Module/Admin.php:1410 msgid "Custom repo name" msgstr "Nombre personalizado del repositorio" -#: ../../Zotlabs/Module/Admin.php:1396 +#: ../../Zotlabs/Module/Admin.php:1410 msgid "(optional)" msgstr "(opcional)" -#: ../../Zotlabs/Module/Admin.php:1397 +#: ../../Zotlabs/Module/Admin.php:1411 msgid "Download Plugin Repo" msgstr "Descargar el repositorio" -#: ../../Zotlabs/Module/Admin.php:1404 +#: ../../Zotlabs/Module/Admin.php:1418 msgid "Install new repo" msgstr "Instalar un nuevo repositorio" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1419 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "Instalar" -#: ../../Zotlabs/Module/Admin.php:1427 +#: ../../Zotlabs/Module/Admin.php:1441 msgid "Manage Repos" msgstr "Gestionar los repositorios" -#: ../../Zotlabs/Module/Admin.php:1428 +#: ../../Zotlabs/Module/Admin.php:1442 msgid "Installed Plugin Repositories" msgstr "Repositorios de los plugins instalados" -#: ../../Zotlabs/Module/Admin.php:1429 +#: ../../Zotlabs/Module/Admin.php:1443 msgid "Install a New Plugin Repository" msgstr "Instalar un nuevo repositorio de plugins" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Actualizar" - -#: ../../Zotlabs/Module/Admin.php:1436 +#: ../../Zotlabs/Module/Admin.php:1450 msgid "Switch branch" msgstr "Cambiar la rama" -#: ../../Zotlabs/Module/Admin.php:1550 +#: ../../Zotlabs/Module/Admin.php:1564 msgid "No themes found." msgstr "No se han encontrado temas." -#: ../../Zotlabs/Module/Admin.php:1606 +#: ../../Zotlabs/Module/Admin.php:1620 msgid "Screenshot" msgstr "Instantánea de pantalla" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../Zotlabs/Module/Admin.php:1627 ../../Zotlabs/Module/Admin.php:1661 +#: ../../include/widgets.php:1496 msgid "Themes" msgstr "Temas" -#: ../../Zotlabs/Module/Admin.php:1652 +#: ../../Zotlabs/Module/Admin.php:1666 msgid "[Experimental]" msgstr "[Experimental]" -#: ../../Zotlabs/Module/Admin.php:1653 +#: ../../Zotlabs/Module/Admin.php:1667 msgid "[Unsupported]" msgstr "[No soportado]" -#: ../../Zotlabs/Module/Admin.php:1677 +#: ../../Zotlabs/Module/Admin.php:1691 msgid "Log settings updated." msgstr "Actualizado el informe de configuraciones." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1746 ../../include/widgets.php:1517 +#: ../../include/widgets.php:1527 msgid "Logs" msgstr "Informes" -#: ../../Zotlabs/Module/Admin.php:1734 +#: ../../Zotlabs/Module/Admin.php:1748 msgid "Clear" msgstr "Vaciar" -#: ../../Zotlabs/Module/Admin.php:1740 +#: ../../Zotlabs/Module/Admin.php:1754 msgid "Debugging" msgstr "Depuración" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:1755 msgid "Log file" msgstr "Fichero de informe" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:1755 msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal." -#: ../../Zotlabs/Module/Admin.php:1742 +#: ../../Zotlabs/Module/Admin.php:1756 msgid "Log level" msgstr "Nivel de depuración" -#: ../../Zotlabs/Module/Admin.php:2028 +#: ../../Zotlabs/Module/Admin.php:2042 msgid "New Profile Field" msgstr "Nuevo campo en el perfil" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 msgid "Field nickname" msgstr "Alias del campo" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 msgid "System name of field" msgstr "Nombre del campo en el sistema" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +#: ../../Zotlabs/Module/Admin.php:2044 ../../Zotlabs/Module/Admin.php:2064 msgid "Input type" msgstr "Tipo de entrada" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 msgid "Field Name" msgstr "Nombre del campo" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 msgid "Label on profile pages" msgstr "Etiqueta a mostrar en la página del perfil" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 msgid "Help text" msgstr "Texto de ayuda" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 msgid "Additional info (optional)" msgstr "Información adicional (opcional)" -#: ../../Zotlabs/Module/Admin.php:2042 +#: ../../Zotlabs/Module/Admin.php:2056 msgid "Field definition not found" msgstr "Definición del campo no encontrada" -#: ../../Zotlabs/Module/Admin.php:2048 +#: ../../Zotlabs/Module/Admin.php:2062 msgid "Edit Profile Field" msgstr "Modificar el campo del perfil" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2120 ../../include/widgets.php:1498 msgid "Profile Fields" msgstr "Campos del perfil" -#: ../../Zotlabs/Module/Admin.php:2107 +#: ../../Zotlabs/Module/Admin.php:2121 msgid "Basic Profile Fields" msgstr "Campos básicos del perfil" -#: ../../Zotlabs/Module/Admin.php:2108 +#: ../../Zotlabs/Module/Admin.php:2122 msgid "Advanced Profile Fields" msgstr "Campos avanzados del perfil" -#: ../../Zotlabs/Module/Admin.php:2108 +#: ../../Zotlabs/Module/Admin.php:2122 msgid "(In addition to basic fields)" msgstr "(Además de los campos básicos)" -#: ../../Zotlabs/Module/Admin.php:2110 +#: ../../Zotlabs/Module/Admin.php:2124 msgid "All available fields" msgstr "Todos los campos disponibles" -#: ../../Zotlabs/Module/Admin.php:2111 +#: ../../Zotlabs/Module/Admin.php:2125 msgid "Custom Fields" msgstr "Campos personalizados" -#: ../../Zotlabs/Module/Admin.php:2115 +#: ../../Zotlabs/Module/Admin.php:2129 msgid "Create Custom Field" msgstr "Crear un campo personalizado" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nombre o descripción" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No se ha encontrado una cuenta válida." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Elija un alias corto" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Usuario del sitio (%s)" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/Lostpass.php:44 #, php-format +msgid "Password reset requested at %s" +msgstr "Se ha solicitado restablecer la contraseña en %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 +msgid "Password Reset" +msgstr "Restablecer la contraseña" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Su contraseña ha sido restablecida según lo solicitó." -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Leer más sobre los roles" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Su nueva contraseña es" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crear un canal" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Guarde o copie su nueva contraseña - y después" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "pulse aquí para conectarse" -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Lostpass.php:95 msgid "" -"or import an existing channel from another location." -msgstr "O importar un canal existente desde otro lugar." +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "le ha enviado un mensaje privado" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Su contraseña en %s ha sido cambiada" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "añadió este canal a sus conexiones" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "¿Ha olvidado su contraseña?" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[hoy]" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Dirección de correo electrónico" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "publicó un evento" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reiniciar" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Petición inválida del identificador." +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s está %2$s" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Descartar" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Estado de ánimo" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones de sistema como leídas" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Toques y otras cosas" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Perfil no encontrado." -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dar un toque a alguien" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Perfil eliminado." -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Toque/Incitación" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Perfil-" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Dar un toque, incitar o hacer otras cosas a alguien" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "El nuevo perfil ha sido creado." -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Perfil no disponible para clonar." -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Elegir qué desea enviar al destinatario" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Perfil no disponible para exportar." -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Convertir en privado este envío" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Se necesita el nombre del perfil." -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No se puede encontrar su servidor." +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Estado civil" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Enviado con éxito." +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Pareja sentimental" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Me gusta" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "El acceso ha fallado." +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "No me gusta" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identificador del perfil no válido" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Trabajo:" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religión" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Perfil" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Ideas políticas" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Pulsar en un contacto para añadirlo o eliminarlo." +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Género" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible para" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Preferencia sexual" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Página personal" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor de configuración" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Intereses" -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Perfil actualizado." -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Al intentar obtener la dirección, retorna el error: %1$s" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Ocultar la lista de conexiones a los visitantes del perfil" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versión %s" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Modificar los detalles de este perfil" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Ver este perfil" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "Editar visibilidad" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Gestión del perfil" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Etiqueta:" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Cambiar la imagen de portada del perfil" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Última actualización en segundo plano:" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" +msgstr "Cambiar la foto del perfil" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carga media actual:" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Crear un nuevo perfil usando estos ajustes" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Corriendo en el sitio web" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Clonar este perfil" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Eliminar este perfil" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Informes de errores e incidencias: por favor visite" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Añadir cosas al perfil" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problemas en $projectname" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1559 +msgid "Personal" +msgstr "Personales" -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relación" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administradores del sitio" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Varios" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita." +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importar perfil desde un fichero" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "El mensaje de error fue:" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Exportar perfil a un fichero" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Falló la autenticación." +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Género" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Acceso desde su servidor" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Estado civil" -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Preferencia sexual" -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Acceder" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Nombre del perfil" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Servidores públicos" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Este es su perfil principal." -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Nombre completo" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Dirección del hub" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Título o descripción" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipo de acceso" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Dirección" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Normas de registro" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Ciudad" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Estadísticas" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Región o Estado" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "Código postal" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Valoraciones" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Valorar" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nombre del bloque" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Bloques" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Título del bloque" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Sitio web:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valoración (esta información es pública)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Ninguna valoración" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valoración:" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Sitio web:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descripción:" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Aplicaciones (apps)" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Título (opcional)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modificar este bloque" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ningún canal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Conexiones comunes" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ninguna conexión en común." - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Seleccionar una carpeta de marcadores" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Guardar marcador" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "Dirección del marcador" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" - -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." - -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." - -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Su registro está pendiente de aprobación por el propietario del sitio." - -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Su registro no puede ser procesado." - -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "El registro está deshabilitado en este sitio." - -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "El registro en este hub está sometido a aprobación previa." - -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrarse en otro hub afiliado." - -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." - -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Términos del servicio" - -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Acepto los %s de este sitio" - -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" - -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Su dirección de correo electrónico" - -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Elija una contraseña" - -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Por favor, vuelva a escribir su contraseña" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "País" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Por favor, introduzca el código de su invitación" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Quién (si es pertinente)" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "sí" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "Desde (fecha)" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "Para registrarse en este sitio es necesaria una invitación." +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Háblenos de usted" -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 -msgid "Register" -msgstr "Registrarse" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Dirección de la página personal" -#: ../../Zotlabs/Module/Register.php:263 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones." +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Lugar de nacimiento" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Por favor, inicie sesión." +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Ideas políticas" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Creencias religiosas" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Eliminar esta cuenta" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Palabras clave utilizadas en los listados de directorios" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "ATENCIÓN:" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Por ejemplo: software de fotografía submarina" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Preferencias musicales" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Libros, literatura" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduzca su contraseña para su verificación:" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisión" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Remover esta cuenta, todos sus canales y clones de la red" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Cine, danza, cultura, entretenimiento" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Aficiones o intereses" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 -msgid "Remove Account" -msgstr "Eliminar cuenta" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Vida sentimental o amorosa" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Estudios" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Eliminar este canal" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Información de contacto y redes sociales" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Este canal va a ser completamente eliminado de la red." +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mis otros canales" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Eliminar este canal y todos sus clones de la red" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "Imagen del perfil" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 +#: ../../include/nav.php:90 +msgid "Edit Profiles" +msgstr "Editar perfiles" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 -msgid "Remove Channel" -msgstr "Eliminar el canal" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "No hay más notificaciones del sistema" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exportar el canal" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notificaciones del sistema" -#: ../../Zotlabs/Module/Uexport.php:57 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Perfil compatible" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Exportar contenidos" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "está interesado en:" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporta sus publicaciones de un año dado." +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No se han encontrado perfiles compatibles" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import Webpage Elements" +msgstr "Importar elementos de una página web" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import selected" +msgstr "Importar elementos seleccionados" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" +#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/conversation.php:1718 ../../include/nav.php:108 +msgid "Webpages" +msgstr "Páginas web" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." +#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Acciones" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "elementos etiquetados con: %s" +#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Vínculo de la página" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Resultados de la búsqueda para: %s" +#: ../../Zotlabs/Module/Webpages.php:227 +msgid "Page Title" +msgstr "Título de página" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "No se han encontrado restricciones sobre esta clase de servicio." +#: ../../Zotlabs/Module/Webpages.php:258 +msgid "Invalid file type." +msgstr "Tipo de fichero no válido." -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "El nombre es obligatorio" +#: ../../Zotlabs/Module/Webpages.php:270 +msgid "Error opening zip file" +msgstr "Error al abrir el fichero comprimido zip" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "\"Key\" y \"Secret\" son obligatorios" +#: ../../Zotlabs/Module/Webpages.php:281 +msgid "Invalid folder path." +msgstr "La ruta de la carpeta no es válida." -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Este canal tiene un límite de %d tokens" +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "No webpage elements detected." +msgstr "No se han detectado elementos de ninguna página web." -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Se requiere el nombre y la contraseña." +#: ../../Zotlabs/Module/Webpages.php:382 +msgid "Import complete." +msgstr "Importación completada." -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "Token salvado." +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Entradas de calendario importadas." -#: ../../Zotlabs/Module/Settings.php:274 -msgid "Not valid email." -msgstr "Correo electrónico no válido." +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "No se han encontrado entradas de calendario." -#: ../../Zotlabs/Module/Settings.php:277 -msgid "Protected email address. Cannot change to that email." -msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de que haya comenzado." -#: ../../Zotlabs/Module/Settings.php:286 -msgid "System failure storing new email. Please try again." -msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "No se puede crear la vista previa." -#: ../../Zotlabs/Module/Settings.php:303 -msgid "Password verification failed." -msgstr "La comprobación de la contraseña ha fallado." +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Se requieren el título del evento y su hora de inicio." -#: ../../Zotlabs/Module/Settings.php:310 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Evento no encontrado." -#: ../../Zotlabs/Module/Settings.php:314 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" +msgstr "Editar el título del evento" -#: ../../Zotlabs/Module/Settings.php:328 -msgid "Password changed." -msgstr "Contraseña cambiada." +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" +msgstr "Título del evento" -#: ../../Zotlabs/Module/Settings.php:330 -msgid "Password update failed. Please try again." -msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" +msgstr "Temas (lista separada por comas)" -#: ../../Zotlabs/Module/Settings.php:579 -msgid "Settings updated." -msgstr "Ajustes actualizados." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" +msgstr "Modificar el tema" -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Add application" -msgstr "Añadir aplicación" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" +msgstr "Tema" -#: ../../Zotlabs/Module/Settings.php:646 -msgid "Name of application" -msgstr "Nombre de la aplicación" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" +msgstr "Modificar la fecha y hora de comienzo" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" +msgstr "Fecha y hora de comienzo" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" +msgstr "La fecha y hora de terminación no se conocen o no son relevantes" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" +msgstr "Modificar la fecha y hora de terminación" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 -msgid "Redirect" -msgstr "Redirigir" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" +msgstr "Fecha y hora de terminación" + +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" +msgstr "Ajustar para obtener el visor de los husos horarios" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Events.php:463 msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 -msgid "Icon url" -msgstr "Dirección del icono" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" +msgstr "Editar la descripción" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Opcional" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" +msgstr "Modificar la dirección" -#: ../../Zotlabs/Module/Settings.php:661 -msgid "Application not found." -msgstr "Aplicación no encontrada." +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" +msgstr "Compartir este evento" -#: ../../Zotlabs/Module/Settings.php:704 -msgid "Connected Apps" -msgstr "Aplicaciones (apps) conectadas" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 +msgid "Permission settings" +msgstr "Configuración de permisos" -#: ../../Zotlabs/Module/Settings.php:708 -msgid "Client key starts with" -msgstr "La \"client key\" empieza por" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" +msgstr "Opciones avanzadas" -#: ../../Zotlabs/Module/Settings.php:709 -msgid "No name" -msgstr "Sin nombre" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Settings.php:710 -msgid "Remove authorization" -msgstr "Eliminar autorización" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" +msgstr "Editar evento" -#: ../../Zotlabs/Module/Settings.php:723 -msgid "No feature settings configured" -msgstr "No se ha establecido la configuración de los complementos" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" +msgstr "Borrar evento" -#: ../../Zotlabs/Module/Settings.php:730 -msgid "Feature/Addon Settings" -msgstr "Ajustes de los complementos" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1716 +msgid "Link to Source" +msgstr "Enlazar con la entrada en su ubicación original" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Account Settings" -msgstr "Configuración de la cuenta" +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" +msgstr "calendario" -#: ../../Zotlabs/Module/Settings.php:754 -msgid "Current Password" -msgstr "Contraseña actual" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Editar el evento" -#: ../../Zotlabs/Module/Settings.php:755 -msgid "Enter New Password" -msgstr "Escribir una nueva contraseña" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Crear un evento" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Confirm New Password" -msgstr "Confirmar la nueva contraseña" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Exportar" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Leave password fields blank unless changing" -msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" +msgstr "Mes" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 -msgid "Email Address:" -msgstr "Dirección de correo electrónico:" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Semana" -#: ../../Zotlabs/Module/Settings.php:760 -msgid "Remove this account including all its channels" -msgstr "Eliminar esta cuenta incluyendo todos sus canales" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Día" -#: ../../Zotlabs/Module/Settings.php:789 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access the private content." -msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros. Estas identidades se pueden usar en las Listas de control de acceso y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado." +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Hoy" -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: " +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Evento borrado" -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Tokens de acceso para invitados" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Error al eliminar el evento" -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "Nombre de inicio de sesión" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Su paquete de servicios solo permite %d canales." -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "Contraseña de inicio de sesión" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "Expira (aaaa-mm-dd)" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "No hay canal. La importación ha fallado" + +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Importación completada." + +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Debe estar registrado para poder usar esta funcionalidad." -#: ../../Zotlabs/Module/Settings.php:830 -msgid "Additional Features" -msgstr "Funcionalidades" +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importar canal" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "Connector Settings" -msgstr "Configuración del conector" +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." -#: ../../Zotlabs/Module/Settings.php:893 -msgid "No special theme for mobile devices" -msgstr "Sin tema especial para dispositivos móviles" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "O proporcione los detalles de su antiguo servidor/hub" -#: ../../Zotlabs/Module/Settings.php:896 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" -#: ../../Zotlabs/Module/Settings.php:938 -msgid "Display Settings" -msgstr "Ajustes de visualización" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Su antigua dirección de correo electrónico" -#: ../../Zotlabs/Module/Settings.php:939 -msgid "Theme Settings" -msgstr "Ajustes del tema" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Su antigua contraseña" -#: ../../Zotlabs/Module/Settings.php:940 -msgid "Custom Theme Settings" -msgstr "Ajustes personalizados del tema" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." -#: ../../Zotlabs/Module/Settings.php:941 -msgid "Content Settings" -msgstr "Ajustes del contenido" +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Convertir este servidor en mi ubicación primaria" -#: ../../Zotlabs/Module/Settings.php:947 -msgid "Display Theme:" -msgstr "Tema gráfico del perfil:" +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" -#: ../../Zotlabs/Module/Settings.php:948 -msgid "Mobile Theme:" -msgstr "Tema para el móvil:" +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." -#: ../../Zotlabs/Module/Settings.php:949 -msgid "Preload images before rendering the page" -msgstr "Carga previa de las imágenes antes de generar la página" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crear un canal" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/New_channel.php:136 msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." -#: ../../Zotlabs/Module/Settings.php:950 -msgid "Enable user zoom on mobile devices" -msgstr "Habilitar zoom de usuario en dispositivos móviles" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "O importar un canal existente desde otro lugar." -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Update browser every xx seconds" -msgstr "Actualizar navegador cada xx segundos" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "le ha enviado un mensaje privado" -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínimo de 10 segundos, sin máximo" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "añadió este canal a sus conexiones" -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum number of conversations to load at any time:" -msgstr "Máximo número de conversaciones a cargar en cualquier momento:" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum of 100 items" -msgstr "Máximo de 100 elementos" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[hoy]" -#: ../../Zotlabs/Module/Settings.php:953 -msgid "Show emoticons (smilies) as images" -msgstr "Mostrar emoticonos (smilies) como imágenes" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "publicó un evento" -#: ../../Zotlabs/Module/Settings.php:954 -msgid "Link post titles to source" -msgstr "Enlazar título de la publicación a la fuente original" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Petición inválida del identificador." -#: ../../Zotlabs/Module/Settings.php:955 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de plantilla de página del sistema - (avanzado)" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descartar" -#: ../../Zotlabs/Module/Settings.php:958 -msgid "Use blog/list mode on channel page" -msgstr "Usar modo blog/lista en la página de inicio del canal" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones de sistema como leídas" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 -msgid "(comments displayed separately)" -msgstr "(comentarios mostrados de forma separada)" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" +msgstr "Toques y otras cosas" -#: ../../Zotlabs/Module/Settings.php:959 -msgid "Use blog/list mode on grid page" -msgstr "Mostrar mi red en modo blog" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dar un toque a alguien" -#: ../../Zotlabs/Module/Settings.php:960 -msgid "Channel page max height of content (in pixels)" -msgstr "Altura máxima del contenido de la página del canal (en píxeles)" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Toque/Incitación" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 -msgid "click to expand content exceeding this height" -msgstr "Pulsar para expandir el contenido que exceda de esta altura" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Dar un toque, incitar o hacer otras cosas a alguien" -#: ../../Zotlabs/Module/Settings.php:961 -msgid "Grid page max height of content (in pixels)" -msgstr "Altura máxima del contenido de mi red (en píxeles)" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Nobody except yourself" -msgstr "Nadie excepto usted" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Elegir qué desea enviar al destinatario" -#: ../../Zotlabs/Module/Settings.php:991 -msgid "Only those you specifically allow" -msgstr "Solo aquellos a los que usted permita explícitamente" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Convertir en privado este envío" -#: ../../Zotlabs/Module/Settings.php:992 -msgid "Approved connections" -msgstr "Conexiones aprobadas" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No se puede encontrar su servidor." -#: ../../Zotlabs/Module/Settings.php:993 -msgid "Any connections" -msgstr "Cualquier conexión" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Enviado con éxito." -#: ../../Zotlabs/Module/Settings.php:994 -msgid "Anybody on this website" -msgstr "Cualquiera en este sitio web" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador del perfil no válido" -#: ../../Zotlabs/Module/Settings.php:995 -msgid "Anybody in this network" -msgstr "Cualquiera en esta red" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" -#: ../../Zotlabs/Module/Settings.php:996 -msgid "Anybody authenticated" -msgstr "Cualquiera que esté autenticado" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Perfil" -#: ../../Zotlabs/Module/Settings.php:997 -msgid "Anybody on the internet" -msgstr "Cualquiera en internet" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Pulsar en un contacto para añadirlo o eliminarlo." -#: ../../Zotlabs/Module/Settings.php:1071 -msgid "Publish your default profile in the network directory" -msgstr "Publicar su perfil principal en el directorio de la red" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible para" -#: ../../Zotlabs/Module/Settings.php:1076 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "Your channel address is" -msgstr "Su dirección de canal es" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de configuración" -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Channel Settings" -msgstr "Ajustes del canal" +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." -#: ../../Zotlabs/Module/Settings.php:1134 -msgid "Basic Settings" -msgstr "Configuración básica" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Debe haber iniciado sesión para poder ver esta página." -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 -msgid "Full Name:" -msgstr "Nombre completo:" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Publicaciones y comentarios" -#: ../../Zotlabs/Module/Settings.php:1137 -msgid "Your Timezone:" -msgstr "Su huso horario:" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Solo publicaciones" -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Default Post Location:" -msgstr "Localización geográfica predeterminada para sus publicaciones:" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Geographical location to display on your posts" -msgstr "Localización geográfica que debe mostrarse en sus publicaciones" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versión %s" -#: ../../Zotlabs/Module/Settings.php:1139 -msgid "Use Browser Location:" -msgstr "Usar la localización geográfica del navegador:" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" -#: ../../Zotlabs/Module/Settings.php:1141 -msgid "Adult Content" -msgstr "Contenido solo para adultos" +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Siteinfo.php:49 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" - -#: ../../Zotlabs/Module/Settings.php:1143 -msgid "Security and Privacy Settings" -msgstr "Configuración de seguridad y privacidad" - -#: ../../Zotlabs/Module/Settings.php:1146 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Hide my online presence" -msgstr "Ocultar mi presencia en línea" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Etiqueta:" -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Prevents displaying in your profile that you are online" -msgstr "Evitar mostrar en su perfil que está en línea" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Última actualización en segundo plano:" -#: ../../Zotlabs/Module/Settings.php:1150 -msgid "Simple Privacy Settings:" -msgstr "Configuración de privacidad sencilla:" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Carga media actual:" -#: ../../Zotlabs/Module/Settings.php:1151 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Corriendo en el sitio web" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Siteinfo.php:59 msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" - -#: ../../Zotlabs/Module/Settings.php:1153 -msgid "Private - default private, never open or public" -msgstr "Privado - por defecto, privado, nunca abierto o público" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." -#: ../../Zotlabs/Module/Settings.php:1154 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Informes de errores e incidencias: por favor visite" -#: ../../Zotlabs/Module/Settings.php:1156 -msgid "Allow others to tag your posts" -msgstr "Permitir a otros etiquetar sus publicaciones" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "Problemas en $projectname" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Siteinfo.php:63 msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." - -#: ../../Zotlabs/Module/Settings.php:1158 -msgid "Advanced Privacy Settings" -msgstr "Configuración de privacidad avanzada" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "Expire other channel content after this many days" -msgstr "Caducar contenido de otros canales después de este número de días" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Administradores del sitio" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "0 or blank to use the website limit." -msgstr "0 o en blanco para usar el límite del sitio web." +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 +msgid "Blocks" +msgstr "Bloques" -#: ../../Zotlabs/Module/Settings.php:1160 -#, php-format -msgid "This website expires after %d days." -msgstr "Este sitio web caduca después de %d días." +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Título del bloque" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "This website does not expire imported content." -msgstr "Este sitio web no caduca el contenido importado." +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 +msgid "Layouts" +msgstr "Plantillas" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "The website limit takes precedence if lower than your limit." -msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "Maximum Friend Requests/Day:" -msgstr "Máximo de solicitudes de amistad por día:" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Descripción de la plantilla" -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "May reduce spam activity" -msgstr "Podría reducir la actividad de spam" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "Descargar el fichero PDL" -#: ../../Zotlabs/Module/Settings.php:1162 -msgid "Default Post and Publish Permissions" -msgstr "Permisos predeterminados de entradas y publicaciones" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Ninguna valoración" -#: ../../Zotlabs/Module/Settings.php:1164 -msgid "Use my default audience setting for the type of object published" -msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valoración:" -#: ../../Zotlabs/Module/Settings.php:1167 -msgid "Channel permissions category:" -msgstr "Categoría de permisos del canal:" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sitio web:" -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Maximum private messages per day from unknown people:" -msgstr "Máximo de mensajes privados por día de gente desconocida:" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descripción:" -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Useful to reduce spamming" -msgstr "Útil para reducir el envío de correo no deseado" +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." -#: ../../Zotlabs/Module/Settings.php:1176 -msgid "Notification Settings" -msgstr "Configuración de las notificaciones" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Subir foto de perfil" -#: ../../Zotlabs/Module/Settings.php:1177 -msgid "By default post a status message when:" -msgstr "Por defecto, enviar un mensaje de estado cuando:" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permisos denegados." -#: ../../Zotlabs/Module/Settings.php:1178 -msgid "accepting a friend request" -msgstr "Acepte una solicitud de amistad" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 +msgid "Import" +msgstr "Importar" -#: ../../Zotlabs/Module/Settings.php:1179 -msgid "joining a forum/community" -msgstr "al unirse a un foro o comunidad" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ningún canal." -#: ../../Zotlabs/Module/Settings.php:1180 -msgid "making an interesting profile change" -msgstr "Realice un cambio interesante en su perfil" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Conexiones comunes" -#: ../../Zotlabs/Module/Settings.php:1181 -msgid "Send a notification email when:" -msgstr "Enviar una notificación por correo electrónico cuando:" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Ninguna conexión en común." -#: ../../Zotlabs/Module/Settings.php:1182 -msgid "You receive a connection request" -msgstr "Reciba una solicitud de conexión" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "No se puede asociar a un destinatario." -#: ../../Zotlabs/Module/Settings.php:1183 -msgid "Your connections are confirmed" -msgstr "Sus conexiones hayan sido confirmadas" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "No se puede establecer la comunicación con el canal solicitado." -#: ../../Zotlabs/Module/Settings.php:1184 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en la página de su perfil (\"muro\")" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "No se puede verificar el canal solicitado." -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Someone writes a followup comment" -msgstr "Alguien escriba un comentario sobre sus publicaciones" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." -#: ../../Zotlabs/Module/Settings.php:1186 -msgid "You receive a private message" -msgstr "Reciba un mensaje privado" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Mensajes" -#: ../../Zotlabs/Module/Settings.php:1187 -msgid "You receive a friend suggestion" -msgstr "Reciba una sugerencia de amistad" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Mensaje revocado." -#: ../../Zotlabs/Module/Settings.php:1188 -msgid "You are tagged in a post" -msgstr "Usted sea etiquetado en una publicación" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversación eliminada." -#: ../../Zotlabs/Module/Settings.php:1189 -msgid "You are poked/prodded/etc. in a post" -msgstr "Reciba un toque o incitación en una publicación" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "Por favor, introduzca la dirección del enlace:" -#: ../../Zotlabs/Module/Settings.php:1192 -msgid "Show visual notifications including:" -msgstr "Mostrar notificaciones visuales que incluyan:" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Caduca YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Settings.php:1194 -msgid "Unseen grid activity" -msgstr "Nueva actividad en la red" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "El canal solicitado no existe en esta red" -#: ../../Zotlabs/Module/Settings.php:1195 -msgid "Unseen channel activity" -msgstr "Actividad no vista en el canal" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Enviar un mensaje privado" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Unseen private messages" -msgstr "Mensajes privados no leídos" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "Para:" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 -msgid "Recommended" -msgstr "Recomendado" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Asunto:" -#: ../../Zotlabs/Module/Settings.php:1197 -msgid "Upcoming events" -msgstr "Próximos eventos" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1239 +msgid "Attach file" +msgstr "Adjuntar fichero" -#: ../../Zotlabs/Module/Settings.php:1198 -msgid "Events today" -msgstr "Eventos de hoy" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Enviar" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Upcoming birthdays" -msgstr "Próximos cumpleaños" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1284 +msgid "Set expiration date" +msgstr "Configurar fecha de caducidad" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Not available in all themes" -msgstr "No disponible en todos los temas" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 +#: ../../include/conversation.php:1289 +msgid "Encrypt text" +msgstr "Cifrar texto" -#: ../../Zotlabs/Module/Settings.php:1200 -msgid "System (personal) notifications" -msgstr "Notificaciones del sistema (personales)" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Borrar mensaje" -#: ../../Zotlabs/Module/Settings.php:1201 -msgid "System info messages" -msgstr "Mensajes de información del sistema" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Informe de transmisión" -#: ../../Zotlabs/Module/Settings.php:1202 -msgid "System critical alerts" -msgstr "Alertas críticas del sistema" +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Revocar el mensaje" -#: ../../Zotlabs/Module/Settings.php:1203 -msgid "New connections" -msgstr "Nuevas conexiones" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "El mensaje ha sido revocado." -#: ../../Zotlabs/Module/Settings.php:1204 -msgid "System Registrations" -msgstr "Registros del sistema" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Eliminar conversación" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Mail.php:355 msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Notify me of events this many days in advance" -msgstr "Avisarme de los eventos con algunos días de antelación" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Responder" + +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Su mensaje para %s (%s):" -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Must be greater than 0" -msgstr "Debe ser mayor que 0" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "No se ha podido acceder al registro de contacto." -#: ../../Zotlabs/Module/Settings.php:1209 -msgid "Advanced Account/Page Type Settings" -msgstr "Ajustes avanzados de la cuenta y de los tipos de página" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "No se ha podido localizar el perfil seleccionado." -#: ../../Zotlabs/Module/Settings.php:1210 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Conexión actualizada." -#: ../../Zotlabs/Module/Settings.php:1213 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Error al actualizar el registro de la conexión." -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "Miscellaneous Settings" -msgstr "Ajustes diversos" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "ahora está conectado/a" -#: ../../Zotlabs/Module/Settings.php:1215 -msgid "Default photo upload folder" -msgstr "Carpeta por defecto de las fotos subidas" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "No se pudo acceder al registro en su libreta de direcciones." -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "%Y - current year, %m - current month" -msgstr "%Y - año en curso, %m - mes actual" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Recarga fallida - no se puede encontrar el canal en este momento." -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "Default file upload folder" -msgstr "Carpeta por defecto de los archivos subidos" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "Personal menu to display in your channel pages" -msgstr "Menú personal que debe mostrarse en las páginas de su canal" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "La conexión ha sido eliminada." -#: ../../Zotlabs/Module/Settings.php:1220 -msgid "Remove this channel." -msgstr "Eliminar este canal." +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/conversation.php:955 ../../include/nav.php:88 +msgid "View Profile" +msgstr "Ver el perfil" -#: ../../Zotlabs/Module/Settings.php:1221 -msgid "Firefox Share $Projectname provider" -msgstr "Servicio de compartición de Firefox: proveedor $Projectname" +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "Ver el perfil de %s" -#: ../../Zotlabs/Module/Settings.php:1222 -msgid "Start calendar week on monday" -msgstr "Comenzar el calendario semanal por el lunes" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Recargar los permisos" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "Servidor $Projectname - Instalación" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Obtener los permisos actualizados" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "No se ha podido conectar a la base de datos." +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Ver publicaciones y comentarios recientes" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "No se puede crear la tabla." +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "La base de datos del sitio ha sido instalada." +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "¡Esta conexión está bloqueada!" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Dejar de ignorar" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Verificación del sistema" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "¡Esta conexión es ignorada!" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Verificar de nuevo" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Desarchivar" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Conexión a la base de datos" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archivar" -#: ../../Zotlabs/Module/Setup.php:291 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "¡Esta conexión esta archivada!" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "Mostrar" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Nombre del servidor de base de datos" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Ocultar" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "De forma predeterminada es 127.0.0.1" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Puerto de la base de datos" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "¡Esta conexión está oculta!" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Eliminar esta conexión" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Usuario de la base de datos" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 +msgid "Me" +msgstr "Yo" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Contraseña de acceso a la base de datos" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 +msgid "Family" +msgstr "Familia" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Nombre de la base de datos" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 +msgid "Acquaintances" +msgstr "Conocidos/as" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Tipo de base de datos" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "Dirección de correo electrónico del administrador del sitio" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Aceptar la conexión para permitir la comunicación" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Ajustar la afinidad" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "Dirección del sitio web" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Ajustar el perfil" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Por favor, use SSL (https) si está disponible." +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Ajustar la afinidad y el perfil" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "-" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Ajustes del sitio" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:623 +msgid "Connection Default Permissions" +msgstr "Permisos predeterminados de conexión" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "¿Habilitar las funcionalidades avanzadas de $Projectname ?" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3964 +#, php-format +msgid "Connection: %s" +msgstr "Conexión: %s" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Algunas funcionalidades avanzadas, si bien son útiles, pueden ser más adecuadas para un público técnicamente competente" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Aplicar estos permisos automaticamente" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "Se requiere la versión 5.5, o superior, de PHP." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "Versión de PHP" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "La dirección primaria de esta conexión es" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Ubicaciones disponibles:" -#: ../../Zotlabs/Module/Setup.php:405 +#: ../../Zotlabs/Module/Connedit.php:758 msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron." +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "Ruta del ejecutable PHP" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Gestión de las conexiones" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Deslizar para ajustar el grado de amistad" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "PHP en línea de comandos" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Deslizar para ajustar su valoración" -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Opcionalmente, puede explicar su valoración" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "Esto es necesario para que funcione la transmisión de mensajes." +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Filtro personalizado" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Importar solo entradas que contengan este texto" -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "No importar entradas que contengan este texto" + +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "¡Esta información es pública!" -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "Límites PHP de subida" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Conexión pendiente de aprobación" -#: ../../Zotlabs/Module/Setup.php:475 +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." -#: ../../Zotlabs/Module/Setup.php:476 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Generar claves de cifrado" - -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "módulo libCurl PHP" - -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "módulo PHP GD graphics" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "módulo PHP OpenSSL" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Última actualización:" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "módulo PHP mysqli o postgres" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:167 +msgid "Apps" +msgstr "Aplicaciones (apps)" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "módulo PHP mb_string" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continuar" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" -msgstr "módulo PHP xml" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuración del canal premium" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" -msgstr "módulo Apache mod_rewrite " +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Habilitar restricciones de conexión del canal premium" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Connect.php:93 msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." - -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" -msgstr "proc_open" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." -#: ../../Zotlabs/Module/Setup.php:506 +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" -#: ../../Zotlabs/Module/Setup.php:518 +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal premium o restringido" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Seleccionar una carpeta de marcadores" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Guardar marcador" -#: ../../Zotlabs/Module/Setup.php:552 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "Dirección del marcador" -#: ../../Zotlabs/Module/Setup.php:553 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" -#: ../../Zotlabs/Module/Setup.php:554 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Falló la autenticación." -#: ../../Zotlabs/Module/Setup.php:555 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Acceso desde su servidor" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php tiene permisos de escritura" +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" -#: ../../Zotlabs/Module/Setup.php:572 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Acceder" -#: ../../Zotlabs/Module/Setup.php:573 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." -msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal." +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Por favor, inicie sesión." -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Setup.php:575 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Eliminar esta cuenta" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" -msgstr "%s tiene permisos de escritura" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " +msgstr "ATENCIÓN:" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" -msgstr "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." -#: ../../Zotlabs/Module/Setup.php:598 -msgid "store is writable" -msgstr "\"store\" tiene permisos de escritura" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" +msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" -#: ../../Zotlabs/Module/Setup.php:631 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" +msgstr "Por favor, introduzca su contraseña para su verificación:" -#: ../../Zotlabs/Module/Setup.php:632 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Remover esta cuenta, todos sus canales y clones de la red" -#: ../../Zotlabs/Module/Setup.php:633 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Setup.php:635 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Eliminar este canal" + +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Este canal va a ser completamente eliminado de la red." + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Eliminar este canal y todos sus clones de la red" -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar el canal" -#: ../../Zotlabs/Module/Setup.php:638 +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor." +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." -#: ../../Zotlabs/Module/Setup.php:641 -msgid "SSL certificate validation" -msgstr "validación del certificado SSL" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exportar contenidos" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../Zotlabs/Module/Uexport.php:59 msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." -#: ../../Zotlabs/Module/Setup.php:650 -msgid "Url rewrite is working" -msgstr "La reescritura de las direcciones funciona correctamente" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporta sus publicaciones de un año dado." -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Uexport.php:62 msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." -#: ../../Zotlabs/Module/Setup.php:683 -msgid "Errors encountered creating database tables." -msgstr "Se han encontrado errores al crear las tablas de la base de datos." +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" -#: ../../Zotlabs/Module/Setup.php:720 -msgid "

    What next

    " -msgstr "

    Siguiente paso

    " +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Ficheros: compartidos conmigo" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "El elemento no es editable" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NUEVO" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:138 +msgid "Edit post" +msgstr "Editar la entrada" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Eliminar todos los ficheros" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "elementos etiquetados con: %s" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Eliminar este fichero" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Resultados de la búsqueda para: %s" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "No se han encontrado restricciones sobre esta clase de servicio." #: ../../Zotlabs/Module/Thing.php:114 msgid "Thing updated" @@ -6274,37 +6151,164 @@ msgstr "elemento no encontrado." msgid "Edit Thing" msgstr "Editar elemento" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 msgid "Select a profile" msgstr "Seleccionar un perfil" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 msgid "Post an activity" msgstr "Publicar una actividad" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 msgid "Only sends to viewers of the applicable profile" msgstr "Sólo enviar a espectadores del perfil pertinente." -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 msgid "Name of thing e.g. something" msgstr "Nombre del elemento, p. ej.:. \"algo\"" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 msgid "URL of thing (optional)" msgstr "Dirección del elemento (opcional)" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 msgid "URL for photo of thing (optional)" msgstr "Dirección para la foto o elemento (opcional)" -#: ../../Zotlabs/Module/Thing.php:349 +#: ../../Zotlabs/Module/Thing.php:353 msgid "Add Thing to your Profile" msgstr "Añadir alguna cosa a su perfil" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "No ha sido posible encontrar la entrada original." + +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "La entrada vacía ha sido desechada." + +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "Contenido de tipo ejecutable no permitido en este canal." + +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "Se ha suprimido la entrada duplicada." + +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Error del sistema. La entrada no se ha podido salvar." + +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "No ha sido posible obtener información de la entrada en la base de datos." + +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." + +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Ha alcanzado su límite de %1$.0f páginas web." + +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Ficheros: compartidos conmigo" + +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NUEVO" + +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Eliminar todos los ficheros" + +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Eliminar este fichero" + +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "No encontrado" + +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/conversation.php:1728 ../../include/conversation.php:1731 +#: ../../include/features.php:57 ../../include/nav.php:110 +msgid "Wiki" +msgstr "Wiki" + +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Entorno de edición" + +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Entorno de edición del Wiki\\n\\nEl contenido que se **edite** y **previsualizce** aquí *no se guardará*.\"" + +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Comparación de revisiones" + +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Revertir" + +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Nombre de su nuevo wiki:" + +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Nombre de la nueva página:" + +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Nuevo nombre:" + +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" +msgstr "Incluir una imagen de los álbumes de fotos" + +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 +msgid "Embed an image from your albums" +msgstr "Incluir una imagen de sus álbumes" + +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 +#: ../../include/conversation.php:1291 +msgid "OK" +msgstr "OK" + +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" +msgstr "Elegir imágenes para incluir" + +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" +msgstr "Elegir un álbum" + +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." +msgstr "Elegir un álbum diferente..." + +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" +msgstr "Error al obtener la lista de álbumes" + +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" +msgstr "Error al obtener el enlace de la foto" + +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" +msgstr "Error al obtener el álbum" + #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." -msgstr "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado." +msgstr "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal." #: ../../Zotlabs/Module/Sources.php:51 msgid "Source created." @@ -6318,8 +6322,8 @@ msgstr "Fuente actualizada." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:639 +#: ../../include/features.php:71 msgid "Channel Sources" msgstr "Orígenes de los contenidos del canal" @@ -6353,7 +6357,7 @@ msgstr "Nombre del canal" msgid "" "Add the following categories to posts imported from this source (comma " "separated)" -msgstr "Añadir las categorías siguientes a las entradas importadas de esta fuente (separadas por comas)" +msgstr "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)" #: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 msgid "Source not found." @@ -6373,7 +6377,7 @@ msgstr "Fuente eliminada" #: ../../Zotlabs/Module/Sources.php:171 msgid "Unable to remove source." -msgstr "Imposible eliminar la fuente." +msgstr "No se puede eliminar la fuente." #: ../../Zotlabs/Module/Subthread.php:118 #, php-format @@ -6383,137 +6387,47 @@ msgstr "%1$s está siguiendo %3$s de %2$s" #: ../../Zotlabs/Module/Subthread.php:120 #, php-format msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s ha dejado de seguir %3$s de %2$s" - -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." - -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "la entrada" - -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" -msgstr "el comentario" - -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Etiqueta eliminada." - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta del elemento." - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleccionar una etiqueta para eliminar:" - -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Páginas web" - -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Acciones" - -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Vínculo de la página" - -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Título de página" - -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "No encontrado" - -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "Wiki" - -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Entorno de edición" - -#: ../../Zotlabs/Module/Wiki.php:95 -msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Entorno de edición del Wiki\\n\\nEl contenido que se **edite** y **previsualizce** aquí *no se guardará*.\"" - -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Comparación de revisiones" - -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Revertir" - -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Nombre de su nuevo wiki:" - -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Nombre de la nueva página:" - -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Nuevo nombre:" +msgstr "%1$s ha dejado de seguir %3$s de %2$s" -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Incluir una imagen de los álbumes de fotos" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Incluir una imagen de sus álbumes" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "la entrada" -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Elegir imágenes para incluir" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "el comentario" -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Elegir un álbum" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Elegir un álbum diferente..." +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Etiqueta eliminada." -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Error al obtener la lista de álbumes" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta del elemento." -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Error al obtener el enlace de la foto" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Error al obtener el álbum" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canal añadido." #: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." @@ -6532,23 +6446,62 @@ msgstr "Ver conexiones" msgid "Source of Item" msgstr "Origen del elemento" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autorizar una conexión de aplicación" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Sala no encontrada" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volver a su aplicación e introducir este código de seguridad:" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Abandonar la sala" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Por favor inicie sesión para continuar." +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Eliminar esta sala" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Estoy ausente momentáneamente" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Estoy conectado/a" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Añadir esta sala a Marcadores" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funcionalidad deshabilitada." + +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Nueva sala de chat" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Nombre de la sala de chat" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Caducidad de los mensajes en los chats (en minutos)" + +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salas de chat de %1$s" + +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "No hay salas de chat disponibles" + +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Caducidad" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6578,19 +6531,19 @@ msgstr "Sala no encontrada." msgid "Room is full" msgstr "La sala está llena." -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 msgid "$Projectname Notification" msgstr "Notificación de $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 msgid "Thank You," msgstr "Gracias," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 #, php-format msgid "%s Administrator" msgstr "%s Administrador" @@ -6787,271 +6740,103 @@ msgstr "ha comentado la entrada de %s" msgid "Site Admin" msgstr "Administrador del sitio" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Informe de errores" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Ver los marcadores" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Mis salas de chat" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Servicio de compartición de Firefox" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnóstico remoto" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Sugerir canales" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Iniciar sesión" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Red" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Mi canal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Eventos" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Directorio" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Correo" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Probar" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Sugerir" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canal aleatorio" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invitar" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funcionalidades" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Publicación" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Comprar" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Mensaje Privado" - -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Seleccionar" - -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Guardar en carpeta" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Participaré" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "No participaré" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Quizá participe" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Estoy de acuerdo" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "No estoy de acuerdo" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Me abstengo" - -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Destacar añadiendo una estrella" - -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Eliminar estrella" - -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Activar o desactivar el estado de entrada preferida" - -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "preferidas" - -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Firma de mensaje validada" - -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Firma de mensaje incorrecta" - -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Añadir etiqueta" - -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "me gusta" - -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "no me gusta" - -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "Compartir esto" - -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "compartir" - -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "Informe de transmisión" - -#: ../../Zotlabs/Lib/ThreadItem.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentario" -msgstr[1] "%d comentarios" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Informe de errores" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver el perfil de %s - %s" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Ver los marcadores" -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "a" +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Mis salas de chat" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "mediante" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Servicio de compartición de Firefox" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Diagnóstico remoto" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Sugerir canales" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "desde %s" +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 +#: ../../boot.php:1738 +msgid "Login" +msgstr "Iniciar sesión" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "último cambio: %s" +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 +msgid "Grid" +msgstr "Red" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Caduca: %s" +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 +msgid "Channel Home" +msgstr "Mi canal" -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "Guardar en Marcadores" +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1682 +#: ../../include/conversation.php:1685 ../../include/nav.php:205 +msgid "Events" +msgstr "Eventos" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "Añadir al calendario" +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 +msgid "Directory" +msgstr "Directorio" -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "Marcar todo como visto" +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 +msgid "Mail" +msgstr "Correo" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostrar todo" +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 +msgid "Chat" +msgstr "Chat" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 -msgid "Bold" -msgstr "Negrita" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Probar" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Italic" -msgstr "Itálico " +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Sugerir" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Underline" -msgstr "Subrayar" +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Canal aleatorio" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Quote" -msgstr "Citar" +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Invitar" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Code" -msgstr "Código" +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 +msgid "Features" +msgstr "Funcionalidades" -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "Imagen" +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Idioma" -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "Insertar enlace" +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Publicación" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" -msgstr "Vídeo" +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Foto del perfil" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Comprar" #: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 +#: ../../include/acl_selectors.php:124 msgid "Visible to your default audience" msgstr "Visible para su público predeterminado." #: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 +#: ../../include/acl_selectors.php:165 msgid "Only me" msgstr "Sólo yo" @@ -7108,1678 +6893,1803 @@ msgstr "Este es su ajuste predeterminado para establecer quién puede ver su rep msgid "This is your default setting for the audience of your webpages" msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "No se ha encontrado el nombre de usuario en el fichero importado." - -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." -msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." - -#: ../../include/dba/dba_driver.php:171 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" - -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imagen excede el límite de %lu bytes del sitio" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nueva foto" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha publicado %2$s en %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Álbumes de fotos" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Finalizar sesión" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Finalizar esta sesión" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Inicio" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Sus publicaciones y conversaciones" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Su página del perfil" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" +msgstr "Mensaje Privado" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +msgid "Select" +msgstr "Seleccionar" -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Editar el perfil" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Guardar en carpeta" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Editar su perfil" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Participaré" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Sus fotos" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "No participaré" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Sus ficheros" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Quizá participe" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Sus salas de chat" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Estoy de acuerdo" -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Marcadores" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "No estoy de acuerdo" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Sus marcadores" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Me abstengo" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Sus páginas web" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Destacar añadiendo una estrella" -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "Su wiki" +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Eliminar estrella" -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Acceder" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "Activar o desactivar el estado de entrada preferida" -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" -msgstr "%s - pulsar para finalizar sesión" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "preferidas" -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Acceder desde su servidor" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +msgid "Message signature validated" +msgstr "Firma de mensaje validada" -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Pulsar para identificarse en su servidor de inicio" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +msgid "Message signature incorrect" +msgstr "Firma de mensaje incorrecta" -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Página de inicio" +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Añadir etiqueta" -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crear una cuenta" +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 +msgid "like" +msgstr "me gusta" -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Ayuda y documentación" +#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "no me gusta" -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Aplicaciones, utilidades, enlaces, juegos" +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "Share This" +msgstr "Compartir esto" -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "share" +msgstr "compartir" -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Directorio de canales" +#: ../../Zotlabs/Lib/ThreadItem.php:276 +msgid "Delivery Report" +msgstr "Informe de transmisión" -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Mi red" +#: ../../Zotlabs/Lib/ThreadItem.php:294 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentario" +msgstr[1] "%d comentarios" -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marcar todas las notificaciones de la red como vistas" +#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 +#, php-format +msgid "View %s's profile - %s" +msgstr "Ver el perfil de %s - %s" -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Mi canal" +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "to" +msgstr "a" -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "via" +msgstr "mediante" -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Avisos" +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "Wall-to-Wall" +msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notificaciones" +#: ../../Zotlabs/Lib/ThreadItem.php:330 +msgid "via Wall-To-Wall:" +msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" +#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 +#, php-format +msgid "from %s" +msgstr "desde %s" -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Correo privado" +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 +#, php-format +msgid "last edited: %s" +msgstr "último cambio: %s" -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" +#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 +#, php-format +msgid "Expires: %s" +msgstr "Caduca: %s" -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Save Bookmarks" +msgstr "Guardar en Marcadores" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Bandeja de entrada" +#: ../../Zotlabs/Lib/ThreadItem.php:372 +msgid "Add to Calendar" +msgstr "Añadir al calendario" -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Bandeja de salida" +#: ../../Zotlabs/Lib/ThreadItem.php:381 +msgid "Mark all seen" +msgstr "Marcar todo como visto" -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nuevo mensaje" +#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mostrar todo" -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendario de eventos" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1234 +msgid "Bold" +msgstr "Negrita" -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Ver todos los eventos" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1235 +msgid "Italic" +msgstr "Itálico " -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1236 +msgid "Underline" +msgstr "Subrayar" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1237 +msgid "Quote" +msgstr "Citar" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1238 +msgid "Code" +msgstr "Código" -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administrador" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Image" +msgstr "Imagen" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Insert Link" +msgstr "Insertar enlace" -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Cargando..." +#: ../../Zotlabs/Lib/ThreadItem.php:719 +msgid "Video" +msgstr "Vídeo" -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nombre, #etiqueta, ?ayuda, contenido" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "No se ha encontrado el nombre de usuario en el fichero importado." -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Espere por favor…" +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." +msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." + +#: ../../include/dba/dba_driver.php:173 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" #: ../../include/network.php:704 msgid "view full size" msgstr "Ver en el tamaño original" -#: ../../include/network.php:1930 ../../include/account.php:317 +#: ../../include/network.php:1935 ../../include/account.php:317 #: ../../include/account.php:344 ../../include/account.php:404 msgid "Administrator" msgstr "Administrador" -#: ../../include/network.php:1944 +#: ../../include/network.php:1949 msgid "No Subject" msgstr "Sin asunto" -#: ../../include/network.php:2198 ../../include/network.php:2199 +#: ../../include/network.php:2203 ../../include/network.php:2204 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:2200 +#: ../../include/network.php:2205 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:2201 +#: ../../include/network.php:2206 msgid "GNU-Social" msgstr "GNU Social" -#: ../../include/network.php:2202 +#: ../../include/network.php:2207 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:2204 +#: ../../include/network.php:2209 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:2205 +#: ../../include/network.php:2210 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:2206 +#: ../../include/network.php:2211 msgid "Zot" msgstr "Zot" -#: ../../include/network.php:2207 +#: ../../include/network.php:2212 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:2208 +#: ../../include/network.php:2213 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/network.php:2214 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/oembed.php:340 +msgid "Embedded content" +msgstr "Contenido incorporado" + +#: ../../include/oembed.php:349 +msgid "Embedding disabled" +msgstr "Incrustación deshabilitada" + +#: ../../include/permissions.php:29 +msgid "Can view my normal stream and posts" +msgstr "Pueden verse mi actividad y publicaciones normales" + +#: ../../include/permissions.php:33 +msgid "Can view my webpages" +msgstr "Pueden verse mis páginas web" + +#: ../../include/permissions.php:37 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" + +#: ../../include/permissions.php:40 +msgid "Can like/dislike stuff" +msgstr "Puede marcarse contenido como me gusta/no me gusta" + +#: ../../include/permissions.php:40 +msgid "Profiles and things other than posts/comments" +msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" + +#: ../../include/permissions.php:42 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" + +#: ../../include/permissions.php:42 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" + +#: ../../include/permissions.php:43 +msgid "Can chat with me (when available)" +msgstr "Se puede charlar conmigo (cuando esté disponible)" + +#: ../../include/permissions.php:44 +msgid "Can write to my file storage and photos" +msgstr "Puede escribirse en mi repositorio de ficheros y fotos" + +#: ../../include/permissions.php:45 +msgid "Can edit my webpages" +msgstr "Pueden editarse mis páginas web" + +#: ../../include/permissions.php:47 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Algo avanzado - muy útil en comunidades abiertas" + +#: ../../include/permissions.php:49 +msgid "Can administer my channel resources" +msgstr "Pueden administrarse mis recursos del canal" + +#: ../../include/permissions.php:49 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." + +#: ../../include/items.php:899 ../../include/items.php:944 +msgid "(Unknown)" +msgstr "(Desconocido)" + +#: ../../include/items.php:1143 +msgid "Visible to anybody on the internet." +msgstr "Visible para cualquiera en internet." + +#: ../../include/items.php:1145 +msgid "Visible to you only." +msgstr "Visible sólo para usted." + +#: ../../include/items.php:1147 +msgid "Visible to anybody in this network." +msgstr "Visible para cualquiera en esta red." + +#: ../../include/items.php:1149 +msgid "Visible to anybody authenticated." +msgstr "Visible para cualquiera que esté autenticado." + +#: ../../include/items.php:1151 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible para cualquiera en %s." + +#: ../../include/items.php:1153 +msgid "Visible to all connections." +msgstr "Visible para todas las conexiones." + +#: ../../include/items.php:1155 +msgid "Visible to approved connections." +msgstr "Visible para las conexiones permitidas." + +#: ../../include/items.php:1157 +msgid "Visible to specific connections." +msgstr "Visible para conexiones específicas." + +#: ../../include/items.php:3947 +msgid "Privacy group is empty." +msgstr "El grupo de canales está vacío." + +#: ../../include/items.php:3954 +#, php-format +msgid "Privacy group: %s" +msgstr "Grupo de canales: %s" + +#: ../../include/items.php:3966 +msgid "Connection not found." +msgstr "Conexión no encontrada" + +#: ../../include/items.php:4319 +msgid "profile photo" +msgstr "foto del perfil" + +#: ../../include/text.php:404 +msgid "prev" +msgstr "anterior" + +#: ../../include/text.php:406 +msgid "first" +msgstr "primera" + +#: ../../include/text.php:435 +msgid "last" +msgstr "última" + +#: ../../include/text.php:438 +msgid "next" +msgstr "próxima" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nueva página" +#: ../../include/text.php:448 +msgid "older" +msgstr "más antiguas" -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Título" +#: ../../include/text.php:450 +msgid "newer" +msgstr "más recientes" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Categorías" +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Sin conexiones" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Etiquetas" +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" +msgstr "Ver todas las %s conexiones" -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Palabras clave" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "un toque" -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "tener" +#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha dado un toque a" -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "tiene" +#: ../../include/text.php:1019 +msgid "ping" +msgstr "un \"ping\"" -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "quiero" +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "ha enviado un \"ping\" a" -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "quiere" +#: ../../include/text.php:1020 +msgid "prod" +msgstr "una incitación " -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "gusta de" +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "ha incitado a " -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "no gusta de" +#: ../../include/text.php:1021 +msgid "slap" +msgstr "una bofetada " -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "ha abofeteado a " -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nombre vacío" +#: ../../include/text.php:1022 +msgid "finger" +msgstr "un \"finger\" " -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nombre demasiado largo" +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "envió un \"finger\" a" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Ningún identificador de la cuenta" +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "un reproche" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Se requiere un sobrenombre (alias)." +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "ha hecho un reproche a " -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." +#: ../../include/text.php:1035 +msgid "happy" +msgstr "feliz " -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." +#: ../../include/text.php:1036 +msgid "sad" +msgstr "triste " -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "No ha sido posible recuperar la identidad creada" +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "tranquilo/a" -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Perfil principal" +#: ../../include/text.php:1038 +msgid "tired" +msgstr "cansado/a " -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "El canal solicitado no está disponible." +#: ../../include/text.php:1039 +msgid "perky" +msgstr "vivaz" -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Crear un nuevo perfil" +#: ../../include/text.php:1040 +msgid "angry" +msgstr "enfadado/a" -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visible para todos" +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "asombrado/a" -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Género:" +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "perplejo/a" -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Estado:" +#: ../../include/text.php:1043 +msgid "interested" +msgstr "interesado/a" -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Página personal:" +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "amargado/a" -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Ahora en línea" +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "alegre" -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Me gusta este canal" +#: ../../include/text.php:1046 +msgid "alive" +msgstr "animado/a" -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "molesto/a" -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "ansioso/a" -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Cumpleaños:" +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "de mal humor" -#: ../../include/channel.php:1232 -#, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "perturbado/a" -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Orientación sexual:" +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustrado/a" -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Etiquetas:" +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "deprimido/a" -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Posición política:" +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motivado/a" -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religión:" +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "relajado/a" -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Aficciones o intereses:" +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "sorprendido/a" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Me gusta:" +#: ../../include/text.php:1239 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunes" -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "No me gusta:" +#: ../../include/text.php:1239 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martes" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y redes sociales:" +#: ../../include/text.php:1239 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "miércoles" -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mis otros canales:" +#: ../../include/text.php:1239 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "jueves" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Preferencias musicales:" +#: ../../include/text.php:1239 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "viernes" -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Libros, literatura:" +#: ../../include/text.php:1239 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sábado" -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisión:" +#: ../../include/text.php:1239 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domingo" + +#: ../../include/text.php:1243 ../../include/js_strings.php:45 +msgid "January" +msgstr "enero" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Cine, danza, cultura, entretenimiento:" +#: ../../include/text.php:1243 ../../include/js_strings.php:46 +msgid "February" +msgstr "febrero" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Vida sentimental o amorosa:" +#: ../../include/text.php:1243 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Trabajo:" +#: ../../include/text.php:1243 ../../include/js_strings.php:48 +msgid "April" +msgstr "abril" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Estudios:" +#: ../../include/text.php:1243 +msgid "May" +msgstr "mayo" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Me gusta esto" +#: ../../include/text.php:1243 ../../include/js_strings.php:50 +msgid "June" +msgstr "junio" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nueva ventana" +#: ../../include/text.php:1243 ../../include/js_strings.php:51 +msgid "July" +msgstr "julio" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" +#: ../../include/text.php:1243 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "El usuario '%s' ha sido eliminado" +#: ../../include/text.php:1243 ../../include/js_strings.php:53 +msgid "September" +msgstr "septiembre" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ahora está conectado/a con %2$s" +#: ../../include/text.php:1243 ../../include/js_strings.php:54 +msgid "October" +msgstr "octubre" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha dado un toque a %2$s" +#: ../../include/text.php:1243 ../../include/js_strings.php:55 +msgid "November" +msgstr "noviembre" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "ha dado un toque a" +#: ../../include/text.php:1243 ../../include/js_strings.php:56 +msgid "December" +msgstr "diciembre" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver el perfil @ %s de %s" +#: ../../include/text.php:1320 ../../include/text.php:1324 +msgid "Unknown Attachment" +msgstr "Adjunto no reconocido" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categorías:" +#: ../../include/text.php:1326 +msgid "unknown" +msgstr "desconocido" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Archivado bajo:" +#: ../../include/text.php:1362 +msgid "remove category" +msgstr "eliminar el tema" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Mostrar en su contexto" +#: ../../include/text.php:1439 +msgid "remove from file" +msgstr "eliminar del fichero" -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "eliminar" +#: ../../include/text.php:1738 ../../include/text.php:1809 +msgid "default" +msgstr "por defecto" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Eliminar elementos seleccionados" +#: ../../include/text.php:1746 +msgid "Page layout" +msgstr "Plantilla de la página" -#: ../../include/conversation.php:951 -msgid "View Source" -msgstr "Ver el código fuente de la entrada" +#: ../../include/text.php:1746 +msgid "You can create your own with the layouts tool" +msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" -#: ../../include/conversation.php:952 -msgid "Follow Thread" -msgstr "Seguir este hilo" +#: ../../include/text.php:1788 +msgid "Page content type" +msgstr "Tipo de contenido de la página" -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "Dejar de seguir este hilo" +#: ../../include/text.php:1821 +msgid "Select an alternate language" +msgstr "Seleccionar un idioma alternativo" -#: ../../include/conversation.php:958 -msgid "Activity/Posts" -msgstr "Actividad y publicaciones" +#: ../../include/text.php:1958 +msgid "activity" +msgstr "la actividad" -#: ../../include/conversation.php:960 -msgid "Edit Connection" -msgstr "Editar conexión" +#: ../../include/text.php:2259 +msgid "Design Tools" +msgstr "Herramientas de diseño web" -#: ../../include/conversation.php:961 -msgid "Message" -msgstr "Mensaje" +#: ../../include/text.php:2265 +msgid "Pages" +msgstr "Páginas" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." -msgstr "A %s le gusta esto." +#: ../../include/text.php:2287 +msgid "Import website..." +msgstr "Importar un sitio web..." -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." -msgstr "A %s no le gusta esto." +#: ../../include/text.php:2288 +msgid "Select folder to import" +msgstr "Seleccionar la carpeta que se va a importar" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "a %2$d personas le gusta esto." -msgstr[1] "A %2$d personas les gusta esto." +#: ../../include/text.php:2289 +msgid "Import from a zipped folder:" +msgstr "Importar desde una carpeta comprimida: " -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "a %2$d personas no les gusta esto." -msgstr[1] "A %2$d personas no les gusta esto." +#: ../../include/text.php:2290 +msgid "Import from cloud files:" +msgstr "Importar desde los ficheros en la nube: " -#: ../../include/conversation.php:1090 -msgid "and" -msgstr "y" +#: ../../include/text.php:2291 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/canal/ruta/a la/carpeta" -#: ../../include/conversation.php:1093 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", y %d persona más" -msgstr[1] ", y %d personas más" +#: ../../include/text.php:2292 +msgid "Enter path to website files" +msgstr "Ruta a los ficheros del sitio web" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." -msgstr "A %s le gusta esto." +#: ../../include/text.php:2293 +msgid "Select folder" +msgstr "Seleccionar la carpeta" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s don't like this." -msgstr "A %s no le gusta esto." +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "Temas" -#: ../../include/conversation.php:1133 -msgid "Set your location" -msgstr "Establecer su ubicación" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" -#: ../../include/conversation.php:1134 -msgid "Clear browser location" -msgstr "Eliminar los datos de localización geográfica del navegador" +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nueva aplicación (app)" -#: ../../include/conversation.php:1182 -msgid "Tag term:" -msgstr "Término de la etiqueta:" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Sugerencias" -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" -msgstr "¿Donde está ahora?" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Ver más..." -#: ../../include/conversation.php:1221 -msgid "Page link name" -msgstr "Nombre del enlace de la página" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." -#: ../../include/conversation.php:1224 -msgid "Post as" -msgstr "Publicar como" +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Añadir nueva conexión" -#: ../../include/conversation.php:1238 -msgid "Toggle voting" -msgstr "Cambiar votación" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Dirección del canal" -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorías (opcional, lista separada por comas)" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" -#: ../../include/conversation.php:1269 -msgid "Set publish date" -msgstr "Establecer la fecha de publicación" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notas" -#: ../../include/conversation.php:1518 -msgid "Discover" -msgstr "Descubrir" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eliminar término" -#: ../../include/conversation.php:1521 -msgid "Imported public streams" -msgstr "Contenidos públicos importados" +#: ../../include/widgets.php:281 ../../include/features.php:85 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" -#: ../../include/conversation.php:1526 -msgid "Commented Order" -msgstr "Comentarios recientes" +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "añadir" -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" -msgstr "Ordenar por fecha de comentario" +#: ../../include/widgets.php:310 ../../include/features.php:99 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Carpetas guardadas" -#: ../../include/conversation.php:1533 -msgid "Posted Order" -msgstr "Publicaciones recientes" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Todo" -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" -msgstr "Ordenar por fecha de publicación" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Hemeroteca" -#: ../../include/conversation.php:1544 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que le mencionan o involucran" +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Recargar" -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" -msgstr "Contenido - por fecha" +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Configuración de la cuenta" -#: ../../include/conversation.php:1559 -msgid "Starred" -msgstr "Preferidas" +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Configuración del canal" -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" -msgstr "Publicaciones favoritas" +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Funcionalidades" -#: ../../include/conversation.php:1569 -msgid "Spam" -msgstr "Correo basura" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Complementos" -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" -msgstr "Publicaciones marcadas como basura" +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Ajustes de visualización" -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" -msgstr "Mensajes de estado y publicaciones" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestión de ubicaciones (clones) del canal" -#: ../../include/conversation.php:1638 -msgid "About" -msgstr "Mi perfil" +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exportar canal" -#: ../../include/conversation.php:1641 -msgid "Profile Details" -msgstr "Detalles del perfil" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Aplicaciones (apps) conectadas" -#: ../../include/conversation.php:1657 -msgid "Files and Storage" -msgstr "Ficheros y repositorio" +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "Configuración del canal premium" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Salas de chat" +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "Menú de correo privado" -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" -msgstr "Marcadores guardados" +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "Vista combinada" -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" -msgstr "Administrar páginas web" +#: ../../include/widgets.php:667 ../../include/nav.php:200 +msgid "Inbox" +msgstr "Bandeja de entrada" -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Participaré" -msgstr[1] "Participaré" +#: ../../include/widgets.php:672 ../../include/nav.php:201 +msgid "Outbox" +msgstr "Bandeja de salida" -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "No participaré" -msgstr[1] "No participaré" +#: ../../include/widgets.php:677 ../../include/nav.php:202 +msgid "New Message" +msgstr "Nuevo mensaje" -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso/a" -msgstr[1] "Indecisos/as" +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "Conversaciones" -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "De acuerdo" -msgstr[1] "De acuerdo" +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "Mensajes recibidos" -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "En desacuerdo" -msgstr[1] "En desacuerdo" +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "Enviar mensajes" -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "se abstiene" -msgstr[1] "Se abstienen" +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "Sin mensajes." -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "Eliminar conversación" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "La clonación del canal no ha salido bien. La importación ha fallado." +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "Gestión de eventos" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Frecuentemente" +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "Exportar el calendario" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Cada hora" +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "Importar un calendario" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Dos veces al día" +#: ../../include/widgets.php:850 ../../include/conversation.php:1695 +#: ../../include/conversation.php:1698 +msgid "Chatrooms" +msgstr "Salas de chat" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Diariamente" +#: ../../include/widgets.php:854 +msgid "Overview" +msgstr "Resumen" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Semanalmente" +#: ../../include/widgets.php:861 +msgid "Chat Members" +msgstr "Miembros del chat" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Mensualmente" +#: ../../include/widgets.php:883 +msgid "Wiki List" +msgstr "Lista de wikis" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Actualmente hombre" +#: ../../include/widgets.php:921 +msgid "Wiki Pages" +msgstr "Páginas del wiki" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Actualmente mujer" +#: ../../include/widgets.php:956 +msgid "Bookmarked Chatrooms" +msgstr "Salas de chat preferidas" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Generalmente hombre" +#: ../../include/widgets.php:979 +msgid "Suggested Chatrooms" +msgstr "Salas de chat sugeridas" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Generalmente mujer" +#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 +msgid "photo/image" +msgstr "foto/imagen" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgénero" +#: ../../include/widgets.php:1180 +msgid "Click to show more" +msgstr "Hacer clic para ver más" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersexual" +#: ../../include/widgets.php:1331 +msgid "Rating Tools" +msgstr "Valoraciones" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transexual" +#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 +msgid "Rate Me" +msgstr "Valorar este canal" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafrodita" +#: ../../include/widgets.php:1340 +msgid "View Ratings" +msgstr "Mostrar las valoraciones" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Neutral" +#: ../../include/widgets.php:1424 +msgid "Forums" +msgstr "Foros" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "No especificado" +#: ../../include/widgets.php:1453 +msgid "Tasks" +msgstr "Tareas" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indeciso/a" +#: ../../include/widgets.php:1462 +msgid "Documentation" +msgstr "Documentación" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Hombres" +#: ../../include/widgets.php:1464 +msgid "Project/Site Information" +msgstr "Información sobre el proyecto o sitio" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Mujeres" +#: ../../include/widgets.php:1465 +msgid "For Members" +msgstr "Para los miembros" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homosexual" +#: ../../include/widgets.php:1466 +msgid "For Administrators" +msgstr "Para los administradores" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbiana" +#: ../../include/widgets.php:1467 +msgid "For Developers" +msgstr "Para los desarrolladores" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Sin preferencias" +#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 +msgid "Member registrations waiting for confirmation" +msgstr "Inscripciones de nuevos miembros pendientes de aprobación" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexual" +#: ../../include/widgets.php:1497 +msgid "Inspect queue" +msgstr "Examinar la cola" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexual" +#: ../../include/widgets.php:1499 +msgid "DB updates" +msgstr "Actualizaciones de la base de datos" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Casto/a" +#: ../../include/widgets.php:1524 ../../include/nav.php:220 +msgid "Admin" +msgstr "Administrador" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Virgen" +#: ../../include/widgets.php:1525 +msgid "Plugin Features" +msgstr "Extensiones" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Fuera de lo común" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nueva ventana" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetichista" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Orgías" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "El usuario '%s' ha sido eliminado" -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asexual" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "¿Quién puede ver esto?" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Soltero/a" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Selección personalizada" + +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Solo/a" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Mostrar" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponible" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "No mostrar" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "No disponible" +#: ../../include/acl_selectors.php:207 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje." -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Enamorado/a" +#: ../../include/api.php:1330 +msgid "Public Timeline" +msgstr "Cronología pública" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Apasionado/a" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Saliendo con alguien" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Nombre vacío" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infiel" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Nombre demasiado largo" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Con adicción al sexo" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Ningún identificador de la cuenta" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amigos con algo extra" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Sobrenombre en uso. Por favor, elija otro." -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Prometido/a" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Casado/a" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "No ha sido posible recuperar la identidad creada" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Casado/a en sueños" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Perfil principal" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Pareja" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "El canal solicitado no está disponible." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Cohabitando" +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "Crear un nuevo perfil" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio tradicional" +#: ../../include/channel.php:963 ../../include/nav.php:92 +msgid "Edit Profile" +msgstr "Editar el perfil" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felíz" +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "Visible para todos" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "No estoy buscando" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "Género:" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Libertino" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "Estado:" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Engañado/a" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "Página personal:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separado/a" +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "Ahora en línea" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Inestable" +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "Me gusta este canal" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorciado/a" +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "j F Y" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Divorciado/a en sueños" +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "j F" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Viudo/a" +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "Cumpleaños:" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Indeterminado" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Es complicado" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "Orientación sexual:" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "No me importa" +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "Etiquetas:" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Pregúnteme" +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "Posición política:" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Marcadores de %1$s" +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "Religión:" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "invitado: " +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "Aficciones o intereses:" -#: ../../include/security.php:427 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "Me gusta:" -#: ../../include/text.php:404 -msgid "prev" -msgstr "anterior" +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "No me gusta:" -#: ../../include/text.php:406 -msgid "first" -msgstr "primera" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y redes sociales:" -#: ../../include/text.php:435 -msgid "last" -msgstr "última" +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "Mis otros canales:" -#: ../../include/text.php:438 -msgid "next" -msgstr "próxima" +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "Preferencias musicales:" -#: ../../include/text.php:448 -msgid "older" -msgstr "más antiguas" +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "Libros, literatura:" -#: ../../include/text.php:450 -msgid "newer" -msgstr "más recientes" +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "Televisión:" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Sin conexiones" +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Ver todas las %s conexiones" +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "Vida sentimental o amorosa:" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "un toque" +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "Trabajo:" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "un \"ping\"" +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "Estudios:" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha enviado un \"ping\" a" +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "Me gusta esto" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "una incitación " +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Cumpleaños" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha incitado a " +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Edad:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-DD o MM-DD" -#: ../../include/text.php:1021 -msgid "slap" -msgstr "una bofetada " +#: ../../include/datetime.php:272 ../../boot.php:2577 +msgid "never" +msgstr "nunca" -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha abofeteado a " +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "hace un instante" -#: ../../include/text.php:1022 -msgid "finger" -msgstr "un \"finger\" " +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "envió un \"finger\" a" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "año" +msgstr[1] "años" -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "un reproche" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "meses" -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha hecho un reproche a " +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semana" +msgstr[1] "semanas" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "feliz " +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "día" +msgstr[1] "días" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste " +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "horas" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "tranquilo/a" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" -#: ../../include/text.php:1038 -msgid "tired" -msgstr "cansado/a " +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivaz" +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Cumpleaños de %1$s" -#: ../../include/text.php:1040 -msgid "angry" -msgstr "enfadado/a" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Feliz cumpleaños %1$s" -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "asombrado/a" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Frecuentemente" -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "perplejo/a" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Cada hora" -#: ../../include/text.php:1043 -msgid "interested" -msgstr "interesado/a" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Dos veces al día" -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amargado/a" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Diariamente" -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "alegre" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Semanalmente" -#: ../../include/text.php:1046 -msgid "alive" -msgstr "animado/a" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Mensualmente" -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "molesto/a" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" +msgstr "Hombre" -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansioso/a" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" +msgstr "Mujer" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "de mal humor" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Actualmente hombre" -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "perturbado/a" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Actualmente mujer" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrado/a" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Generalmente hombre" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "deprimido/a" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Generalmente mujer" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivado/a" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgénero" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "relajado/a" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersexual" -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorprendido/a" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transexual" -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunes" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafrodita" -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martes" +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Neutral" -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "miércoles" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "No especificado" -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "jueves" +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Indeciso/a" -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "viernes" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Hombres" -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sábado" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Mujeres" -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domingo" +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Homosexual" -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "enero" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbiana" -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "febrero" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Sin preferencias" -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexual" -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "abril" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexual" -#: ../../include/text.php:1241 -msgid "May" -msgstr "mayo" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Casto/a" -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "junio" +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Virgen" -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "julio" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Fuera de lo común" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetichista" -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Orgías" -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "septiembre" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Asexual" -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "octubre" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Soltero/a" -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "noviembre" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Solo/a" -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "diciembre" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponible" -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Adjunto no reconocido" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "No disponible" -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "desconocido" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Enamorado/a" -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "eliminar categoría" +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Apasionado/a" -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "eliminar del fichero" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Saliendo con alguien" -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "por defecto" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infiel" -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Plantilla de la página" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Con adicción al sexo" -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amigos con algo extra" -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Tipo de contenido de la página" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Casual" -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Seleccionar un idioma alternativo" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Prometido/a" -#: ../../include/text.php:1934 -msgid "activity" -msgstr "la actividad" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Casado/a" -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Herramientas de diseño web" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Casado/a en sueños" -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Páginas" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Pareja" -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Desconectado/a." +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Cohabitando" -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Autenticación fallida." +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Matrimonio tradicional" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pueden verse mi actividad y publicaciones normales" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Felíz" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pueden verse mis páginas web" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "No estoy buscando" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Libertino" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Puede marcarse contenido como me gusta/no me gusta" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Engañado/a" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separado/a" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Inestable" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorciado/a" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Se puede charlar conmigo (cuando esté disponible)" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Divorciado/a en sueños" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Puede escribirse en mi repositorio de ficheros y fotos" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Viudo/a" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pueden editarse mis páginas web" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Indeterminado" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Algo avanzado - muy útil en comunidades abiertas" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Es complicado" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pueden administrarse mis recursos del canal" +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "No me importa" -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Pregúnteme" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Funcionalidades básicas" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imagen excede el límite de %lu bytes del sitio" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Caducidad del contenido" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "El fichero de imagen está vacío. " -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "La foto no ha podido ser guardada." -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "una nueva foto" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha publicado %2$s en %3$s" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Perfiles avanzados" +#: ../../include/photos.php:506 ../../include/conversation.php:1668 +msgid "Photo Albums" +msgstr "Álbumes de fotos" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Secciones y selecciones de perfil adicionales" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Importar/Exportar perfil" +#: ../../include/security.php:109 +msgid "guest:" +msgstr "invitado: " -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" +#: ../../include/security.php:527 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Páginas web" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ahora está conectado/a con %2$s" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Proveer páginas web gestionadas en su canal" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha dado un toque a %2$s" -#: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "Proporcionar un wiki para su canal" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver el perfil @ %s de %s" -#: ../../include/features.php:56 -msgid "Hide Rating" -msgstr "Ocultar las valoraciones" +#: ../../include/conversation.php:713 +msgid "Categories:" +msgstr "Temas:" -#: ../../include/features.php:56 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares." +#: ../../include/conversation.php:714 +msgid "Filed under:" +msgstr "Archivado bajo:" -#: ../../include/features.php:57 -msgid "Private Notes" -msgstr "Notas privadas" +#: ../../include/conversation.php:741 +msgid "View in context" +msgstr "Mostrar en su contexto" -#: ../../include/features.php:57 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" +#: ../../include/conversation.php:851 +msgid "remove" +msgstr "eliminar" -#: ../../include/features.php:58 -msgid "Navigation Channel Select" -msgstr "Navegación por el selector de canales" +#: ../../include/conversation.php:855 ../../include/nav.php:251 +msgid "Loading..." +msgstr "Cargando..." -#: ../../include/features.php:58 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" +msgstr "Eliminar elementos seleccionados" -#: ../../include/features.php:59 -msgid "Photo Location" -msgstr "Ubicación de las fotos" +#: ../../include/conversation.php:949 +msgid "View Source" +msgstr "Ver el código fuente de la entrada" -#: ../../include/features.php:59 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." +#: ../../include/conversation.php:950 +msgid "Follow Thread" +msgstr "Seguir este hilo" -#: ../../include/features.php:60 -msgid "Access Controlled Chatrooms" -msgstr "Salas de chat moderadas" +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Dejar de seguir este hilo" -#: ../../include/features.php:60 -msgid "Provide chatrooms and chat services with access control." -msgstr "Proporcionar salas y servicios de chat moderados." +#: ../../include/conversation.php:956 +msgid "Activity/Posts" +msgstr "Actividad y publicaciones" -#: ../../include/features.php:61 -msgid "Smart Birthdays" -msgstr "Cumpleaños inteligentes" +#: ../../include/conversation.php:958 +msgid "Edit Connection" +msgstr "Editar conexión" -#: ../../include/features.php:61 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." +#: ../../include/conversation.php:959 +msgid "Message" +msgstr "Mensaje" -#: ../../include/features.php:62 -msgid "Expert Mode" -msgstr "Modo de experto" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s likes this." +msgstr "A %s le gusta esto." -#: ../../include/features.php:62 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s doesn't like this." +msgstr "A %s no le gusta esto." -#: ../../include/features.php:63 -msgid "Premium Channel" -msgstr "Canal premium" +#: ../../include/conversation.php:1080 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "a %2$d personas le gusta esto." +msgstr[1] "A %2$d personas les gusta esto." -#: ../../include/features.php:63 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" +#: ../../include/conversation.php:1082 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "a %2$d personas no les gusta esto." +msgstr[1] "A %2$d personas no les gusta esto." -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Opciones para la redacción de entradas" +#: ../../include/conversation.php:1088 +msgid "and" +msgstr "y" -#: ../../include/features.php:71 -msgid "Large Photos" -msgstr "Fotos de gran tamaño" +#: ../../include/conversation.php:1091 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", y %d persona más" +msgstr[1] ", y %d personas más" -#: ../../include/features.php:71 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s like this." +msgstr "A %s le gusta esto." -#: ../../include/features.php:72 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s don't like this." +msgstr "A %s no le gusta esto." -#: ../../include/features.php:73 -msgid "Even More Encryption" -msgstr "Más cifrado todavía" +#: ../../include/conversation.php:1135 +msgid "Set your location" +msgstr "Establecer su ubicación" -#: ../../include/features.php:73 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." +#: ../../include/conversation.php:1136 +msgid "Clear browser location" +msgstr "Eliminar los datos de localización geográfica del navegador" -#: ../../include/features.php:74 -msgid "Enable Voting Tools" -msgstr "Permitir entradas con votación" +#: ../../include/conversation.php:1184 +msgid "Tag term:" +msgstr "Término de la etiqueta:" -#: ../../include/features.php:74 -msgid "Provide a class of post which others can vote on" -msgstr "Proveer una clase de publicación en la que otros puedan votar" +#: ../../include/conversation.php:1185 +msgid "Where are you right now?" +msgstr "¿Donde está ahora?" -#: ../../include/features.php:75 -msgid "Delayed Posting" -msgstr "Publicación aplazada" +#: ../../include/conversation.php:1194 +msgid "Comments enabled" +msgstr "Comentarios habilitados" -#: ../../include/features.php:75 -msgid "Allow posts to be published at a later date" -msgstr "Permitir mensajes que se publicarán en una fecha posterior" +#: ../../include/conversation.php:1195 +msgid "Comments disabled" +msgstr "Comentarios deshabilitados" -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Prevenir entradas o comentarios duplicados" +#: ../../include/conversation.php:1229 +msgid "Page link name" +msgstr "Nombre del enlace de la página" -#: ../../include/features.php:76 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." +#: ../../include/conversation.php:1232 +msgid "Post as" +msgstr "Publicar como" -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" -msgstr "Filtrado del contenido" +#: ../../include/conversation.php:1246 +msgid "Toggle voting" +msgstr "Cambiar votación" -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "Buscar por fecha" +#: ../../include/conversation.php:1249 +msgid "Disable comments" +msgstr "Dehabilitar los comentarios" -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "Capacidad de seleccionar entradas por rango de fechas" +#: ../../include/conversation.php:1250 +msgid "Toggle comments" +msgstr "Activar o desactivar los comentarios" -#: ../../include/features.php:84 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Grupos de canales" +#: ../../include/conversation.php:1258 +msgid "Categories (optional, comma-separated list)" +msgstr "Temas (opcional, lista separada por comas)" -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" -msgstr "Activar la gestión y selección de grupos de canales" +#: ../../include/conversation.php:1281 +msgid "Other networks and post services" +msgstr "Otras redes y servicios de publicación" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" +#: ../../include/conversation.php:1287 +msgid "Set publish date" +msgstr "Establecer la fecha de publicación" -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Guardar términos de búsqueda para su reutilización" +#: ../../include/conversation.php:1536 +msgid "Discover" +msgstr "Descubrir" -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "Actividad personal" +#: ../../include/conversation.php:1539 +msgid "Imported public streams" +msgstr "Contenidos públicos importados" -#: ../../include/features.php:86 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." +#: ../../include/conversation.php:1544 +msgid "Commented Order" +msgstr "Comentarios recientes" -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "Contenido nuevo" +#: ../../include/conversation.php:1547 +msgid "Sort by Comment Date" +msgstr "Ordenar por fecha de comentario" -#: ../../include/features.php:87 -msgid "Enable tab to display all new Network activity" -msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" +#: ../../include/conversation.php:1551 +msgid "Posted Order" +msgstr "Publicaciones recientes" -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Herramienta de afinidad" +#: ../../include/conversation.php:1554 +msgid "Sort by Post Date" +msgstr "Ordenar por fecha de publicación" -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrar el contenido según la profundidad de las relaciones" +#: ../../include/conversation.php:1562 +msgid "Posts that mention or involve you" +msgstr "Publicaciones que le mencionan o involucran" -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Filtrado de conexiones" +#: ../../include/conversation.php:1571 +msgid "Activity Stream - by date" +msgstr "Contenido - por fecha" -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" +#: ../../include/conversation.php:1577 +msgid "Starred" +msgstr "Preferidas" -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Mostrar sugerencias de canales" +#: ../../include/conversation.php:1580 +msgid "Favourite Posts" +msgstr "Publicaciones favoritas" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Gestión de entradas y comentarios" +#: ../../include/conversation.php:1587 +msgid "Spam" +msgstr "Correo basura" -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Etiquetas de la comunidad" +#: ../../include/conversation.php:1590 +msgid "Posts flagged as SPAM" +msgstr "Publicaciones marcadas como basura" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Capacidad de etiquetar entradas existentes" +#: ../../include/conversation.php:1647 +msgid "Status Messages and Posts" +msgstr "Mensajes de estado y publicaciones" -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Categorías de entradas" +#: ../../include/conversation.php:1656 +msgid "About" +msgstr "Mi perfil" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Añadir categorías a sus publicaciones" +#: ../../include/conversation.php:1659 +msgid "Profile Details" +msgstr "Detalles del perfil" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Emoticonos \"emoji\"" +#: ../../include/conversation.php:1675 +msgid "Files and Storage" +msgstr "Ficheros y repositorio" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" +#: ../../include/conversation.php:1708 ../../include/nav.php:104 +msgid "Bookmarks" +msgstr "Marcadores" + +#: ../../include/conversation.php:1711 +msgid "Saved Bookmarks" +msgstr "Marcadores guardados" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Carpetas guardadas" +#: ../../include/conversation.php:1721 +msgid "Manage Webpages" +msgstr "Administrar páginas web" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Capacidad de archivar entradas en carpetas" +#: ../../include/conversation.php:1786 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Participaré" +msgstr[1] "Participaré" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "Desagrado de publicaciones" +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "No participaré" +msgstr[1] "No participaré" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" +#: ../../include/conversation.php:1792 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso/a" +msgstr[1] "Indecisos/as" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Entradas destacadas" +#: ../../include/conversation.php:1795 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "De acuerdo" +msgstr[1] "De acuerdo" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" +#: ../../include/conversation.php:1798 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "En desacuerdo" +msgstr[1] "En desacuerdo" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" +#: ../../include/conversation.php:1801 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "se abstiene" +msgstr[1] "Se abstienen" -#: ../../include/features.php:102 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Proveer nube de etiquetas personal en su página de canal" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Marcadores de %1$s" #: ../../include/group.php:26 msgid "" @@ -8796,6 +8706,10 @@ msgstr "Añadir conexiones nuevas a este grupo de canales" msgid "edit" msgstr "editar" +#: ../../include/group.php:311 ../../include/features.php:84 +msgid "Privacy Groups" +msgstr "Grupos de canales" + #: ../../include/group.php:312 msgid "Edit group" msgstr "Editar grupo" @@ -8808,9 +8722,17 @@ msgstr "Añadir un grupo de canales" msgid "Channels not in any privacy group" msgstr "Sin canales en ningún grupo" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "añadir" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nueva página" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Título" + +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Visitantes diferentes verán este texto de forma distinta" #: ../../include/event.php:22 ../../include/event.php:69 #: ../../include/bb2diaspora.php:485 @@ -8827,97 +8749,284 @@ msgstr "Comienza:" msgid "Finishes:" msgstr "Finaliza:" -#: ../../include/event.php:814 +#: ../../include/event.php:821 msgid "This event has been added to your calendar." msgstr "Este evento ha sido añadido a su calendario." -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Sin especificar" +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Sin especificar" + +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Necesita de una intervención" + +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Completado/a" + +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "En proceso" + +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "Cancelado/a" + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Ficheros adjuntos:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificación de eventos de $Projectname:" + +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "¿Borrar este elemento?" + +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" +msgstr "%s mostrar menos" + +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" +msgstr "%s expandir" + +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" +msgstr "%s contraer" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Contraseña demasiado corta" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Las contraseñas no coinciden" + +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "cualquiera" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Contraseña secreta" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Pista de contraseña" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Aviso: los permisos han cambiado pero aún no han sido enviados." + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "cerrar todo" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nada nuevo por aquí" + +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Valorar este canal (esto es público)" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Describir (opcional)" + +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Por favor, introduzca una dirección de enlace" + +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" + +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" + +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" + +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "antes" + +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "desde ahora" + +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "menos de un minuto" + +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "alrededor de un minuto" + +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d minutos" + +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "alrededor de una hora" + +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "alrededor de %d horas" + +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "un día" + +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d días" + +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "alrededor de un mes" + +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d meses" + +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "alrededor de un año" + +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d años" + +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " + +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" + +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "mayo" + +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "ene" + +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "feb" + +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "mar" + +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "abr" -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necesita de una intervención" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "may" -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completado/a" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "jun" -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "En proceso" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "jul" -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Cancelado/a" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "ago" -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "sep" -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "oct" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Su dirección de correo está ya registrada en este sitio." +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "nov" -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Es obligatorio que le inviten." +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "dic" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "No se ha podido verificar su invitación." +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "dom" -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Por favor introduzca la información requerida." +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "lun" -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "La información de la cuenta no se ha podido guardar." +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "mar" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmación de registro para %s" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "mié" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitud de registro en %s" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "jue" -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "su contraseña de registro" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "vie" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles del registro de %s" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "sáb" -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Cuenta aprobada." +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "hoy" -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registro revocado para %s" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "mes" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Pulse aquí para actualizar" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "semana" -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Esta acción supera los límites establecidos por su plan de suscripción " +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "día" -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Esta acción no está disponible en su plan de suscripción." +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Todos los días" #: ../../include/follow.php:27 msgid "Channel is blocked on this site." @@ -8947,672 +9056,543 @@ msgstr "El intento de acceder al canal ha fallado." msgid "Cannot connect to yourself." msgstr "No puede conectarse consigo mismo." -#: ../../include/attach.php:247 ../../include/attach.php:333 +#: ../../include/attach.php:248 ../../include/attach.php:334 msgid "Item was not found." msgstr "Elemento no encontrado." -#: ../../include/attach.php:499 +#: ../../include/attach.php:500 msgid "No source file." msgstr "Ningún fichero de origen" -#: ../../include/attach.php:521 +#: ../../include/attach.php:522 msgid "Cannot locate file to replace" msgstr "No se puede localizar el fichero que va a ser sustituido." -#: ../../include/attach.php:539 +#: ../../include/attach.php:540 msgid "Cannot locate file to revise/update" msgstr "No se puede localizar el fichero para revisar/actualizar" -#: ../../include/attach.php:674 +#: ../../include/attach.php:675 #, php-format msgid "File exceeds size limit of %d" msgstr "El fichero supera el limite de tamaño de %d" -#: ../../include/attach.php:688 +#: ../../include/attach.php:689 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." -#: ../../include/attach.php:846 +#: ../../include/attach.php:847 msgid "File upload failed. Possible system limit or action terminated." msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." -#: ../../include/attach.php:859 +#: ../../include/attach.php:860 msgid "Stored file could not be verified. Upload failed." msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Ruta no disponible." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Ruta vacía" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "Nombre duplicado de ruta o fichero" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Ruta no encontrada" - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir ha fallado." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "el almacenamiento en la base de datos ha fallado." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "Ruta vacía" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Imagen/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instalar el elemento %s:" - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escribió %2$s siguiente %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma distinta" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 escribió:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Desconocido)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visible para cualquiera en internet." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visible sólo para usted." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visible para cualquiera en esta red." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que esté autenticado." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible para cualquiera en %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visible para todas las conexiones." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visible para las conexiones permitidas." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visible para conexiones específicas." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "El grupo de canales está vacío." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Grupo de canales: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Conexión no encontrada" - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "foto del perfil" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contenido incorporado" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nueva aplicación (app)" +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." +msgstr "Ruta no disponible." -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Sugerencias" +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" +msgstr "Ruta vacía" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Ver más..." +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" +msgstr "Nombre duplicado de ruta o fichero" -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." +#: ../../include/attach.php:1026 +msgid "Path not found." +msgstr "Ruta no encontrada" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Añadir nueva conexión" +#: ../../include/attach.php:1084 +msgid "mkdir failed." +msgstr "mkdir ha fallado." -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Dirección del canal" +#: ../../include/attach.php:1088 +msgid "database storage failed." +msgstr "el almacenamiento en la base de datos ha fallado." -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" +#: ../../include/attach.php:1136 +msgid "Empty path" +msgstr "Ruta vacía" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notas" +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Desconectado/a." -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eliminar término" +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "Autenticación fallida." -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Todo" +#: ../../include/auth.php:286 +msgid "Login failed." +msgstr "El acceso ha fallado." -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Hemeroteca" +#: ../../include/activities.php:41 +msgid " and " +msgstr " y " -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Recargar" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "el perfil público" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Configuración de la cuenta" +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiado %2$s a “%3$s”" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Configuración del canal" +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visitar %2$s de %1$s" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Funcionalidades" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha actualizado %2$s, cambiando %3$s." -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Complementos" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Paquete de datos no válido" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Ajustes de visualización" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestión de ubicaciones (clones) del canal" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "No ha sido posible de verificar la firma del sitio para %s" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exportar canal" +#: ../../include/zot.php:3706 +msgid "invalid target signature" +msgstr "La firma recibida no es válida" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Aplicaciones (apps) conectadas" +#: ../../include/features.php:50 +msgid "General Features" +msgstr "Funcionalidades básicas" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" +#: ../../include/features.php:52 +msgid "Content Expiration" +msgstr "Caducidad del contenido" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menú de correo privado" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista combinada" +#: ../../include/features.php:53 +msgid "Multiple Profiles" +msgstr "Múltiples perfiles" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversaciones" +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" +msgstr "Capacidad de crear múltiples perfiles" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Mensajes recibidos" +#: ../../include/features.php:54 +msgid "Advanced Profiles" +msgstr "Perfiles avanzados" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Enviar mensajes" +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" +msgstr "Secciones y selecciones de perfil adicionales" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Sin mensajes." +#: ../../include/features.php:55 +msgid "Profile Import/Export" +msgstr "Importar/Exportar perfil" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Eliminar conversación" +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" +msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Gestión de eventos" +#: ../../include/features.php:56 +msgid "Web Pages" +msgstr "Páginas web" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exportar el calendario" +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" +msgstr "Proveer páginas web gestionadas en su canal" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importar un calendario" +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" +msgstr "Proporcionar un wiki para su canal" -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Resumen" +#: ../../include/features.php:59 +msgid "Private Notes" +msgstr "Notas privadas" -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Miembros del chat" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Lista de wikis" +#: ../../include/features.php:60 +msgid "Navigation Channel Select" +msgstr "Navegación por el selector de canales" -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Páginas del wiki" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Salas de chat preferidas" +#: ../../include/features.php:61 +msgid "Photo Location" +msgstr "Ubicación de las fotos" -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Salas de chat sugeridas" +#: ../../include/features.php:61 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/imagen" +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" +msgstr "Salas de chat moderadas" -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Hacer clic para ver más" +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." +msgstr "Proporcionar salas y servicios de chat moderados." -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Valoraciones" +#: ../../include/features.php:63 +msgid "Smart Birthdays" +msgstr "Cumpleaños inteligentes" -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Valorar este canal" +#: ../../include/features.php:63 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Mostrar las valoraciones" +#: ../../include/features.php:64 +msgid "Expert Mode" +msgstr "Modo de experto" -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Foros" +#: ../../include/features.php:64 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Tareas" +#: ../../include/features.php:69 +msgid "Post Composition Features" +msgstr "Opciones para la redacción de entradas" -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentación" +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Fotos de gran tamaño" -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Información sobre el proyecto o sitio" +#: ../../include/features.php:70 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" + +#: ../../include/features.php:71 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Para los miembros" +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Más cifrado todavía" -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Para los administradores" +#: ../../include/features.php:72 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Para los desarrolladores" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Permitir entradas con votación" -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Inscripciones de nuevos miembros pendientes de aprobación" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Proveer una clase de publicación en la que otros puedan votar" -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Examinar la cola" +#: ../../include/features.php:74 +msgid "Disable Comments" +msgstr "Deshabilitar comentarios" -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Actualizaciones de la base de datos" +#: ../../include/features.php:74 +msgid "Provide the option to disable comments for a post" +msgstr "Proporcionar la opción de desactivar los comentarios de una publicación" -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Extensiones" +#: ../../include/features.php:75 +msgid "Delayed Posting" +msgstr "Publicación aplazada" -#: ../../include/activities.php:41 -msgid " and " -msgstr " y " +#: ../../include/features.php:75 +msgid "Allow posts to be published at a later date" +msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "el perfil público" +#: ../../include/features.php:76 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiado %2$s a “%3$s”" +#: ../../include/features.php:76 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visitar %2$s de %1$s" +#: ../../include/features.php:82 +msgid "Network and Stream Filtering" +msgstr "Filtrado del contenido" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha actualizado %2$s, cambiando %3$s." +#: ../../include/features.php:83 +msgid "Search by Date" +msgstr "Buscar por fecha" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Ficheros adjuntos:" +#: ../../include/features.php:83 +msgid "Ability to select posts by date ranges" +msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificación de eventos de $Projectname:" +#: ../../include/features.php:84 +msgid "Enable management and selection of privacy groups" +msgstr "Activar la gestión y selección de grupos de canales" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "¿Borrar este elemento?" +#: ../../include/features.php:85 +msgid "Save search terms for re-use" +msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "%s mostrar menos" +#: ../../include/features.php:86 +msgid "Network Personal Tab" +msgstr "Actividad personal" -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s expandir" +#: ../../include/features.php:86 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s contraer" +#: ../../include/features.php:87 +msgid "Network New Tab" +msgstr "Contenido nuevo" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Contraseña demasiado corta" +#: ../../include/features.php:87 +msgid "Enable tab to display all new Network activity" +msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Las contraseñas no coinciden" +#: ../../include/features.php:88 +msgid "Affinity Tool" +msgstr "Herramienta de afinidad" -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "cualquiera" +#: ../../include/features.php:88 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Contraseña secreta" +#: ../../include/features.php:89 +msgid "Connection Filtering" +msgstr "Filtrado de conexiones" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Pista de contraseña" +#: ../../include/features.php:89 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Aviso: los permisos han cambiado pero aún no han sido enviados." +#: ../../include/features.php:90 +msgid "Show channel suggestions" +msgstr "Mostrar sugerencias de canales" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "cerrar todo" +#: ../../include/features.php:95 +msgid "Post/Comment Tools" +msgstr "Gestión de entradas y comentarios" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nada nuevo por aquí" +#: ../../include/features.php:96 +msgid "Community Tagging" +msgstr "Etiquetas de la comunidad" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Valorar este canal (esto es público)" +#: ../../include/features.php:96 +msgid "Ability to tag existing posts" +msgstr "Capacidad de etiquetar entradas existentes" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Describir (opcional)" +#: ../../include/features.php:97 +msgid "Post Categories" +msgstr "Temas de las entradas" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Por favor, introduzca una dirección de enlace" +#: ../../include/features.php:97 +msgid "Add categories to your posts" +msgstr "Añadir temas a sus publicaciones" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" +#: ../../include/features.php:98 +msgid "Emoji Reactions" +msgstr "Emoticonos \"emoji\"" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/features.php:98 +msgid "Add emoji reaction ability to posts" +msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/features.php:99 +msgid "Ability to file posts under folders" +msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "antes" +#: ../../include/features.php:100 +msgid "Dislike Posts" +msgstr "Desagrado de publicaciones" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "desde ahora" +#: ../../include/features.php:100 +msgid "Ability to dislike posts/comments" +msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "menos de un minuto" +#: ../../include/features.php:101 +msgid "Star Posts" +msgstr "Entradas destacadas" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "alrededor de un minuto" +#: ../../include/features.php:101 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minutos" +#: ../../include/features.php:102 +msgid "Tag Cloud" +msgstr "Nube de etiquetas" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "alrededor de una hora" +#: ../../include/features.php:102 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Proveer nube de etiquetas personal en su página de canal" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "alrededor de %d horas" +#: ../../include/features.php:111 +msgid "Premium Channel" +msgstr "Canal premium" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "un día" +#: ../../include/features.php:112 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d días" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Etiquetas" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "alrededor de un mes" +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Palabras clave" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d meses" +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "tener" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "alrededor de un año" +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "tiene" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d años" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "quiero" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "quiere" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "gusta de" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mayo" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "no gusta de" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "ene" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Dirección de correo no válida" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "feb" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "mar" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Su dirección de correo está ya registrada en este sitio." -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "abr" +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Es obligatorio que le inviten." -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "may" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "No se ha podido verificar su invitación." -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "jun" +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Por favor introduzca la información requerida." -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "jul" +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "La información de la cuenta no se ha podido guardar." -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "ago" +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Confirmación de registro para %s" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "sep" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Solicitud de registro en %s" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "oct" +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "su contraseña de registro" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "nov" +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles del registro de %s" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "dic" +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Cuenta aprobada." -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "dom" +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registro revocado para %s" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "lun" +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Pulse aquí para actualizar" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "mar" +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Esta acción supera los límites establecidos por su plan de suscripción " -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "mié" +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Esta acción no está disponible en su plan de suscripción." -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "jue" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Imagen/foto" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "vie" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Contenido cifrado" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "sáb" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Instalar el elemento %s:" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "hoy" +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "mes" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s escribió %2$s siguiente %3$s" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "semana" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Pulsar para abrir/cerrar" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "día" +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Todos los días" +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 escribió:" #: ../../include/contact_widgets.php:11 #, php-format @@ -9664,369 +9644,400 @@ msgstr "mostrar más" msgid "Directory Options" msgstr "Opciones del directorio" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modo seguro" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modo seguro" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo foros públicos" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo este sitio web" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No se ha especificado ningún destinatario." + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sin asunto]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "No ha sido posible determinar el remitente. " + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "No se han podido verificar las publicaciones guardadas." + +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." + +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "La clonación del canal no ha salido bien. La importación ha fallado." + +#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1737 +msgid "Logout" +msgstr "Finalizar sesión" + +#: ../../include/nav.php:84 ../../include/nav.php:117 +msgid "End this session" +msgstr "Finalizar esta sesión" + +#: ../../include/nav.php:87 ../../include/nav.php:148 +msgid "Home" +msgstr "Inicio" + +#: ../../include/nav.php:87 +msgid "Your posts and conversations" +msgstr "Sus publicaciones y conversaciones" + +#: ../../include/nav.php:88 +msgid "Your profile page" +msgstr "Su página del perfil" + +#: ../../include/nav.php:90 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" + +#: ../../include/nav.php:92 +msgid "Edit your profile" +msgstr "Editar su perfil" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo foros públicos" +#: ../../include/nav.php:94 +msgid "Your photos" +msgstr "Sus fotos" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo este sitio web" +#: ../../include/nav.php:95 +msgid "Your files" +msgstr "Sus ficheros" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "No se ha especificado ningún destinatario." +#: ../../include/nav.php:98 +msgid "Your chatrooms" +msgstr "Sus salas de chat" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[sin asunto]" +#: ../../include/nav.php:104 +msgid "Your bookmarks" +msgstr "Sus marcadores" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "No ha sido posible determinar el remitente. " +#: ../../include/nav.php:108 +msgid "Your webpages" +msgstr "Sus páginas web" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "No se han podido verificar las publicaciones guardadas." +#: ../../include/nav.php:110 +msgid "Your wiki" +msgstr "Su wiki" -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "¿Quién puede ver esto?" +#: ../../include/nav.php:114 +msgid "Sign in" +msgstr "Acceder" -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Selección personalizada" +#: ../../include/nav.php:131 +#, php-format +msgid "%s - click to logout" +msgstr "%s - pulsar para finalizar sesión" -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." +#: ../../include/nav.php:134 +msgid "Remote authentication" +msgstr "Acceder desde su servidor" -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Mostrar" +#: ../../include/nav.php:134 +msgid "Click to authenticate to your home hub" +msgstr "Pulsar para identificarse en su servidor de inicio" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "No mostrar" +#: ../../include/nav.php:148 +msgid "Home Page" +msgstr "Página de inicio" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Otras redes y servicios de publicación" +#: ../../include/nav.php:151 +msgid "Create an account" +msgstr "Crear una cuenta" -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These" -" permissions set who is allowed to view the post." -msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje." +#: ../../include/nav.php:163 +msgid "Help and documentation" +msgstr "Ayuda y documentación" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Cumpleaños" +#: ../../include/nav.php:167 +msgid "Applications, utilities, links, games" +msgstr "Aplicaciones, utilidades, enlaces, juegos" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Edad:" +#: ../../include/nav.php:169 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-DD o MM-DD" +#: ../../include/nav.php:171 +msgid "Channel Directory" +msgstr "Directorio de canales" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "nunca" +#: ../../include/nav.php:183 +msgid "Your grid" +msgstr "Mi red" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "hace un instante" +#: ../../include/nav.php:184 +msgid "Mark all grid notifications seen" +msgstr "Marcar todas las notificaciones de la red como vistas" -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" +#: ../../include/nav.php:186 +msgid "Channel home" +msgstr "Mi canal" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "año" -msgstr[1] "años" +#: ../../include/nav.php:187 +msgid "Mark all channel notifications seen" +msgstr "Marcar todas las notificaciones del canal como leídas" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" +#: ../../include/nav.php:193 +msgid "Notices" +msgstr "Avisos" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" +#: ../../include/nav.php:193 +msgid "Notifications" +msgstr "Notificaciones" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" +#: ../../include/nav.php:194 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" +#: ../../include/nav.php:197 +msgid "Private mail" +msgstr "Correo privado" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" +#: ../../include/nav.php:198 +msgid "See all private messages" +msgstr "Ver todas los mensajes privados" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segundo" -msgstr[1] "segundos" +#: ../../include/nav.php:199 +msgid "Mark all private messages seen" +msgstr "Marcar todos los mensajes privados como leídos" -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Cumpleaños de %1$s" +#: ../../include/nav.php:205 +msgid "Event Calendar" +msgstr "Calendario de eventos" -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliz cumpleaños %1$s" +#: ../../include/nav.php:206 +msgid "See all events" +msgstr "Ver todos los eventos" -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Cronología pública" +#: ../../include/nav.php:207 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" -#: ../../include/zot.php:697 -msgid "Invalid data packet" -msgstr "Paquete de datos no válido" +#: ../../include/nav.php:210 +msgid "Manage Your Channels" +msgstr "Gestionar sus canales" -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" -msgstr "No ha sido posible de verificar la firma del canal" +#: ../../include/nav.php:212 +msgid "Account/Channel Settings" +msgstr "Ajustes de cuenta/canales" -#: ../../include/zot.php:2326 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "No ha sido posible de verificar la firma del sitio para %s" +#: ../../include/nav.php:220 +msgid "Site Setup and Configuration" +msgstr "Ajustes y configuración del sitio" -#: ../../include/zot.php:3703 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" +#: ../../include/nav.php:256 +msgid "@name, #tag, ?doc, content" +msgstr "@nombre, #etiqueta, ?ayuda, contenido" + +#: ../../include/nav.php:257 +msgid "Please wait..." +msgstr "Espere por favor…" -#: ../../view/theme/redbasic/php/config.php:82 +#: ../../view/theme/redbasic/php/config.php:6 msgid "Focus (Hubzilla default)" msgstr "Focus (predefinido)" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Theme settings" msgstr "Ajustes del tema" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" -msgstr "Elegir un esquema" - -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Narrow navbar" msgstr "Estrechar la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar background color" msgstr "Color de fondo de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Navigation bar gradient top color" msgstr "Color superior del gradiente de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Navigation bar gradient bottom color" msgstr "Color inferior del gradiente de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Navigation active button gradient top color" msgstr "Color superior del gradiente del botón activo de navegación" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Navigation active button gradient bottom color" msgstr "Color inferior del gradiente del botón activo de navegación" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Navigation bar border color " msgstr "Color del borde de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Navigation bar icon color " msgstr "Color del icono de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Navigation bar active icon color " msgstr "Color del icono activo de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:120 msgid "link color" msgstr "Color del enlace" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set font-color for banner" msgstr "Ajustar el color del tipo de letra para el \"banner\"" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the background color" msgstr "Ajustar el color de fondo" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set the background image" msgstr "Ajustar la imagen de fondo" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set the background color of items" msgstr "Ajustar el color de los elementos de fondo" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:125 msgid "Set the background color of comments" msgstr "Ajustar el color de fondo de los comentarios" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set the border color of comments" msgstr "Ajustar el color del borde de los comentarios" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set the indent for comments" msgstr "Ajustar la indentación de los comentarios" -#: ../../view/theme/redbasic/php/config.php:122 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set the basic color for item icons" msgstr "Ajustar el color básico para los iconos de los elementos" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Set the hover color for item icons" msgstr "Ajustar el color flotante para los iconos de los elementos" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Set font-size for the entire application" msgstr "Ajustar el tamaño de letra para toda la aplicación" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Example: 14px" msgstr "Ejemplo: 14px" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set font-size for posts and comments" msgstr "Ajustar el tamaño del tipo de letra para publicaciones y comentarios" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set font-color for posts and comments" msgstr "Establecer el color de la letra para publicaciones y comentarios" -#: ../../view/theme/redbasic/php/config.php:127 +#: ../../view/theme/redbasic/php/config.php:133 msgid "Set radius of corners" msgstr "Establecer el radio de curvatura de las esquinas" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:134 msgid "Set shadow depth of photos" msgstr "Ajustar la profundidad de sombras de las fotos" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Set maximum width of content region in pixel" msgstr "Ajustar la anchura máxima de la región de contenido, en pixels" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Leave empty for default width" msgstr "Dejar en blanco para la anchura predeterminada" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:136 msgid "Left align page content" msgstr "Alinear a la izquierda el contenido de la página" -#: ../../view/theme/redbasic/php/config.php:131 +#: ../../view/theme/redbasic/php/config.php:137 msgid "Set minimum opacity of nav bar - to hide it" msgstr "Ajustar la opacidad mínima de la barra de navegación - para ocultarla" -#: ../../view/theme/redbasic/php/config.php:132 +#: ../../view/theme/redbasic/php/config.php:138 msgid "Set size of conversation author photo" msgstr "Ajustar el tamaño de la foto del autor de la conversación" -#: ../../view/theme/redbasic/php/config.php:133 +#: ../../view/theme/redbasic/php/config.php:139 msgid "Set size of followup author photos" msgstr "Ajustar el tamaño de foto de los seguidores del autor" -#: ../../boot.php:1163 +#: ../../boot.php:1194 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Buscar %1$s (%2$s)" -#: ../../boot.php:1163 +#: ../../boot.php:1194 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1481 +#: ../../boot.php:1512 #, php-format msgid "Update %s failed. See error logs." msgstr "La actualización %s ha fallado. Mire el informe de errores." -#: ../../boot.php:1484 +#: ../../boot.php:1515 #, php-format msgid "Update Error at %s" msgstr "Error de actualización en %s" -#: ../../boot.php:1685 +#: ../../boot.php:1719 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla" -#: ../../boot.php:1706 +#: ../../boot.php:1740 msgid "Login/Email" msgstr "Inicio de sesión / Correo electrónico" -#: ../../boot.php:1707 +#: ../../boot.php:1741 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1708 +#: ../../boot.php:1742 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1711 +#: ../../boot.php:1745 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2277 +#: ../../boot.php:2314 msgid "toggle mobile" msgstr "cambiar a modo móvil" -#: ../../boot.php:2432 +#: ../../boot.php:2469 msgid "Website SSL certificate is not valid. Please correct." msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema." -#: ../../boot.php:2435 +#: ../../boot.php:2472 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Error SSL del sitio web en %s" -#: ../../boot.php:2478 +#: ../../boot.php:2576 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2482 +#: ../../boot.php:2580 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Las tareas de Cron no están funcionando en %s" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index f53ce0b18..d8f8d2d10 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -61,203 +61,92 @@ App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%) App::$strings["WARNING:"] = "ATENCIÓN:"; App::$strings["Create new folder"] = "Crear nueva carpeta"; App::$strings["Upload file"] = "Subir fichero"; -App::$strings["Permission denied"] = "Permiso denegado"; +App::$strings["Drop files here to immediately upload"] = "Arrastre los ficheros aquí para subirlos de forma inmediata"; App::$strings["Permission denied."] = "Acceso denegado."; App::$strings["Not Found"] = "No encontrado"; App::$strings["Page not found."] = "Página no encontrada."; +App::$strings["Permission denied"] = "Permiso denegado"; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo."; App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; App::$strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; App::$strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; App::$strings["Away"] = "Ausente"; App::$strings["Online"] = "Conectado/a"; -App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; -App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; -App::$strings["Connection updated."] = "Conexión actualizada."; -App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; -App::$strings["is now connected to"] = "ahora está conectado/a"; -App::$strings["No"] = "No"; +App::$strings["Invalid message"] = "Mensaje no válido"; +App::$strings["no results"] = "sin resultados"; +App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; +App::$strings["queued"] = "encolado"; +App::$strings["posted"] = "enviado"; +App::$strings["accepted for delivery"] = "aceptado para el envío"; +App::$strings["updated"] = "actualizado"; +App::$strings["update ignored"] = "actualización ignorada"; +App::$strings["permission denied"] = "permiso denegado"; +App::$strings["recipient not found"] = "destinatario no encontrado"; +App::$strings["mail recalled"] = "mensaje de correo revocado"; +App::$strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; +App::$strings["mail delivered"] = "correo enviado"; +App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; +App::$strings["Options"] = "Opciones"; +App::$strings["Redeliver"] = "Volver a enviar"; +App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; +App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; +App::$strings["Return to your app and insert this Security Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; +App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; App::$strings["Yes"] = "Sí"; -App::$strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; -App::$strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; -App::$strings["Connection has been removed."] = "La conexión ha sido eliminada."; -App::$strings["View Profile"] = "Ver el perfil"; -App::$strings["View %s's profile"] = "Ver el perfil de %s"; -App::$strings["Refresh Permissions"] = "Recargar los permisos"; -App::$strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; -App::$strings["Recent Activity"] = "Actividad reciente"; -App::$strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; -App::$strings["Unblock"] = "Desbloquear"; -App::$strings["Block"] = "Bloquear"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; -App::$strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; -App::$strings["Unignore"] = "Dejar de ignorar"; -App::$strings["Ignore"] = "Ignorar"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; -App::$strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; -App::$strings["Unarchive"] = "Desarchivar"; -App::$strings["Archive"] = "Archivar"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; -App::$strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; -App::$strings["Unhide"] = "Mostrar"; -App::$strings["Hide"] = "Ocultar"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; -App::$strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; -App::$strings["Delete this connection"] = "Eliminar esta conexión"; -App::$strings["Me"] = "Yo"; -App::$strings["Family"] = "Familia"; -App::$strings["Friends"] = "Amigos/as"; -App::$strings["Acquaintances"] = "Conocidos/as"; -App::$strings["All"] = "Todos/as"; -App::$strings["Approve this connection"] = "Aprobar esta conexión"; -App::$strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; -App::$strings["Set Affinity"] = "Ajustar la afinidad"; -App::$strings["Set Profile"] = "Ajustar el perfil"; -App::$strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil"; -App::$strings["none"] = "-"; -App::$strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; -App::$strings["Connection: %s"] = "Conexión: %s"; -App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; -App::$strings["Connection requests will be approved without your interaction"] = "Las solicitudes de conexión serán aprobadas sin su intervención"; -App::$strings["This connection's primary address is"] = "La dirección primaria de esta conexión es"; -App::$strings["Available locations:"] = "Ubicaciones disponibles:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; -App::$strings["Connection Tools"] = "Gestión de las conexiones"; -App::$strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; +App::$strings["No"] = "No"; App::$strings["Rating"] = "Valoración"; -App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; -App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; -App::$strings["Custom Filter"] = "Filtro personalizado"; -App::$strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; -App::$strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; -App::$strings["This information is public!"] = "¡Esta información es pública!"; -App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; -App::$strings["inherited"] = "heredado"; +App::$strings["Website:"] = "Sitio web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; +App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; App::$strings["Submit"] = "Enviar"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; -App::$strings["Their Settings"] = "Sus ajustes"; -App::$strings["My Settings"] = "Mis ajustes"; -App::$strings["Individual Permissions"] = "Permisos individuales"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; -App::$strings["Last update:"] = "Última actualización:"; -App::$strings["Public access denied."] = "Acceso público denegado."; -App::$strings["Item not found."] = "Elemento no encontrado."; -App::$strings["First Name"] = "Nombre"; -App::$strings["Last Name"] = "Apellido"; -App::$strings["Nickname"] = "Sobrenombre o Alias"; -App::$strings["Full Name"] = "Nombre completo"; -App::$strings["Email"] = "Correo electrónico"; -App::$strings["Profile Photo"] = "Foto del perfil"; -App::$strings["Profile Photo 16px"] = "Foto del perfil 16px"; -App::$strings["Profile Photo 32px"] = "Foto del perfil 32px"; -App::$strings["Profile Photo 48px"] = "Foto del perfil 48px"; -App::$strings["Profile Photo 64px"] = "Foto del perfil 64px"; -App::$strings["Profile Photo 80px"] = "Foto del perfil 80px"; -App::$strings["Profile Photo 128px"] = "Foto del perfil 128px"; -App::$strings["Timezone"] = "Huso horario"; -App::$strings["Homepage URL"] = "Dirección de la página personal"; -App::$strings["Language"] = "Idioma"; -App::$strings["Birth Year"] = "Año de nacimiento"; -App::$strings["Birth Month"] = "Mes de nacimiento"; -App::$strings["Birth Day"] = "Día de nacimiento"; -App::$strings["Birthdate"] = "Fecha de nacimiento"; -App::$strings["Gender"] = "Género"; -App::$strings["Male"] = "Hombre"; -App::$strings["Female"] = "Mujer"; -App::$strings["Channel added."] = "Canal añadido."; -App::$strings["%d rating"] = array( - 0 => "%d valoración", - 1 => "%d valoraciones", -); -App::$strings["Gender: "] = "Género:"; -App::$strings["Status: "] = "Estado:"; -App::$strings["Homepage: "] = "Página personal:"; -App::$strings["Age:"] = "Edad:"; -App::$strings["Location:"] = "Ubicación:"; -App::$strings["Description:"] = "Descripción:"; -App::$strings["Hometown:"] = "Lugar de nacimiento:"; -App::$strings["About:"] = "Sobre mí:"; -App::$strings["Connect"] = "Conectar"; -App::$strings["Public Forum:"] = "Foro público:"; -App::$strings["Keywords: "] = "Palabras clave:"; -App::$strings["Don't suggest"] = "No sugerir:"; -App::$strings["Common connections:"] = "Conexiones comunes:"; -App::$strings["Global Directory"] = "Directorio global:"; -App::$strings["Local Directory"] = "Directorio local:"; -App::$strings["Find"] = "Encontrar"; -App::$strings["Finding:"] = "Encontrar:"; -App::$strings["Channel Suggestions"] = "Sugerencias de canales"; -App::$strings["next page"] = "siguiente página"; -App::$strings["previous page"] = "página anterior"; -App::$strings["Sort options"] = "Ordenar opciones"; -App::$strings["Alphabetic"] = "Alfabético"; -App::$strings["Reverse Alphabetic"] = "Alfabético inverso"; -App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo"; -App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; -App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; -App::$strings["Continue"] = "Continuar"; -App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; -App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; -App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; -App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; -App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; -App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; -App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; -App::$strings["Event not found."] = "Evento no encontrado."; -App::$strings["event"] = "evento"; -App::$strings["Edit event title"] = "Editar el título del evento"; -App::$strings["Event title"] = "Título del evento"; -App::$strings["Required"] = "Obligatorio"; -App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; -App::$strings["Edit Category"] = "Editar la categoría"; -App::$strings["Category"] = "Categoría"; -App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; -App::$strings["Start date and time"] = "Fecha y hora de comienzo"; -App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; -App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; -App::$strings["Finish date and time"] = "Fecha y hora de terminación"; -App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; -App::$strings["Edit Description"] = "Editar la descripción"; -App::$strings["Description"] = "Descripción"; -App::$strings["Edit Location"] = "Modificar la dirección"; +App::$strings["Public Hubs"] = "Servidores públicos"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; +App::$strings["Hub URL"] = "Dirección del hub"; +App::$strings["Access Type"] = "Tipo de acceso"; +App::$strings["Registration Policy"] = "Normas de registro"; +App::$strings["Stats"] = "Estadísticas"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valoraciones"; +App::$strings["Rate"] = "Valorar"; App::$strings["Location"] = "Ubicación"; -App::$strings["Share this event"] = "Compartir este evento"; -App::$strings["Preview"] = "Previsualizar"; -App::$strings["Permission settings"] = "Configuración de permisos"; -App::$strings["Advanced Options"] = "Opciones avanzadas"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Editar evento"; -App::$strings["Delete event"] = "Borrar evento"; -App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; -App::$strings["calendar"] = "calendario"; -App::$strings["Edit Event"] = "Editar el evento"; -App::$strings["Create Event"] = "Crear un evento"; -App::$strings["Previous"] = "Anterior"; -App::$strings["Next"] = "Siguiente"; -App::$strings["Export"] = "Exportar"; App::$strings["View"] = "Ver"; -App::$strings["Month"] = "Mes"; -App::$strings["Week"] = "Semana"; -App::$strings["Day"] = "Día"; -App::$strings["Today"] = "Hoy"; -App::$strings["Event removed"] = "Evento borrado"; -App::$strings["Failed to remove event"] = "Error al eliminar el evento"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; +App::$strings["Passwords do not match."] = "Las contraseñas no coinciden."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; +App::$strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; +App::$strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; +App::$strings["Registration on this hub is disabled."] = "El registro está deshabilitado en este sitio."; +App::$strings["Registration on this hub is by approval only."] = "El registro en este hub está sometido a aprobación previa."; +App::$strings["Register at another affiliated hub."] = "Registrarse en otro hub afiliado."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana."; +App::$strings["Terms of Service"] = "Términos del servicio"; +App::$strings["I accept the %s for this website"] = "Acepto los %s de este sitio"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Tengo más de 13 años de edad y acepto los %s de este sitio"; +App::$strings["Your email address"] = "Su dirección de correo electrónico"; +App::$strings["Choose a password"] = "Elija una contraseña"; +App::$strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña"; +App::$strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación"; +App::$strings["Name or caption"] = "Nombre o descripción"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; +App::$strings["Choose a short nickname"] = "Elija un alias corto"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; +App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; +App::$strings["Select a channel role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; +App::$strings["Read more about roles"] = "Leer más sobre los roles"; +App::$strings["no"] = "no"; +App::$strings["yes"] = "sí"; +App::$strings["Registration"] = "Registro"; +App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; +App::$strings["Register"] = "Registrarse"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones."; App::$strings["Bookmark added"] = "Marcador añadido"; App::$strings["My Bookmarks"] = "Mis marcadores"; App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; -App::$strings["Item not found"] = "Elemento no encontrado"; -App::$strings["Item is not editable"] = "El elemento no es editable"; -App::$strings["Edit post"] = "Editar la entrada"; +App::$strings["Public access denied."] = "Acceso público denegado."; +App::$strings["Item not found."] = "Elemento no encontrado."; App::$strings["Photos"] = "Fotos"; App::$strings["Cancel"] = "Cancelar"; App::$strings["Invalid item."] = "Elemento no válido."; @@ -266,11 +155,19 @@ App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do e App::$strings["Save to Folder:"] = "Guardar en carpeta:"; App::$strings["- select -"] = "- seleccionar -"; App::$strings["Save"] = "Guardar"; +App::$strings["No such group"] = "No se encuentra el grupo"; +App::$strings["No such channel"] = "No se encuentra el canal"; +App::$strings["forum"] = "foro"; +App::$strings["Search Results For:"] = "Buscar resultados para:"; +App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; +App::$strings["Privacy group: "] = "Grupo de canales: "; +App::$strings["Invalid connection."] = "Conexión no válida."; App::$strings["Blocked"] = "Bloqueadas"; App::$strings["Ignored"] = "Ignoradas"; App::$strings["Hidden"] = "Ocultas"; App::$strings["Archived"] = "Archivadas"; App::$strings["New"] = "Nuevas"; +App::$strings["All"] = "Todos/as"; App::$strings["New Connections"] = "Nuevas conexiones"; App::$strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes"; App::$strings["All Connections"] = "Todas las conexiones"; @@ -290,11 +187,13 @@ App::$strings["Connected"] = "Conectado/a"; App::$strings["Approve connection"] = "Aprobar esta conexión"; App::$strings["Approve"] = "Aprobar"; App::$strings["Ignore connection"] = "Ignorar esta conexión"; +App::$strings["Ignore"] = "Ignorar"; App::$strings["Recent activity"] = "Actividad reciente"; App::$strings["Connections"] = "Conexiones"; App::$strings["Search"] = "Buscar"; App::$strings["Search your connections"] = "Buscar sus conexiones"; App::$strings["Connections search"] = "Buscar conexiones"; +App::$strings["Find"] = "Encontrar"; App::$strings["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. "; App::$strings["Cover Photos"] = "Imágenes de portada del perfil"; App::$strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado."; @@ -317,80 +216,176 @@ App::$strings["select a photo from your photo albums"] = "Seleccione una foto de App::$strings["Crop Image"] = "Recortar imagen"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; App::$strings["Done Editing"] = "Edición completada"; -App::$strings["webpage"] = "página web"; -App::$strings["block"] = "bloque"; -App::$strings["layout"] = "plantilla"; -App::$strings["menu"] = "menú"; -App::$strings["%s element installed"] = "%s elemento instalado"; -App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; -App::$strings["Permissions denied."] = "Permisos denegados."; -App::$strings["Import"] = "Importar"; -App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; -App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; -App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; -App::$strings["Room not found"] = "Sala no encontrada"; -App::$strings["Leave Room"] = "Abandonar la sala"; -App::$strings["Delete Room"] = "Eliminar esta sala"; -App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; -App::$strings["I am online"] = "Estoy conectado/a"; -App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; -App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; -App::$strings["Encrypt text"] = "Cifrar texto"; +App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; +App::$strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; +App::$strings["Could not create table."] = "No se puede crear la tabla."; +App::$strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Verificación del sistema"; +App::$strings["Next"] = "Siguiente"; +App::$strings["Check again"] = "Verificar de nuevo"; +App::$strings["Database connection"] = "Conexión a la base de datos"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."; +App::$strings["Database Server Name"] = "Nombre del servidor de base de datos"; +App::$strings["Default is 127.0.0.1"] = "De forma predeterminada es 127.0.0.1"; +App::$strings["Database Port"] = "Puerto de la base de datos"; +App::$strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - use 0 como valor por defecto"; +App::$strings["Database Login Name"] = "Usuario de la base de datos"; +App::$strings["Database Login Password"] = "Contraseña de acceso a la base de datos"; +App::$strings["Database Name"] = "Nombre de la base de datos"; +App::$strings["Database Type"] = "Tipo de base de datos"; +App::$strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."; +App::$strings["Website URL"] = "Dirección del sitio web"; +App::$strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible."; +App::$strings["Please select a default timezone for your website"] = "Por favor, selecciones el huso horario por defecto de su sitio web"; +App::$strings["Basic/Minimal Social Networking"] = "Red social básica o mínima"; +App::$strings["Standard Configuration (default)"] = "Configuración estándar (por defecto)"; +App::$strings["Professional"] = "Profesional"; +App::$strings["Site settings"] = "Ajustes del sitio"; +App::$strings["Server Configuration/Role"] = "Configuración del servidor"; +App::$strings["PHP version 5.5 or greater is required."] = "Se requiere la versión 5.5, o superior, de PHP."; +App::$strings["PHP version"] = "Versión de PHP"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web."; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron."; +App::$strings["PHP executable path"] = "Ruta del ejecutable PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."; +App::$strings["Command line PHP"] = "PHP en línea de comandos"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."; +App::$strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la transmisión de mensajes."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez."; +App::$strings["You can adjust these settings in the servers php.ini."] = "Puede ajustar estos valores en el fichero php.ini de su servidor."; +App::$strings["PHP upload limits"] = "Límites PHP de subida"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Generar claves de cifrado"; +App::$strings["libCurl PHP module"] = "módulo libCurl PHP"; +App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics"; +App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; +App::$strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres"; +App::$strings["mb_string PHP module"] = "módulo PHP mb_string"; +App::$strings["xml PHP module"] = "módulo PHP xml"; +App::$strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite "; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; +App::$strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado."; +App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado."; +App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; +App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."; +App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos."; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla."; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP."; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal."; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)."; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene."; +App::$strings["%s is writable"] = "%s tiene permisos de escritura"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior"; +App::$strings["store is writable"] = "\"store\" tiene permisos de escritura"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."; +App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo."; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor."; +App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web."; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor."; +App::$strings["SSL certificate validation"] = "validación del certificado SSL"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"; +App::$strings["Url rewrite is working"] = "La reescritura de las direcciones funciona correctamente"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor."; +App::$strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; +App::$strings["

    What next

    "] = "

    Siguiente paso

    "; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; +App::$strings["%d rating"] = array( + 0 => "%d valoración", + 1 => "%d valoraciones", +); +App::$strings["Gender: "] = "Género:"; +App::$strings["Status: "] = "Estado:"; +App::$strings["Homepage: "] = "Página personal:"; +App::$strings["Age:"] = "Edad:"; +App::$strings["Location:"] = "Ubicación:"; +App::$strings["Description:"] = "Descripción:"; +App::$strings["Hometown:"] = "Lugar de nacimiento:"; +App::$strings["About:"] = "Sobre mí:"; +App::$strings["Connect"] = "Conectar"; +App::$strings["Public Forum:"] = "Foro público:"; +App::$strings["Keywords: "] = "Palabras clave:"; +App::$strings["Don't suggest"] = "No sugerir:"; +App::$strings["Common connections:"] = "Conexiones comunes:"; +App::$strings["Global Directory"] = "Directorio global:"; +App::$strings["Local Directory"] = "Directorio local:"; +App::$strings["Finding:"] = "Encontrar:"; +App::$strings["Channel Suggestions"] = "Sugerencias de canales"; +App::$strings["next page"] = "siguiente página"; +App::$strings["previous page"] = "página anterior"; +App::$strings["Sort options"] = "Ordenar opciones"; +App::$strings["Alphabetic"] = "Alfabético"; +App::$strings["Reverse Alphabetic"] = "Alfabético inverso"; +App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo"; +App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; +App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; +App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; +App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; +App::$strings["Item not found"] = "Elemento no encontrado"; +App::$strings["Block Name"] = "Nombre del bloque"; App::$strings["Insert web link"] = "Insertar enlace web"; -App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; -App::$strings["New Chatroom"] = "Nueva sala de chat"; -App::$strings["Chatroom name"] = "Nombre de la sala de chat"; -App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; -App::$strings["Permissions"] = "Permisos"; -App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; -App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; -App::$strings["Create New"] = "Crear"; -App::$strings["Expiration"] = "Caducidad"; -App::$strings["min"] = "min"; -App::$strings["Invalid message"] = "Mensaje no válido"; -App::$strings["no results"] = "sin resultados"; -App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; -App::$strings["queued"] = "encolado"; -App::$strings["posted"] = "enviado"; -App::$strings["accepted for delivery"] = "aceptado para el envío"; -App::$strings["updated"] = "actualizado"; -App::$strings["update ignored"] = "actualización ignorada"; -App::$strings["permission denied"] = "permiso denegado"; -App::$strings["recipient not found"] = "destinatario no encontrado"; -App::$strings["mail recalled"] = "mensaje de correo revocado"; -App::$strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; -App::$strings["mail delivered"] = "correo enviado"; -App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; -App::$strings["Options"] = "Opciones"; -App::$strings["Redeliver"] = "Volver a enviar"; +App::$strings["Title (optional)"] = "Título (opcional)"; +App::$strings["Edit Block"] = "Modificar este bloque"; App::$strings["Layout Name"] = "Nombre de la plantilla"; App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; App::$strings["Edit Layout"] = "Modificar la plantilla"; App::$strings["Page link"] = "Enlace de la página"; App::$strings["Edit Webpage"] = "Editar la página web"; -App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; -App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; -App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; -App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; -App::$strings["Create a group of channels."] = "Crear un grupo de canales."; -App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; -App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; -App::$strings["Privacy group removed."] = "Grupo de canales eliminado."; -App::$strings["Unable to remove privacy group."] = "Imposible eliminar el grupo de canales."; -App::$strings["Privacy group editor"] = "Editor de grupos de canales"; -App::$strings["Members"] = "Miembros"; -App::$strings["All Connected Channels"] = "Todos los canales conectados"; -App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; +App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; +App::$strings["Unable to create menu."] = "No se puede crear el menú."; +App::$strings["Menu Name"] = "Nombre del menú"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; +App::$strings["Menu Title"] = "Título del menú"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; +App::$strings["Allow Bookmarks"] = "Permitir marcadores"; +App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; +App::$strings["Submit and proceed"] = "Enviar y proceder"; +App::$strings["Menus"] = "Menús"; +App::$strings["Drop"] = "Eliminar"; +App::$strings["Created"] = "Creado"; +App::$strings["Edited"] = "Editado"; +App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; +App::$strings["Delete this menu"] = "Borrar este menú"; +App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; +App::$strings["Edit this menu"] = "Modificar este menú"; +App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; +App::$strings["Menu not found."] = "Menú no encontrado"; +App::$strings["Edit Menu"] = "Modificar el menú"; +App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; +App::$strings["Menu name"] = "Nombre del menú"; +App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; +App::$strings["Menu title"] = "Título del menú"; +App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; +App::$strings["Allow bookmarks"] = "Permitir marcadores"; +App::$strings["Not found."] = "No encontrado."; App::$strings["App installed."] = "Aplicación instalada."; App::$strings["Malformed app."] = "Aplicación con errores"; App::$strings["Embed code"] = "Código incorporado"; App::$strings["Edit App"] = "Modificar la aplicación"; App::$strings["Create App"] = "Crear una aplicación"; App::$strings["Name of app"] = "Nombre de la aplicación"; +App::$strings["Required"] = "Obligatorio"; App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; +App::$strings["Description"] = "Descripción"; App::$strings["Photo icon URL"] = "Dirección del icono"; App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -App::$strings["Categories (optional, comma separated list)"] = "Categorías (opcional, lista separada por comas)"; +App::$strings["Categories (optional, comma separated list)"] = "Temas (opcional, lista separada por comas)"; App::$strings["Version ID"] = "Versión"; App::$strings["Price of app"] = "Precio de la aplicación"; App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; @@ -406,11 +401,14 @@ App::$strings["Module Name:"] = "Nombre del módulo:"; App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; -App::$strings["network"] = "red"; -App::$strings["RSS"] = "RSS"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenido a %s"; +App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; +App::$strings["Visible to:"] = "Visible para:"; App::$strings["Permission Denied."] = "Permiso denegado"; App::$strings["File not found."] = "Fichero no encontrado."; App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; +App::$strings["Permissions"] = "Permisos"; App::$strings["Set/edit permissions"] = "Establecer/editar los permisos"; App::$strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas"; App::$strings["Return to file list"] = "Volver a la lista de ficheros"; @@ -419,130 +417,190 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pega App::$strings["Share this file"] = "Compartir este fichero"; App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; App::$strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero"; -App::$strings["Layouts"] = "Plantillas"; -App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; -App::$strings["Layout Description"] = "Descripción de la plantilla"; -App::$strings["Created"] = "Creado"; -App::$strings["Edited"] = "Editado"; -App::$strings["Share"] = "Compartir"; -App::$strings["Download PDL file"] = "Descargar el fichero PDL"; -App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; -App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; -App::$strings["Invalid request."] = "Solicitud incorrecta."; -App::$strings["channel"] = "el canal"; -App::$strings["thing"] = "elemento"; -App::$strings["Channel unavailable."] = "Canal no disponible."; -App::$strings["Previous action reversed."] = "Acción anterior revocada."; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "el mensaje de estado"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; -App::$strings["Action completed."] = "Acción completada."; -App::$strings["Thank you."] = "Gracias."; -App::$strings["Profile not found."] = "Perfil no encontrado."; -App::$strings["Profile deleted."] = "Perfil eliminado."; -App::$strings["Profile-"] = "Perfil-"; -App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; -App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; -App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; -App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; -App::$strings["Marital Status"] = "Estado civil"; -App::$strings["Romantic Partner"] = "Pareja sentimental"; -App::$strings["Likes"] = "Me gusta"; -App::$strings["Dislikes"] = "No me gusta"; -App::$strings["Work/Employment"] = "Trabajo:"; -App::$strings["Religion"] = "Religión"; -App::$strings["Political Views"] = "Ideas políticas"; -App::$strings["Sexual Preference"] = "Preferencia sexual"; -App::$strings["Homepage"] = "Página personal"; -App::$strings["Interests"] = "Intereses"; -App::$strings["Address"] = "Dirección"; -App::$strings["Profile updated."] = "Perfil actualizado."; -App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; -App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; -App::$strings["View this profile"] = "Ver este perfil"; -App::$strings["Edit visibility"] = "Editar visibilidad"; -App::$strings["Profile Tools"] = "Gestión del perfil"; -App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; -App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; -App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; -App::$strings["Clone this profile"] = "Clonar este perfil"; -App::$strings["Delete this profile"] = "Eliminar este perfil"; -App::$strings["Add profile things"] = "Añadir cosas al perfil"; -App::$strings["Personal"] = "Personales"; -App::$strings["Relation"] = "Relación"; -App::$strings["Miscellaneous"] = "Varios"; -App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; -App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; -App::$strings["Your gender"] = "Género"; -App::$strings["Marital status"] = "Estado civil"; -App::$strings["Sexual preference"] = "Preferencia sexual"; -App::$strings["Profile name"] = "Nombre del perfil"; -App::$strings["This is your default profile."] = "Este es su perfil principal."; -App::$strings["Your full name"] = "Nombre completo"; -App::$strings["Title/Description"] = "Título o descripción"; -App::$strings["Street address"] = "Dirección"; -App::$strings["Locality/City"] = "Ciudad"; -App::$strings["Region/State"] = "Región o Estado"; -App::$strings["Postal/Zip code"] = "Código postal"; -App::$strings["Country"] = "País"; -App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; -App::$strings["Since (date)"] = "Desde (fecha)"; -App::$strings["Tell us about yourself"] = "Háblenos de usted"; -App::$strings["Hometown"] = "Lugar de nacimiento"; -App::$strings["Political views"] = "Ideas políticas"; -App::$strings["Religious views"] = "Creencias religiosas"; -App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; -App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; -App::$strings["Musical interests"] = "Preferencias musicales"; -App::$strings["Books, literature"] = "Libros, literatura"; -App::$strings["Television"] = "Televisión"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; -App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; -App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; -App::$strings["School/Education"] = "Estudios"; -App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; -App::$strings["My other channels"] = "Mis otros canales"; -App::$strings["Profile Image"] = "Imagen del perfil"; -App::$strings["Edit Profiles"] = "Editar perfiles"; -App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; -App::$strings["Nothing to import."] = "No hay nada para importar."; -App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; -App::$strings["Imported file is empty."] = "El fichero importado está vacío."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; -App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; -App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; -App::$strings["Import completed."] = "Importación completada."; -App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; -App::$strings["Import Channel"] = "Importar canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación."; -App::$strings["File to Upload"] = "Fichero para subir"; -App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; -App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; -App::$strings["Your old login password"] = "Su antigua contraseña"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."; -App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenido a %s"; -App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; -App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada."; -App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; -App::$strings["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada."; -App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar."; -App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; +App::$strings["Name is required"] = "El nombre es obligatorio"; +App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; +App::$strings["Update"] = "Actualizar"; +App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens"; +App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña."; +App::$strings["Token saved."] = "Token salvado."; +App::$strings["Not valid email."] = "Correo electrónico no válido."; +App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; +App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; +App::$strings["Password verification failed."] = "La comprobación de la contraseña ha fallado."; +App::$strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; +App::$strings["Password changed."] = "Contraseña cambiada."; +App::$strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo."; +App::$strings["Friends"] = "Amigos/as"; +App::$strings["Settings updated."] = "Ajustes actualizados."; +App::$strings["Add application"] = "Añadir aplicación"; +App::$strings["Name of application"] = "Nombre de la aplicación"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Redirect"] = "Redirigir"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; +App::$strings["Icon url"] = "Dirección del icono"; +App::$strings["Optional"] = "Opcional"; +App::$strings["Application not found."] = "Aplicación no encontrada."; +App::$strings["Connected Apps"] = "Aplicaciones (apps) conectadas"; +App::$strings["Client key starts with"] = "La \"client key\" empieza por"; +App::$strings["No name"] = "Sin nombre"; +App::$strings["Remove authorization"] = "Eliminar autorización"; +App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; +App::$strings["Feature/Addon Settings"] = "Ajustes de los complementos"; +App::$strings["Account Settings"] = "Configuración de la cuenta"; +App::$strings["Current Password"] = "Contraseña actual"; +App::$strings["Enter New Password"] = "Escribir una nueva contraseña"; +App::$strings["Confirm New Password"] = "Confirmar la nueva contraseña"; +App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseña a menos que desee cambiarla."; +App::$strings["Email Address:"] = "Dirección de correo electrónico:"; +App::$strings["Remove Account"] = "Eliminar cuenta"; +App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "; +App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados"; +App::$strings["Login Name"] = "Nombre de inicio de sesión"; +App::$strings["Login Password"] = "Contraseña de inicio de sesión"; +App::$strings["Expires (yyyy-mm-dd)"] = "Expira (aaaa-mm-dd)"; +App::$strings["Their Settings"] = "Sus ajustes"; +App::$strings["My Settings"] = "Mis ajustes"; +App::$strings["inherited"] = "heredado"; +App::$strings["Individual Permissions"] = "Permisos individuales"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; +App::$strings["Off"] = "Desactivado"; +App::$strings["On"] = "Activado"; +App::$strings["Additional Features"] = "Funcionalidades"; +App::$strings["Connector Settings"] = "Configuración del conector"; +App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; +App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; +App::$strings["mobile"] = "móvil"; +App::$strings["Display Settings"] = "Ajustes de visualización"; +App::$strings["Theme Settings"] = "Ajustes del tema"; +App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; +App::$strings["Content Settings"] = "Ajustes del contenido"; +App::$strings["Display Theme:"] = "Tema gráfico del perfil:"; +App::$strings["Select scheme"] = "Elegir un esquema"; +App::$strings["Mobile Theme:"] = "Tema para el móvil:"; +App::$strings["Preload images before rendering the page"] = "Carga previa de las imágenes antes de generar la página"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."; +App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; +App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo"; +App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:"; +App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos"; +App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes"; +App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; +App::$strings["System Page Layout Editor - (advanced)"] = "Editor de plantilla de página del sistema - (avanzado)"; +App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; +App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; +App::$strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog"; +App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; +App::$strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura"; +App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)"; +App::$strings["Nobody except yourself"] = "Nadie excepto usted"; +App::$strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; +App::$strings["Approved connections"] = "Conexiones aprobadas"; +App::$strings["Any connections"] = "Cualquier conexión"; +App::$strings["Anybody on this website"] = "Cualquiera en este sitio web"; +App::$strings["Anybody in this network"] = "Cualquiera en esta red"; +App::$strings["Anybody authenticated"] = "Cualquiera que esté autenticado"; +App::$strings["Anybody on the internet"] = "Cualquiera en internet"; +App::$strings["Publish your default profile in the network directory"] = "Publicar su perfil principal en el directorio de la red"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"; +App::$strings["Your channel address is"] = "Su dirección de canal es"; +App::$strings["Channel Settings"] = "Ajustes del canal"; +App::$strings["Basic Settings"] = "Configuración básica"; +App::$strings["Full Name:"] = "Nombre completo:"; +App::$strings["Your Timezone:"] = "Su huso horario:"; +App::$strings["Default Post Location:"] = "Localización geográfica predeterminada para sus publicaciones:"; +App::$strings["Geographical location to display on your posts"] = "Localización geográfica que debe mostrarse en sus publicaciones"; +App::$strings["Use Browser Location:"] = "Usar la localización geográfica del navegador:"; +App::$strings["Adult Content"] = "Contenido solo para adultos"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"; +App::$strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar"; +App::$strings["Hide my online presence"] = "Ocultar mi presencia en línea"; +App::$strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea"; +App::$strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Muy Público - extremadamente permisivo (debería ser usado con precaución)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"; +App::$strings["Private - default private, never open or public"] = "Privado - por defecto, privado, nunca abierto o público"; +App::$strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por defecto, bloqueado/a para cualquiera"; +App::$strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."; +App::$strings["Advanced Privacy Settings"] = "Configuración de privacidad avanzada"; +App::$strings["Expire other channel content after this many days"] = "Caducar contenido de otros canales después de este número de días"; +App::$strings["0 or blank to use the website limit."] = "0 o en blanco para usar el límite del sitio web."; +App::$strings["This website expires after %d days."] = "Este sitio web caduca después de %d días."; +App::$strings["This website does not expire imported content."] = "Este sitio web no caduca el contenido importado."; +App::$strings["The website limit takes precedence if lower than your limit."] = "El límite del sitio web tiene prioridad si es inferior a su propio límite."; +App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; +App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; +App::$strings["Default Post and Publish Permissions"] = "Permisos predeterminados de entradas y publicaciones"; +App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; +App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; +App::$strings["Channel permissions category:"] = "Categoría de los permisos del canal:"; +App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; +App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; +App::$strings["Notification Settings"] = "Configuración de las notificaciones"; +App::$strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:"; +App::$strings["accepting a friend request"] = "Acepte una solicitud de amistad"; +App::$strings["joining a forum/community"] = "al unirse a un foro o comunidad"; +App::$strings["making an interesting profile change"] = "Realice un cambio interesante en su perfil"; +App::$strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:"; +App::$strings["You receive a connection request"] = "Reciba una solicitud de conexión"; +App::$strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas"; +App::$strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (\"muro\")"; +App::$strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones"; +App::$strings["You receive a private message"] = "Reciba un mensaje privado"; +App::$strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; +App::$strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; +App::$strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una publicación"; +App::$strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; +App::$strings["Unseen grid activity"] = "Nueva actividad en la red"; +App::$strings["Unseen channel activity"] = "Actividad no vista en el canal"; +App::$strings["Unseen private messages"] = "Mensajes privados no leídos"; +App::$strings["Recommended"] = "Recomendado"; +App::$strings["Upcoming events"] = "Próximos eventos"; +App::$strings["Events today"] = "Eventos de hoy"; +App::$strings["Upcoming birthdays"] = "Próximos cumpleaños"; +App::$strings["Not available in all themes"] = "No disponible en todos los temas"; +App::$strings["System (personal) notifications"] = "Notificaciones del sistema (personales)"; +App::$strings["System info messages"] = "Mensajes de información del sistema"; +App::$strings["System critical alerts"] = "Alertas críticas del sistema"; +App::$strings["New connections"] = "Nuevas conexiones"; +App::$strings["System Registrations"] = "Registros del sistema"; +App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones"; +App::$strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación"; +App::$strings["Must be greater than 0"] = "Debe ser mayor que 0"; +App::$strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página"; +App::$strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales"; +App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!."; +App::$strings["Miscellaneous Settings"] = "Ajustes diversos"; +App::$strings["Default photo upload folder"] = "Carpeta por defecto de las fotos subidas"; +App::$strings["%Y - current year, %m - current month"] = "%Y - año en curso, %m - mes actual"; +App::$strings["Default file upload folder"] = "Carpeta por defecto de los archivos subidos"; +App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; +App::$strings["Remove Channel"] = "Eliminar el canal"; +App::$strings["Remove this channel."] = "Eliminar este canal."; +App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname"; +App::$strings["Start calendar week on monday"] = "Comenzar el calendario semanal por el lunes"; +App::$strings["network"] = "red"; +App::$strings["RSS"] = "RSS"; +App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; +App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; +App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; +App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; +App::$strings["Create a group of channels."] = "Crear un grupo de canales."; +App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; +App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; +App::$strings["Privacy group removed."] = "Grupo de canales eliminado."; +App::$strings["Unable to remove privacy group."] = "No se puede eliminar el grupo de canales."; +App::$strings["Privacy group editor"] = "Editor de grupos de canales"; +App::$strings["Members"] = "Miembros"; +App::$strings["All Connected Channels"] = "Todos los canales conectados"; +App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; App::$strings["Profile Photos"] = "Fotos del perfil"; App::$strings["Album not found."] = "Álbum no encontrado."; @@ -570,6 +628,7 @@ App::$strings["Photo not available"] = "Foto no disponible"; App::$strings["Use as profile photo"] = "Usar como foto del perfil"; App::$strings["Use as cover photo"] = "Usar como imagen de portada del perfil"; App::$strings["Private Photo"] = "Foto privada"; +App::$strings["Previous"] = "Anterior"; App::$strings["View Full Size"] = "Ver tamaño completo"; App::$strings["Remove"] = "Eliminar"; App::$strings["Edit photo"] = "Editar foto"; @@ -583,9 +642,11 @@ App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @ App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; App::$strings["I like this (toggle)"] = "Me gusta (cambiar)"; App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; +App::$strings["Share"] = "Compartir"; App::$strings["Please wait"] = "Espere por favor"; App::$strings["This is you"] = "Este es usted"; App::$strings["Comment"] = "Comentar"; +App::$strings["Preview"] = "Previsualizar"; App::$strings["__ctx:title__ Likes"] = "Me gusta"; App::$strings["__ctx:title__ Dislikes"] = "No me gusta"; App::$strings["__ctx:title__ Agree"] = "De acuerdo"; @@ -611,13 +672,22 @@ App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; App::$strings["Close"] = "Cerrar"; App::$strings["View Album"] = "Ver álbum"; App::$strings["Recent Photos"] = "Fotos recientes"; -App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; -App::$strings["Visible to:"] = "Visible para:"; -App::$strings["Import completed"] = "Importación completada"; -App::$strings["Import Items"] = "Importar elementos"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."; -App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; -App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; +App::$strings["webpage"] = "página web"; +App::$strings["block"] = "bloque"; +App::$strings["layout"] = "plantilla"; +App::$strings["menu"] = "menú"; +App::$strings["%s element installed"] = "%s elemento instalado"; +App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; +App::$strings["Nothing to import."] = "No hay nada para importar."; +App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; +App::$strings["Imported file is empty."] = "El fichero importado está vacío."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; +App::$strings["Import completed"] = "Importación completada"; +App::$strings["Import Items"] = "Importar elementos"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."; +App::$strings["File to Upload"] = "Fichero para subir"; +App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; +App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; App::$strings["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; @@ -638,41 +708,40 @@ App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; App::$strings["Location not found."] = "Dirección no encontrada."; App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; -App::$strings["Syncing locations"] = "Sincronización de ubicaciones"; +App::$strings["Syncing locations"] = "Sincronizando ubicaciones"; App::$strings["No locations found."] = "No encontrada ninguna dirección."; App::$strings["Manage Channel Locations"] = "Gestionar las direcciones del canal"; +App::$strings["Address"] = "Dirección"; App::$strings["Primary"] = "Primario"; -App::$strings["Drop"] = "Eliminar"; App::$strings["Sync Now"] = "Sincronizar ahora"; App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; App::$strings["Hub not found."] = "Servidor no encontrado"; -App::$strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; -App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; -App::$strings["Messages"] = "Mensajes"; -App::$strings["Message recalled."] = "Mensaje revocado."; -App::$strings["Conversation removed."] = "Conversación eliminada."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; -App::$strings["Send Private Message"] = "Enviar un mensaje privado"; -App::$strings["To:"] = "Para:"; -App::$strings["Subject:"] = "Asunto:"; -App::$strings["Attach file"] = "Adjuntar fichero"; -App::$strings["Send"] = "Enviar"; -App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; -App::$strings["Delete message"] = "Borrar mensaje"; -App::$strings["Delivery report"] = "Informe de transmisión"; -App::$strings["Recall message"] = "Revocar el mensaje"; -App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; -App::$strings["Delete Conversation"] = "Eliminar conversación"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; -App::$strings["Send Reply"] = "Responder"; -App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; +App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; +App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; +App::$strings["Invalid request."] = "Solicitud incorrecta."; +App::$strings["channel"] = "el canal"; +App::$strings["thing"] = "elemento"; +App::$strings["Channel unavailable."] = "Canal no disponible."; +App::$strings["Previous action reversed."] = "Acción anterior revocada."; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "el mensaje de estado"; +App::$strings["event"] = "evento"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; +App::$strings["Action completed."] = "Acción completada."; +App::$strings["Thank you."] = "Gracias."; App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; App::$strings["Create a new channel"] = "Crear un nuevo canal"; +App::$strings["Create New"] = "Crear"; App::$strings["Channel Manager"] = "Administración de canales"; App::$strings["Current Channel"] = "Canal actual"; App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; @@ -681,70 +750,10 @@ App::$strings["Make Default"] = "Convertir en predeterminado"; App::$strings["%d new messages"] = "%d mensajes nuevos"; App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; App::$strings["Delegated Channel"] = "Canal delegado"; -App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; -App::$strings["Unable to create menu."] = "No se puede crear el menú."; -App::$strings["Menu Name"] = "Nombre del menú"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; -App::$strings["Menu Title"] = "Título del menú"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; -App::$strings["Allow Bookmarks"] = "Permitir marcadores"; -App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; -App::$strings["Submit and proceed"] = "Enviar y proceder"; -App::$strings["Menus"] = "Menús"; -App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; -App::$strings["Delete this menu"] = "Borrar este menú"; -App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; -App::$strings["Edit this menu"] = "Modificar este menú"; -App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; -App::$strings["Menu not found."] = "Menú no encontrado"; -App::$strings["Edit Menu"] = "Modificar el menú"; -App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; -App::$strings["Menu name"] = "Nombre del menú"; -App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; -App::$strings["Menu title"] = "Título del menú"; -App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; -App::$strings["Allow bookmarks"] = "Permitir marcadores"; -App::$strings["Not found."] = "No encontrado."; -App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; -App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; -App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; -App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; -App::$strings["Password Reset"] = "Restablecer la contraseña"; -App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; -App::$strings["Your new password is"] = "Su nueva contraseña es"; -App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; -App::$strings["click here to login"] = "pulse aquí para conectarse"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; -App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; -App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; -App::$strings["Email Address"] = "Dirección de correo electrónico"; -App::$strings["Reset"] = "Reiniciar"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; -App::$strings["Mood"] = "Estado de ánimo"; -App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; -App::$strings["No such group"] = "No se encuentra el grupo"; -App::$strings["No such channel"] = "No se encuentra el canal"; -App::$strings["forum"] = "foro"; -App::$strings["Search Results For:"] = "Buscar resultados para:"; -App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; -App::$strings["Privacy group: "] = "Grupo de canales: "; -App::$strings["Invalid connection."] = "Conexión no válida."; -App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; -App::$strings["System Notifications"] = "Notificaciones del sistema"; -App::$strings["Profile Match"] = "Perfil compatible"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; -App::$strings["is interested in:"] = "está interesado en:"; -App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; -App::$strings["Posts and comments"] = "Publicaciones y comentarios"; -App::$strings["Only posts"] = "Solo publicaciones"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; -App::$strings["Unable to create element."] = "Imposible crear el elemento."; +App::$strings["Unable to create element."] = "No se puede crear el elemento."; App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; -App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; App::$strings["Link Name"] = "Nombre del enlace"; App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; @@ -790,7 +799,6 @@ App::$strings["Repository version (master)"] = "Versión del repositorio (master App::$strings["Repository version (dev)"] = "Versión del repositorio (dev)"; App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; App::$strings["Default"] = "Predeterminado"; -App::$strings["mobile"] = "móvil"; App::$strings["experimental"] = "experimental"; App::$strings["unsupported"] = "no soportado"; App::$strings["Yes - with approval"] = "Sí - con aprobación"; @@ -799,7 +807,6 @@ App::$strings["My site has paid access only"] = "Mi sitio es un servicio de pago App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; App::$strings["Site"] = "Sitio"; -App::$strings["Registration"] = "Registro"; App::$strings["File upload"] = "Subir fichero"; App::$strings["Policies"] = "Políticas"; App::$strings["Advanced"] = "Avanzado"; @@ -860,8 +867,6 @@ App::$strings["Maximum Load Average"] = "Carga media máxima"; App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50."; App::$strings["Expiration period in days for imported (grid/network) content"] = "Caducidad del contenido importado de otros sitios (en días)"; App::$strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; -App::$strings["Off"] = "Desactivado"; -App::$strings["On"] = "Activado"; App::$strings["Lock feature %s"] = "Bloquear la funcionalidad %s"; App::$strings["Manage Additional Features"] = "Gestionar las funcionalidades"; App::$strings["No server found"] = "Servidor no encontrado"; @@ -920,8 +925,11 @@ App::$strings["Accounts"] = "Cuentas"; App::$strings["select all"] = "seleccionar todo"; App::$strings["Registrations waiting for confirm"] = "Inscripciones en espera de confirmación"; App::$strings["Request date"] = "Fecha de solicitud"; +App::$strings["Email"] = "Correo electrónico"; App::$strings["No registrations."] = "Sin registros."; App::$strings["Deny"] = "Rechazar"; +App::$strings["Block"] = "Bloquear"; +App::$strings["Unblock"] = "Desbloquear"; App::$strings["All Channels"] = "Todos los canales"; App::$strings["Register date"] = "Fecha de registro"; App::$strings["Last login"] = "Último acceso"; @@ -968,6 +976,7 @@ App::$strings["Maintainer: "] = "Mantenedor:"; App::$strings["Minimum project version: "] = "Versión mínima del proyecto:"; App::$strings["Maximum project version: "] = "Versión máxima del proyecto:"; App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:"; +App::$strings["Compatible Server Roles: "] = "Configuraciones compatibles con este servidor:"; App::$strings["Requires: "] = "Se requiere:"; App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles"; App::$strings["Enter the public git repository URL of the plugin repo."] = "Escriba la URL pública del repositorio git del plugin."; @@ -980,7 +989,6 @@ App::$strings["Install"] = "Instalar"; App::$strings["Manage Repos"] = "Gestionar los repositorios"; App::$strings["Installed Plugin Repositories"] = "Repositorios de los plugins instalados"; App::$strings["Install a New Plugin Repository"] = "Instalar un nuevo repositorio de plugins"; -App::$strings["Update"] = "Actualizar"; App::$strings["Switch branch"] = "Cambiar la rama"; App::$strings["No themes found."] = "No se han encontrado temas."; App::$strings["Screenshot"] = "Instantánea de pantalla"; @@ -1011,863 +1019,618 @@ App::$strings["(In addition to basic fields)"] = "(Además de los campos básico App::$strings["All available fields"] = "Todos los campos disponibles"; App::$strings["Custom Fields"] = "Campos personalizados"; App::$strings["Create Custom Field"] = "Crear un campo personalizado"; -App::$strings["Name or caption"] = "Nombre o descripción"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; -App::$strings["Choose a short nickname"] = "Elija un alias corto"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; -App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; -App::$strings["Select a channel role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; -App::$strings["Read more about roles"] = "Leer más sobre los roles"; -App::$strings["Create Channel"] = "Crear un canal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; -App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; -App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; -App::$strings["added your channel"] = "añadió este canal a sus conexiones"; -App::$strings["g A l F d"] = "g A l d F"; -App::$strings["[today]"] = "[hoy]"; -App::$strings["posted an event"] = "publicó un evento"; -App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; -App::$strings["Discard"] = "Descartar"; -App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; -App::$strings["Poke"] = "Toques y otras cosas"; -App::$strings["Poke somebody"] = "Dar un toque a alguien"; -App::$strings["Poke/Prod"] = "Toque/Incitación"; -App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; -App::$strings["Recipient"] = "Destinatario"; -App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; -App::$strings["Make this post private"] = "Convertir en privado este envío"; -App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; -App::$strings["Post successful."] = "Enviado con éxito."; -App::$strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; -App::$strings["Login failed."] = "El acceso ha fallado."; -App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; -App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; -App::$strings["Visible To"] = "Visible para"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; -App::$strings["Configuration Editor"] = "Editor de configuración"; -App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; -App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; -App::$strings["Version %s"] = "Versión %s"; -App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; -App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; -App::$strings["Tag: "] = "Etiqueta:"; -App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; -App::$strings["Current load average: "] = "Carga media actual:"; -App::$strings["Running at web location"] = "Corriendo en el sitio web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; -App::$strings["\$projectname issues"] = "Problemas en \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; -App::$strings["Site Administrators"] = "Administradores del sitio"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita."; -App::$strings["The error message was:"] = "El mensaje de error fue:"; -App::$strings["Authentication failed."] = "Falló la autenticación."; -App::$strings["Remote Authentication"] = "Acceso desde su servidor"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; -App::$strings["Authenticate"] = "Acceder"; -App::$strings["Public Hubs"] = "Servidores públicos"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; -App::$strings["Hub URL"] = "Dirección del hub"; -App::$strings["Access Type"] = "Tipo de acceso"; -App::$strings["Registration Policy"] = "Normas de registro"; -App::$strings["Stats"] = "Estadísticas"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valoraciones"; -App::$strings["Rate"] = "Valorar"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; -App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; -App::$strings["Block Name"] = "Nombre del bloque"; -App::$strings["Blocks"] = "Bloques"; -App::$strings["Block Title"] = "Título del bloque"; -App::$strings["Website:"] = "Sitio web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; -App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; -App::$strings["No ratings"] = "Ninguna valoración"; -App::$strings["Rating: "] = "Valoración:"; -App::$strings["Website: "] = "Sitio web:"; -App::$strings["Description: "] = "Descripción:"; -App::$strings["Apps"] = "Aplicaciones (apps)"; -App::$strings["Title (optional)"] = "Título (opcional)"; -App::$strings["Edit Block"] = "Modificar este bloque"; -App::$strings["No channel."] = "Ningún canal."; -App::$strings["Common connections"] = "Conexiones comunes"; -App::$strings["No connections in common."] = "Ninguna conexión en común."; -App::$strings["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; -App::$strings["Save Bookmark"] = "Guardar marcador"; -App::$strings["URL of bookmark"] = "Dirección del marcador"; -App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; -App::$strings["Passwords do not match."] = "Las contraseñas no coinciden."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; -App::$strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; -App::$strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; -App::$strings["Registration on this hub is disabled."] = "El registro está deshabilitado en este sitio."; -App::$strings["Registration on this hub is by approval only."] = "El registro en este hub está sometido a aprobación previa."; -App::$strings["Register at another affiliated hub."] = "Registrarse en otro hub afiliado."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana."; -App::$strings["Terms of Service"] = "Términos del servicio"; -App::$strings["I accept the %s for this website"] = "Acepto los %s de este sitio"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Tengo más de 13 años de edad y acepto los %s de este sitio"; -App::$strings["Your email address"] = "Su dirección de correo electrónico"; -App::$strings["Choose a password"] = "Elija una contraseña"; -App::$strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña"; -App::$strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación"; -App::$strings["no"] = "no"; -App::$strings["yes"] = "sí"; -App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; -App::$strings["Register"] = "Registrarse"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones."; -App::$strings["Please login."] = "Por favor, inicie sesión."; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; -App::$strings["Remove This Account"] = "Eliminar esta cuenta"; -App::$strings["WARNING: "] = "ATENCIÓN:"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Esta cuenta y todos sus canales van a ser eliminados de la red."; -App::$strings["This action is permanent and can not be undone!"] = "¡Esta acción tiene carácter definitivo y no se puede deshacer!"; -App::$strings["Please enter your password for verification:"] = "Por favor, introduzca su contraseña para su verificación:"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red"; -App::$strings["Remove Account"] = "Eliminar cuenta"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; -App::$strings["Remove This Channel"] = "Eliminar este canal"; -App::$strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red."; -App::$strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; -App::$strings["Remove Channel"] = "Eliminar el canal"; -App::$strings["Export Channel"] = "Exportar el canal"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; -App::$strings["Export Content"] = "Exportar contenidos"; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."; -App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; -App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; -App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; -App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; -App::$strings["Name is required"] = "El nombre es obligatorio"; -App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; -App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens"; -App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña."; -App::$strings["Token saved."] = "Token salvado."; -App::$strings["Not valid email."] = "Correo electrónico no válido."; -App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; -App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; -App::$strings["Password verification failed."] = "La comprobación de la contraseña ha fallado."; -App::$strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; -App::$strings["Password changed."] = "Contraseña cambiada."; -App::$strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo."; -App::$strings["Settings updated."] = "Ajustes actualizados."; -App::$strings["Add application"] = "Añadir aplicación"; -App::$strings["Name of application"] = "Nombre de la aplicación"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Redirigir"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; -App::$strings["Icon url"] = "Dirección del icono"; -App::$strings["Optional"] = "Opcional"; -App::$strings["Application not found."] = "Aplicación no encontrada."; -App::$strings["Connected Apps"] = "Aplicaciones (apps) conectadas"; -App::$strings["Client key starts with"] = "La \"client key\" empieza por"; -App::$strings["No name"] = "Sin nombre"; -App::$strings["Remove authorization"] = "Eliminar autorización"; -App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; -App::$strings["Feature/Addon Settings"] = "Ajustes de los complementos"; -App::$strings["Account Settings"] = "Configuración de la cuenta"; -App::$strings["Current Password"] = "Contraseña actual"; -App::$strings["Enter New Password"] = "Escribir una nueva contraseña"; -App::$strings["Confirm New Password"] = "Confirmar la nueva contraseña"; -App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseña a menos que desee cambiarla."; -App::$strings["Email Address:"] = "Dirección de correo electrónico:"; -App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros. Estas identidades se pueden usar en las Listas de control de acceso y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "; -App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados"; -App::$strings["Login Name"] = "Nombre de inicio de sesión"; -App::$strings["Login Password"] = "Contraseña de inicio de sesión"; -App::$strings["Expires (yyyy-mm-dd)"] = "Expira (aaaa-mm-dd)"; -App::$strings["Additional Features"] = "Funcionalidades"; -App::$strings["Connector Settings"] = "Configuración del conector"; -App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; -App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; -App::$strings["Display Settings"] = "Ajustes de visualización"; -App::$strings["Theme Settings"] = "Ajustes del tema"; -App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; -App::$strings["Content Settings"] = "Ajustes del contenido"; -App::$strings["Display Theme:"] = "Tema gráfico del perfil:"; -App::$strings["Mobile Theme:"] = "Tema para el móvil:"; -App::$strings["Preload images before rendering the page"] = "Carga previa de las imágenes antes de generar la página"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."; -App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; -App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo"; -App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:"; -App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos"; -App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes"; -App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; -App::$strings["System Page Layout Editor - (advanced)"] = "Editor de plantilla de página del sistema - (avanzado)"; -App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; -App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; -App::$strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog"; -App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; -App::$strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura"; -App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)"; -App::$strings["Nobody except yourself"] = "Nadie excepto usted"; -App::$strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; -App::$strings["Approved connections"] = "Conexiones aprobadas"; -App::$strings["Any connections"] = "Cualquier conexión"; -App::$strings["Anybody on this website"] = "Cualquiera en este sitio web"; -App::$strings["Anybody in this network"] = "Cualquiera en esta red"; -App::$strings["Anybody authenticated"] = "Cualquiera que esté autenticado"; -App::$strings["Anybody on the internet"] = "Cualquiera en internet"; -App::$strings["Publish your default profile in the network directory"] = "Publicar su perfil principal en el directorio de la red"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"; -App::$strings["Your channel address is"] = "Su dirección de canal es"; -App::$strings["Channel Settings"] = "Ajustes del canal"; -App::$strings["Basic Settings"] = "Configuración básica"; -App::$strings["Full Name:"] = "Nombre completo:"; -App::$strings["Your Timezone:"] = "Su huso horario:"; -App::$strings["Default Post Location:"] = "Localización geográfica predeterminada para sus publicaciones:"; -App::$strings["Geographical location to display on your posts"] = "Localización geográfica que debe mostrarse en sus publicaciones"; -App::$strings["Use Browser Location:"] = "Usar la localización geográfica del navegador:"; -App::$strings["Adult Content"] = "Contenido solo para adultos"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar"; -App::$strings["Hide my online presence"] = "Ocultar mi presencia en línea"; -App::$strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea"; -App::$strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Muy Público - extremadamente permisivo (debería ser usado con precaución)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"; -App::$strings["Private - default private, never open or public"] = "Privado - por defecto, privado, nunca abierto o público"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por defecto, bloqueado/a para cualquiera"; -App::$strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."; -App::$strings["Advanced Privacy Settings"] = "Configuración de privacidad avanzada"; -App::$strings["Expire other channel content after this many days"] = "Caducar contenido de otros canales después de este número de días"; -App::$strings["0 or blank to use the website limit."] = "0 o en blanco para usar el límite del sitio web."; -App::$strings["This website expires after %d days."] = "Este sitio web caduca después de %d días."; -App::$strings["This website does not expire imported content."] = "Este sitio web no caduca el contenido importado."; -App::$strings["The website limit takes precedence if lower than your limit."] = "El límite del sitio web tiene prioridad si es inferior a su propio límite."; -App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; -App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; -App::$strings["Default Post and Publish Permissions"] = "Permisos predeterminados de entradas y publicaciones"; -App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; -App::$strings["Channel permissions category:"] = "Categoría de permisos del canal:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; -App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; -App::$strings["Notification Settings"] = "Configuración de las notificaciones"; -App::$strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:"; -App::$strings["accepting a friend request"] = "Acepte una solicitud de amistad"; -App::$strings["joining a forum/community"] = "al unirse a un foro o comunidad"; -App::$strings["making an interesting profile change"] = "Realice un cambio interesante en su perfil"; -App::$strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:"; -App::$strings["You receive a connection request"] = "Reciba una solicitud de conexión"; -App::$strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas"; -App::$strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (\"muro\")"; -App::$strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones"; -App::$strings["You receive a private message"] = "Reciba un mensaje privado"; -App::$strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; -App::$strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; -App::$strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una publicación"; -App::$strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; -App::$strings["Unseen grid activity"] = "Nueva actividad en la red"; -App::$strings["Unseen channel activity"] = "Actividad no vista en el canal"; -App::$strings["Unseen private messages"] = "Mensajes privados no leídos"; -App::$strings["Recommended"] = "Recomendado"; -App::$strings["Upcoming events"] = "Próximos eventos"; -App::$strings["Events today"] = "Eventos de hoy"; -App::$strings["Upcoming birthdays"] = "Próximos cumpleaños"; -App::$strings["Not available in all themes"] = "No disponible en todos los temas"; -App::$strings["System (personal) notifications"] = "Notificaciones del sistema (personales)"; -App::$strings["System info messages"] = "Mensajes de información del sistema"; -App::$strings["System critical alerts"] = "Alertas críticas del sistema"; -App::$strings["New connections"] = "Nuevas conexiones"; -App::$strings["System Registrations"] = "Registros del sistema"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones"; -App::$strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación"; -App::$strings["Must be greater than 0"] = "Debe ser mayor que 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página"; -App::$strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!."; -App::$strings["Miscellaneous Settings"] = "Ajustes diversos"; -App::$strings["Default photo upload folder"] = "Carpeta por defecto de las fotos subidas"; -App::$strings["%Y - current year, %m - current month"] = "%Y - año en curso, %m - mes actual"; -App::$strings["Default file upload folder"] = "Carpeta por defecto de los archivos subidos"; -App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; -App::$strings["Remove this channel."] = "Eliminar este canal."; -App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname"; -App::$strings["Start calendar week on monday"] = "Comenzar el calendario semanal por el lunes"; -App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; -App::$strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; -App::$strings["Could not create table."] = "No se puede crear la tabla."; -App::$strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Verificación del sistema"; -App::$strings["Check again"] = "Verificar de nuevo"; -App::$strings["Database connection"] = "Conexión a la base de datos"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."; -App::$strings["Database Server Name"] = "Nombre del servidor de base de datos"; -App::$strings["Default is 127.0.0.1"] = "De forma predeterminada es 127.0.0.1"; -App::$strings["Database Port"] = "Puerto de la base de datos"; -App::$strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - use 0 como valor por defecto"; -App::$strings["Database Login Name"] = "Usuario de la base de datos"; -App::$strings["Database Login Password"] = "Contraseña de acceso a la base de datos"; -App::$strings["Database Name"] = "Nombre de la base de datos"; -App::$strings["Database Type"] = "Tipo de base de datos"; -App::$strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."; -App::$strings["Website URL"] = "Dirección del sitio web"; -App::$strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible."; -App::$strings["Please select a default timezone for your website"] = "Por favor, selecciones el huso horario por defecto de su sitio web"; -App::$strings["Site settings"] = "Ajustes del sitio"; -App::$strings["Enable \$Projectname advanced features?"] = "¿Habilitar las funcionalidades avanzadas de \$Projectname ?"; -App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Algunas funcionalidades avanzadas, si bien son útiles, pueden ser más adecuadas para un público técnicamente competente"; -App::$strings["PHP version 5.5 or greater is required."] = "Se requiere la versión 5.5, o superior, de PHP."; -App::$strings["PHP version"] = "Versión de PHP"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web."; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron."; -App::$strings["PHP executable path"] = "Ruta del ejecutable PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."; -App::$strings["Command line PHP"] = "PHP en línea de comandos"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."; -App::$strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la transmisión de mensajes."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Puede ajustar estos valores en el fichero php.ini de su servidor."; -App::$strings["PHP upload limits"] = "Límites PHP de subida"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Generar claves de cifrado"; -App::$strings["libCurl PHP module"] = "módulo libCurl PHP"; -App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics"; -App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; -App::$strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres"; -App::$strings["mb_string PHP module"] = "módulo PHP mb_string"; -App::$strings["xml PHP module"] = "módulo PHP xml"; -App::$strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite "; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; -App::$strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; -App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."; -App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal."; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene."; -App::$strings["%s is writable"] = "%s tiene permisos de escritura"; -App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior"; -App::$strings["store is writable"] = "\"store\" tiene permisos de escritura"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."; -App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo."; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor."; -App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."; -App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor."; -App::$strings["SSL certificate validation"] = "validación del certificado SSL"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"; -App::$strings["Url rewrite is working"] = "La reescritura de las direcciones funciona correctamente"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor."; -App::$strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; -App::$strings["

    What next

    "] = "

    Siguiente paso

    "; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; -App::$strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; -App::$strings["NEW"] = "NUEVO"; -App::$strings["Remove all files"] = "Eliminar todos los ficheros"; -App::$strings["Remove this file"] = "Eliminar este fichero"; -App::$strings["Thing updated"] = "Elemento actualizado."; -App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; -App::$strings["Thing added"] = "Elemento añadido"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Mostrar elemento"; -App::$strings["item not found."] = "elemento no encontrado."; -App::$strings["Edit Thing"] = "Editar elemento"; -App::$strings["Select a profile"] = "Seleccionar un perfil"; -App::$strings["Post an activity"] = "Publicar una actividad"; -App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; -App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; -App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; -App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; -App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; -App::$strings["Failed to create source. No channel selected."] = "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado."; -App::$strings["Source created."] = "Fuente creada."; -App::$strings["Source updated."] = "Fuente actualizada."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Orígenes de los contenidos del canal"; -App::$strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; -App::$strings["New Source"] = "Nueva fuente"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes."; -App::$strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)"; -App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; -App::$strings["Channel Name"] = "Nombre del canal"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Añadir las categorías siguientes a las entradas importadas de esta fuente (separadas por comas)"; -App::$strings["Source not found."] = "Fuente no encontrada"; -App::$strings["Edit Source"] = "Editar fuente"; -App::$strings["Delete Source"] = "Eliminar fuente"; -App::$strings["Source removed"] = "Fuente eliminada"; -App::$strings["Unable to remove source."] = "Imposible eliminar la fuente."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %3\$s de %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha dejado de seguir %3\$s de %2\$s"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; -App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; -App::$strings["post"] = "la entrada"; -App::$strings["comment"] = "el comentario"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3\$s de %2\$s con %4\$s"; -App::$strings["Tag removed"] = "Etiqueta eliminada."; -App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; -App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; -App::$strings["Webpages"] = "Páginas web"; -App::$strings["Actions"] = "Acciones"; -App::$strings["Page Link"] = "Vínculo de la página"; -App::$strings["Page Title"] = "Título de página"; -App::$strings["Not found"] = "No encontrado"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Entorno de edición"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Entorno de edición del Wiki\\n\\nEl contenido que se **edite** y **previsualizce** aquí *no se guardará*.\""; -App::$strings["Revision Comparison"] = "Comparación de revisiones"; -App::$strings["Revert"] = "Revertir"; -App::$strings["Enter the name of your new wiki:"] = "Nombre de su nuevo wiki:"; -App::$strings["Enter the name of the new page:"] = "Nombre de la nueva página:"; -App::$strings["Enter the new name:"] = "Nuevo nombre:"; -App::$strings["Embed image from photo albums"] = "Incluir una imagen de los álbumes de fotos"; -App::$strings["Embed an image from your albums"] = "Incluir una imagen de sus álbumes"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Elegir imágenes para incluir"; -App::$strings["Choose an album"] = "Elegir un álbum"; -App::$strings["Choose a different album..."] = "Elegir un álbum diferente..."; -App::$strings["Error getting album list"] = "Error al obtener la lista de álbumes"; -App::$strings["Error getting photo link"] = "Error al obtener el enlace de la foto"; -App::$strings["Error getting album"] = "Error al obtener el álbum"; -App::$strings["No connections."] = "Sin conexiones."; -App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; -App::$strings["View Connections"] = "Ver conexiones"; -App::$strings["Source of Item"] = "Origen del elemento"; -App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; -App::$strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; -App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; -App::$strings["Xchan Lookup"] = "Búsqueda de canales"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; -App::$strings["Missing room name"] = "Sala de chat sin nombre"; -App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; -App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; -App::$strings["Room not found."] = "Sala no encontrada."; -App::$strings["Room is full"] = "La sala está llena."; -App::$strings["\$Projectname Notification"] = "Notificación de \$Projectname"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Gracias,"; -App::$strings["%s Administrator"] = "%s Administrador"; -App::$strings["%s "] = "%s "; -App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Aviso] Nuevo mensaje en %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s."; -App::$strings["a private message"] = "un mensaje privado"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl] "; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]"; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Aviso] Nuevo comentario de %2\$s a la conversación #%1\$d"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha comentado un elemento/conversación que ha estado siguiendo."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha publicado en su página del perfil en %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha publicado en [zrl=%3\$s]su página del perfil[/zrl]"; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le ha etiquetado"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le ha etiquetado en %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le ha dado un toque en %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le ha dado un toque[/zrl]."; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s ha etiquetado su publicación"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]"; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Aviso] Ha recibido una solicitud de conexión"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; -App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s."; -App::$strings["Name:"] = "Nombre:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; -App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; -App::$strings["created a new post"] = "ha creado una nueva entrada"; -App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; -App::$strings["Site Admin"] = "Administrador del sitio"; -App::$strings["Bug Report"] = "Informe de errores"; -App::$strings["View Bookmarks"] = "Ver los marcadores"; -App::$strings["My Chatrooms"] = "Mis salas de chat"; -App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; -App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; -App::$strings["Suggest Channels"] = "Sugerir canales"; -App::$strings["Login"] = "Iniciar sesión"; -App::$strings["Grid"] = "Red"; -App::$strings["Channel Home"] = "Mi canal"; -App::$strings["Events"] = "Eventos"; -App::$strings["Directory"] = "Directorio"; -App::$strings["Mail"] = "Correo"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Probar"; -App::$strings["Suggest"] = "Sugerir"; -App::$strings["Random Channel"] = "Canal aleatorio"; -App::$strings["Invite"] = "Invitar"; -App::$strings["Features"] = "Funcionalidades"; -App::$strings["Post"] = "Publicación"; -App::$strings["Purchase"] = "Comprar"; -App::$strings["Private Message"] = "Mensaje Privado"; -App::$strings["Select"] = "Seleccionar"; -App::$strings["Save to Folder"] = "Guardar en carpeta"; -App::$strings["I will attend"] = "Participaré"; -App::$strings["I will not attend"] = "No participaré"; -App::$strings["I might attend"] = "Quizá participe"; -App::$strings["I agree"] = "Estoy de acuerdo"; -App::$strings["I disagree"] = "No estoy de acuerdo"; -App::$strings["I abstain"] = "Me abstengo"; -App::$strings["Add Star"] = "Destacar añadiendo una estrella"; -App::$strings["Remove Star"] = "Eliminar estrella"; -App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida"; -App::$strings["starred"] = "preferidas"; -App::$strings["Message signature validated"] = "Firma de mensaje validada"; -App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta"; -App::$strings["Add Tag"] = "Añadir etiqueta"; -App::$strings["like"] = "me gusta"; -App::$strings["dislike"] = "no me gusta"; -App::$strings["Share This"] = "Compartir esto"; -App::$strings["share"] = "compartir"; -App::$strings["Delivery Report"] = "Informe de transmisión"; -App::$strings["%d comment"] = array( - 0 => "%d comentario", - 1 => "%d comentarios", -); -App::$strings["View %s's profile - %s"] = "Ver el perfil de %s - %s"; -App::$strings["to"] = "a"; -App::$strings["via"] = "mediante"; -App::$strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de \"muro\" a \"muro\")"; -App::$strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")"; -App::$strings["from %s"] = "desde %s"; -App::$strings["last edited: %s"] = "último cambio: %s"; -App::$strings["Expires: %s"] = "Caduca: %s"; -App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; -App::$strings["Add to Calendar"] = "Añadir al calendario"; -App::$strings["Mark all seen"] = "Marcar todo como visto"; -App::$strings["%s show all"] = "%s mostrar todo"; -App::$strings["Bold"] = "Negrita"; -App::$strings["Italic"] = "Itálico "; -App::$strings["Underline"] = "Subrayar"; -App::$strings["Quote"] = "Citar"; -App::$strings["Code"] = "Código"; -App::$strings["Image"] = "Imagen"; -App::$strings["Insert Link"] = "Insertar enlace"; -App::$strings["Video"] = "Vídeo"; -App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; -App::$strings["Only me"] = "Sólo yo"; -App::$strings["Public"] = "Público"; -App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; -App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; -App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; -App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; -App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; -App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; -App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado."; -App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; -App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; -App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; -App::$strings["a new photo"] = "una nueva foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; -App::$strings["Photo Albums"] = "Álbumes de fotos"; -App::$strings["Upload New Photos"] = "Subir nuevas fotos"; -App::$strings["Logout"] = "Finalizar sesión"; -App::$strings["End this session"] = "Finalizar esta sesión"; -App::$strings["Home"] = "Inicio"; -App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; -App::$strings["Your profile page"] = "Su página del perfil"; -App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Edit Profile"] = "Editar el perfil"; -App::$strings["Edit your profile"] = "Editar su perfil"; -App::$strings["Your photos"] = "Sus fotos"; -App::$strings["Your files"] = "Sus ficheros"; -App::$strings["Your chatrooms"] = "Sus salas de chat"; -App::$strings["Bookmarks"] = "Marcadores"; -App::$strings["Your bookmarks"] = "Sus marcadores"; -App::$strings["Your webpages"] = "Sus páginas web"; -App::$strings["Your wiki"] = "Su wiki"; -App::$strings["Sign in"] = "Acceder"; -App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; -App::$strings["Remote authentication"] = "Acceder desde su servidor"; -App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -App::$strings["Home Page"] = "Página de inicio"; -App::$strings["Create an account"] = "Crear una cuenta"; -App::$strings["Help and documentation"] = "Ayuda y documentación"; -App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; -App::$strings["Channel Directory"] = "Directorio de canales"; -App::$strings["Your grid"] = "Mi red"; -App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; -App::$strings["Channel home"] = "Mi canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -App::$strings["Notices"] = "Avisos"; -App::$strings["Notifications"] = "Notificaciones"; -App::$strings["See all notifications"] = "Ver todas las notificaciones"; -App::$strings["Private mail"] = "Correo privado"; -App::$strings["See all private messages"] = "Ver todas los mensajes privados"; -App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; -App::$strings["Inbox"] = "Bandeja de entrada"; -App::$strings["Outbox"] = "Bandeja de salida"; -App::$strings["New Message"] = "Nuevo mensaje"; -App::$strings["Event Calendar"] = "Calendario de eventos"; -App::$strings["See all events"] = "Ver todos los eventos"; -App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; -App::$strings["Manage Your Channels"] = "Gestionar sus canales"; -App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; -App::$strings["Admin"] = "Administrador"; -App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; -App::$strings["Loading..."] = "Cargando..."; -App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; -App::$strings["Please wait..."] = "Espere por favor…"; -App::$strings["view full size"] = "Ver en el tamaño original"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["No Subject"] = "Sin asunto"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["New Page"] = "Nueva página"; -App::$strings["Title"] = "Título"; -App::$strings["Categories"] = "Categorías"; -App::$strings["Tags"] = "Etiquetas"; -App::$strings["Keywords"] = "Palabras clave"; -App::$strings["have"] = "tener"; -App::$strings["has"] = "tiene"; -App::$strings["want"] = "quiero"; -App::$strings["wants"] = "quiere"; -App::$strings["likes"] = "gusta de"; -App::$strings["dislikes"] = "no gusta de"; -App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; -App::$strings["Empty name"] = "Nombre vacío"; -App::$strings["Name too long"] = "Nombre demasiado largo"; -App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; -App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; -App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; -App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; -App::$strings["Default Profile"] = "Perfil principal"; -App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; -App::$strings["Create New Profile"] = "Crear un nuevo perfil"; -App::$strings["Visible to everybody"] = "Visible para todos"; -App::$strings["Gender:"] = "Género:"; -App::$strings["Status:"] = "Estado:"; -App::$strings["Homepage:"] = "Página personal:"; -App::$strings["Online Now"] = "Ahora en línea"; -App::$strings["Like this channel"] = "Me gusta este canal"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Cumpleaños:"; -App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientación sexual:"; -App::$strings["Tags:"] = "Etiquetas:"; -App::$strings["Political Views:"] = "Posición política:"; -App::$strings["Religion:"] = "Religión:"; -App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; -App::$strings["Likes:"] = "Me gusta:"; -App::$strings["Dislikes:"] = "No me gusta:"; -App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; -App::$strings["My other channels:"] = "Mis otros canales:"; -App::$strings["Musical interests:"] = "Preferencias musicales:"; -App::$strings["Books, literature:"] = "Libros, literatura:"; -App::$strings["Television:"] = "Televisión:"; -App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; -App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; -App::$strings["Work/employment:"] = "Trabajo:"; -App::$strings["School/education:"] = "Estudios:"; -App::$strings["Like this thing"] = "Me gusta esto"; -App::$strings["New window"] = "Nueva ventana"; -App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; -App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; -App::$strings["poked"] = "ha dado un toque a"; -App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; -App::$strings["Categories:"] = "Categorías:"; -App::$strings["Filed under:"] = "Archivado bajo:"; -App::$strings["View in context"] = "Mostrar en su contexto"; -App::$strings["remove"] = "eliminar"; -App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; -App::$strings["View Source"] = "Ver el código fuente de la entrada"; -App::$strings["Follow Thread"] = "Seguir este hilo"; -App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; -App::$strings["Activity/Posts"] = "Actividad y publicaciones"; -App::$strings["Edit Connection"] = "Editar conexión"; -App::$strings["Message"] = "Mensaje"; -App::$strings["%s likes this."] = "A %s le gusta esto."; -App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; -App::$strings["%2\$d people like this."] = array( - 0 => "a %2\$d personas le gusta esto.", - 1 => "A %2\$d personas les gusta esto.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "a %2\$d personas no les gusta esto.", - 1 => "A %2\$d personas no les gusta esto.", -); -App::$strings["and"] = "y"; -App::$strings[", and %d other people"] = array( - 0 => ", y %d persona más", - 1 => ", y %d personas más", -); -App::$strings["%s like this."] = "A %s le gusta esto."; -App::$strings["%s don't like this."] = "A %s no le gusta esto."; -App::$strings["Set your location"] = "Establecer su ubicación"; -App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; -App::$strings["Tag term:"] = "Término de la etiqueta:"; -App::$strings["Where are you right now?"] = "¿Donde está ahora?"; -App::$strings["Page link name"] = "Nombre del enlace de la página"; -App::$strings["Post as"] = "Publicar como"; -App::$strings["Toggle voting"] = "Cambiar votación"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)"; -App::$strings["Set publish date"] = "Establecer la fecha de publicación"; -App::$strings["Discover"] = "Descubrir"; -App::$strings["Imported public streams"] = "Contenidos públicos importados"; -App::$strings["Commented Order"] = "Comentarios recientes"; -App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; -App::$strings["Posted Order"] = "Publicaciones recientes"; -App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; -App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; -App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; -App::$strings["Starred"] = "Preferidas"; -App::$strings["Favourite Posts"] = "Publicaciones favoritas"; -App::$strings["Spam"] = "Correo basura"; -App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; -App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; -App::$strings["About"] = "Mi perfil"; -App::$strings["Profile Details"] = "Detalles del perfil"; -App::$strings["Files and Storage"] = "Ficheros y repositorio"; -App::$strings["Chatrooms"] = "Salas de chat"; -App::$strings["Saved Bookmarks"] = "Marcadores guardados"; -App::$strings["Manage Webpages"] = "Administrar páginas web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Participaré", - 1 => "Participaré", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "No participaré", - 1 => "No participaré", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso/a", - 1 => "Indecisos/as", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "De acuerdo", - 1 => "De acuerdo", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "En desacuerdo", - 1 => "En desacuerdo", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "se abstiene", - 1 => "Se abstienen", -); -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; -App::$strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado."; -App::$strings["Frequently"] = "Frecuentemente"; -App::$strings["Hourly"] = "Cada hora"; -App::$strings["Twice daily"] = "Dos veces al día"; -App::$strings["Daily"] = "Diariamente"; -App::$strings["Weekly"] = "Semanalmente"; -App::$strings["Monthly"] = "Mensualmente"; -App::$strings["Currently Male"] = "Actualmente hombre"; -App::$strings["Currently Female"] = "Actualmente mujer"; -App::$strings["Mostly Male"] = "Generalmente hombre"; -App::$strings["Mostly Female"] = "Generalmente mujer"; -App::$strings["Transgender"] = "Transgénero"; -App::$strings["Intersex"] = "Intersexual"; -App::$strings["Transsexual"] = "Transexual"; -App::$strings["Hermaphrodite"] = "Hermafrodita"; -App::$strings["Neuter"] = "Neutral"; -App::$strings["Non-specific"] = "No especificado"; -App::$strings["Undecided"] = "Indeciso/a"; -App::$strings["Males"] = "Hombres"; -App::$strings["Females"] = "Mujeres"; -App::$strings["Gay"] = "Homosexual"; -App::$strings["Lesbian"] = "Lesbiana"; -App::$strings["No Preference"] = "Sin preferencias"; -App::$strings["Bisexual"] = "Bisexual"; -App::$strings["Autosexual"] = "Autosexual"; -App::$strings["Abstinent"] = "Casto/a"; -App::$strings["Virgin"] = "Virgen"; -App::$strings["Deviant"] = "Fuera de lo común"; -App::$strings["Fetish"] = "Fetichista"; -App::$strings["Oodles"] = "Orgías"; -App::$strings["Nonsexual"] = "Asexual"; -App::$strings["Single"] = "Soltero/a"; -App::$strings["Lonely"] = "Solo/a"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "No disponible"; -App::$strings["Has crush"] = "Enamorado/a"; -App::$strings["Infatuated"] = "Apasionado/a"; -App::$strings["Dating"] = "Saliendo con alguien"; -App::$strings["Unfaithful"] = "Infiel"; -App::$strings["Sex Addict"] = "Con adicción al sexo"; -App::$strings["Friends/Benefits"] = "Amigos con algo extra"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Prometido/a"; -App::$strings["Married"] = "Casado/a"; -App::$strings["Imaginarily married"] = "Casado/a en sueños"; -App::$strings["Partners"] = "Pareja"; -App::$strings["Cohabiting"] = "Cohabitando"; -App::$strings["Common law"] = "Matrimonio tradicional"; -App::$strings["Happy"] = "Felíz"; -App::$strings["Not looking"] = "No estoy buscando"; -App::$strings["Swinger"] = "Libertino"; -App::$strings["Betrayed"] = "Engañado/a"; -App::$strings["Separated"] = "Separado/a"; -App::$strings["Unstable"] = "Inestable"; -App::$strings["Divorced"] = "Divorciado/a"; -App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; -App::$strings["Widowed"] = "Viudo/a"; -App::$strings["Uncertain"] = "Indeterminado"; -App::$strings["It's complicated"] = "Es complicado"; -App::$strings["Don't care"] = "No me importa"; -App::$strings["Ask me"] = "Pregúnteme"; -App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; -App::$strings["guest:"] = "invitado: "; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; +App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; +App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; +App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; +App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; +App::$strings["Password Reset"] = "Restablecer la contraseña"; +App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; +App::$strings["Your new password is"] = "Su nueva contraseña es"; +App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; +App::$strings["click here to login"] = "pulse aquí para conectarse"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; +App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; +App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; +App::$strings["Email Address"] = "Dirección de correo electrónico"; +App::$strings["Reset"] = "Reiniciar"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; +App::$strings["Mood"] = "Estado de ánimo"; +App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; +App::$strings["Profile not found."] = "Perfil no encontrado."; +App::$strings["Profile deleted."] = "Perfil eliminado."; +App::$strings["Profile-"] = "Perfil-"; +App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; +App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; +App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; +App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; +App::$strings["Marital Status"] = "Estado civil"; +App::$strings["Romantic Partner"] = "Pareja sentimental"; +App::$strings["Likes"] = "Me gusta"; +App::$strings["Dislikes"] = "No me gusta"; +App::$strings["Work/Employment"] = "Trabajo:"; +App::$strings["Religion"] = "Religión"; +App::$strings["Political Views"] = "Ideas políticas"; +App::$strings["Gender"] = "Género"; +App::$strings["Sexual Preference"] = "Preferencia sexual"; +App::$strings["Homepage"] = "Página personal"; +App::$strings["Interests"] = "Intereses"; +App::$strings["Profile updated."] = "Perfil actualizado."; +App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; +App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; +App::$strings["View this profile"] = "Ver este perfil"; +App::$strings["Edit visibility"] = "Editar visibilidad"; +App::$strings["Profile Tools"] = "Gestión del perfil"; +App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; +App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; +App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; +App::$strings["Clone this profile"] = "Clonar este perfil"; +App::$strings["Delete this profile"] = "Eliminar este perfil"; +App::$strings["Add profile things"] = "Añadir cosas al perfil"; +App::$strings["Personal"] = "Personales"; +App::$strings["Relation"] = "Relación"; +App::$strings["Miscellaneous"] = "Varios"; +App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; +App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; +App::$strings["Your gender"] = "Género"; +App::$strings["Marital status"] = "Estado civil"; +App::$strings["Sexual preference"] = "Preferencia sexual"; +App::$strings["Profile name"] = "Nombre del perfil"; +App::$strings["This is your default profile."] = "Este es su perfil principal."; +App::$strings["Your full name"] = "Nombre completo"; +App::$strings["Title/Description"] = "Título o descripción"; +App::$strings["Street address"] = "Dirección"; +App::$strings["Locality/City"] = "Ciudad"; +App::$strings["Region/State"] = "Región o Estado"; +App::$strings["Postal/Zip code"] = "Código postal"; +App::$strings["Country"] = "País"; +App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; +App::$strings["Since (date)"] = "Desde (fecha)"; +App::$strings["Tell us about yourself"] = "Háblenos de usted"; +App::$strings["Homepage URL"] = "Dirección de la página personal"; +App::$strings["Hometown"] = "Lugar de nacimiento"; +App::$strings["Political views"] = "Ideas políticas"; +App::$strings["Religious views"] = "Creencias religiosas"; +App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; +App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; +App::$strings["Musical interests"] = "Preferencias musicales"; +App::$strings["Books, literature"] = "Libros, literatura"; +App::$strings["Television"] = "Televisión"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; +App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; +App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; +App::$strings["School/Education"] = "Estudios"; +App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; +App::$strings["My other channels"] = "Mis otros canales"; +App::$strings["Profile Image"] = "Imagen del perfil"; +App::$strings["Edit Profiles"] = "Editar perfiles"; +App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; +App::$strings["System Notifications"] = "Notificaciones del sistema"; +App::$strings["Profile Match"] = "Perfil compatible"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; +App::$strings["is interested in:"] = "está interesado en:"; +App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; +App::$strings["Import Webpage Elements"] = "Importar elementos de una página web"; +App::$strings["Import selected"] = "Importar elementos seleccionados"; +App::$strings["Webpages"] = "Páginas web"; +App::$strings["Actions"] = "Acciones"; +App::$strings["Page Link"] = "Vínculo de la página"; +App::$strings["Page Title"] = "Título de página"; +App::$strings["Invalid file type."] = "Tipo de fichero no válido."; +App::$strings["Error opening zip file"] = "Error al abrir el fichero comprimido zip"; +App::$strings["Invalid folder path."] = "La ruta de la carpeta no es válida."; +App::$strings["No webpage elements detected."] = "No se han detectado elementos de ninguna página web."; +App::$strings["Import complete."] = "Importación completada."; +App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; +App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; +App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; +App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; +App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; +App::$strings["Event not found."] = "Evento no encontrado."; +App::$strings["Edit event title"] = "Editar el título del evento"; +App::$strings["Event title"] = "Título del evento"; +App::$strings["Categories (comma-separated list)"] = "Temas (lista separada por comas)"; +App::$strings["Edit Category"] = "Modificar el tema"; +App::$strings["Category"] = "Tema"; +App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; +App::$strings["Start date and time"] = "Fecha y hora de comienzo"; +App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; +App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; +App::$strings["Finish date and time"] = "Fecha y hora de terminación"; +App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; +App::$strings["Edit Description"] = "Editar la descripción"; +App::$strings["Edit Location"] = "Modificar la dirección"; +App::$strings["Share this event"] = "Compartir este evento"; +App::$strings["Permission settings"] = "Configuración de permisos"; +App::$strings["Advanced Options"] = "Opciones avanzadas"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Edit event"] = "Editar evento"; +App::$strings["Delete event"] = "Borrar evento"; +App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; +App::$strings["calendar"] = "calendario"; +App::$strings["Edit Event"] = "Editar el evento"; +App::$strings["Create Event"] = "Crear un evento"; +App::$strings["Export"] = "Exportar"; +App::$strings["Month"] = "Mes"; +App::$strings["Week"] = "Semana"; +App::$strings["Day"] = "Día"; +App::$strings["Today"] = "Hoy"; +App::$strings["Event removed"] = "Evento borrado"; +App::$strings["Failed to remove event"] = "Error al eliminar el evento"; +App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; +App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; +App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; +App::$strings["Import completed."] = "Importación completada."; +App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; +App::$strings["Import Channel"] = "Importar canal"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación."; +App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; +App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; +App::$strings["Your old login password"] = "Su antigua contraseña"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."; +App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; +App::$strings["Create Channel"] = "Crear un canal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; +App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; +App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; +App::$strings["added your channel"] = "añadió este canal a sus conexiones"; +App::$strings["g A l F d"] = "g A l d F"; +App::$strings["[today]"] = "[hoy]"; +App::$strings["posted an event"] = "publicó un evento"; +App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; +App::$strings["Discard"] = "Descartar"; +App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; +App::$strings["Poke"] = "Toques y otras cosas"; +App::$strings["Poke somebody"] = "Dar un toque a alguien"; +App::$strings["Poke/Prod"] = "Toque/Incitación"; +App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; +App::$strings["Recipient"] = "Destinatario"; +App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; +App::$strings["Make this post private"] = "Convertir en privado este envío"; +App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; +App::$strings["Post successful."] = "Enviado con éxito."; +App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; +App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; +App::$strings["Profile"] = "Perfil"; +App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; +App::$strings["Visible To"] = "Visible para"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; +App::$strings["Configuration Editor"] = "Editor de configuración"; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; +App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; +App::$strings["Posts and comments"] = "Publicaciones y comentarios"; +App::$strings["Only posts"] = "Solo publicaciones"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; +App::$strings["Version %s"] = "Versión %s"; +App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; +App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; +App::$strings["Tag: "] = "Etiqueta:"; +App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; +App::$strings["Current load average: "] = "Carga media actual:"; +App::$strings["Running at web location"] = "Corriendo en el sitio web"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; +App::$strings["\$projectname issues"] = "Problemas en \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; +App::$strings["Site Administrators"] = "Administradores del sitio"; +App::$strings["Blocks"] = "Bloques"; +App::$strings["Block Title"] = "Título del bloque"; +App::$strings["Layouts"] = "Plantillas"; +App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; +App::$strings["Layout Description"] = "Descripción de la plantilla"; +App::$strings["Download PDL file"] = "Descargar el fichero PDL"; +App::$strings["No ratings"] = "Ninguna valoración"; +App::$strings["Rating: "] = "Valoración:"; +App::$strings["Website: "] = "Sitio web:"; +App::$strings["Description: "] = "Descripción:"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; +App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; +App::$strings["Permissions denied."] = "Permisos denegados."; +App::$strings["Import"] = "Importar"; +App::$strings["No channel."] = "Ningún canal."; +App::$strings["Common connections"] = "Conexiones comunes"; +App::$strings["No connections in common."] = "Ninguna conexión en común."; +App::$strings["Unable to lookup recipient."] = "No se puede asociar a un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "No se puede establecer la comunicación con el canal solicitado."; +App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; +App::$strings["Messages"] = "Mensajes"; +App::$strings["Message recalled."] = "Mensaje revocado."; +App::$strings["Conversation removed."] = "Conversación eliminada."; +App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; +App::$strings["Send Private Message"] = "Enviar un mensaje privado"; +App::$strings["To:"] = "Para:"; +App::$strings["Subject:"] = "Asunto:"; +App::$strings["Attach file"] = "Adjuntar fichero"; +App::$strings["Send"] = "Enviar"; +App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; +App::$strings["Encrypt text"] = "Cifrar texto"; +App::$strings["Delete message"] = "Borrar mensaje"; +App::$strings["Delivery report"] = "Informe de transmisión"; +App::$strings["Recall message"] = "Revocar el mensaje"; +App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; +App::$strings["Delete Conversation"] = "Eliminar conversación"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; +App::$strings["Send Reply"] = "Responder"; +App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; +App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; +App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; +App::$strings["Connection updated."] = "Conexión actualizada."; +App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; +App::$strings["is now connected to"] = "ahora está conectado/a"; +App::$strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; +App::$strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; +App::$strings["Connection has been removed."] = "La conexión ha sido eliminada."; +App::$strings["View Profile"] = "Ver el perfil"; +App::$strings["View %s's profile"] = "Ver el perfil de %s"; +App::$strings["Refresh Permissions"] = "Recargar los permisos"; +App::$strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; +App::$strings["Recent Activity"] = "Actividad reciente"; +App::$strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; +App::$strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; +App::$strings["Unignore"] = "Dejar de ignorar"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; +App::$strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; +App::$strings["Unarchive"] = "Desarchivar"; +App::$strings["Archive"] = "Archivar"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; +App::$strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; +App::$strings["Unhide"] = "Mostrar"; +App::$strings["Hide"] = "Ocultar"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; +App::$strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; +App::$strings["Delete this connection"] = "Eliminar esta conexión"; +App::$strings["Me"] = "Yo"; +App::$strings["Family"] = "Familia"; +App::$strings["Acquaintances"] = "Conocidos/as"; +App::$strings["Approve this connection"] = "Aprobar esta conexión"; +App::$strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; +App::$strings["Set Affinity"] = "Ajustar la afinidad"; +App::$strings["Set Profile"] = "Ajustar el perfil"; +App::$strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil"; +App::$strings["none"] = "-"; +App::$strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; +App::$strings["Connection: %s"] = "Conexión: %s"; +App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; +App::$strings["Connection requests will be approved without your interaction"] = "Las solicitudes de conexión serán aprobadas sin su intervención"; +App::$strings["This connection's primary address is"] = "La dirección primaria de esta conexión es"; +App::$strings["Available locations:"] = "Ubicaciones disponibles:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; +App::$strings["Connection Tools"] = "Gestión de las conexiones"; +App::$strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; +App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; +App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; +App::$strings["Custom Filter"] = "Filtro personalizado"; +App::$strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; +App::$strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; +App::$strings["This information is public!"] = "¡Esta información es pública!"; +App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; +App::$strings["Last update:"] = "Última actualización:"; +App::$strings["Apps"] = "Aplicaciones (apps)"; +App::$strings["Continue"] = "Continuar"; +App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; +App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; +App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; +App::$strings["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; +App::$strings["Save Bookmark"] = "Guardar marcador"; +App::$strings["URL of bookmark"] = "Dirección del marcador"; +App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores"; +App::$strings["Authentication failed."] = "Falló la autenticación."; +App::$strings["Remote Authentication"] = "Acceso desde su servidor"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; +App::$strings["Authenticate"] = "Acceder"; +App::$strings["Please login."] = "Por favor, inicie sesión."; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; +App::$strings["Remove This Account"] = "Eliminar esta cuenta"; +App::$strings["WARNING: "] = "ATENCIÓN:"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Esta cuenta y todos sus canales van a ser eliminados de la red."; +App::$strings["This action is permanent and can not be undone!"] = "¡Esta acción tiene carácter definitivo y no se puede deshacer!"; +App::$strings["Please enter your password for verification:"] = "Por favor, introduzca su contraseña para su verificación:"; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red"; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; +App::$strings["Remove This Channel"] = "Eliminar este canal"; +App::$strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red."; +App::$strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; +App::$strings["Export Channel"] = "Exportar el canal"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; +App::$strings["Export Content"] = "Exportar contenidos"; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."; +App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; +App::$strings["Item is not editable"] = "El elemento no es editable"; +App::$strings["Edit post"] = "Editar la entrada"; +App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; +App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; +App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; +App::$strings["Thing updated"] = "Elemento actualizado."; +App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; +App::$strings["Thing added"] = "Elemento añadido"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Mostrar elemento"; +App::$strings["item not found."] = "elemento no encontrado."; +App::$strings["Edit Thing"] = "Editar elemento"; +App::$strings["Select a profile"] = "Seleccionar un perfil"; +App::$strings["Post an activity"] = "Publicar una actividad"; +App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; +App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; +App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; +App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; +App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; +App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; +App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada."; +App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; +App::$strings["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada."; +App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar."; +App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; +App::$strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; +App::$strings["NEW"] = "NUEVO"; +App::$strings["Remove all files"] = "Eliminar todos los ficheros"; +App::$strings["Remove this file"] = "Eliminar este fichero"; +App::$strings["Not found"] = "No encontrado"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Entorno de edición"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Entorno de edición del Wiki\\n\\nEl contenido que se **edite** y **previsualizce** aquí *no se guardará*.\""; +App::$strings["Revision Comparison"] = "Comparación de revisiones"; +App::$strings["Revert"] = "Revertir"; +App::$strings["Enter the name of your new wiki:"] = "Nombre de su nuevo wiki:"; +App::$strings["Enter the name of the new page:"] = "Nombre de la nueva página:"; +App::$strings["Enter the new name:"] = "Nuevo nombre:"; +App::$strings["Embed image from photo albums"] = "Incluir una imagen de los álbumes de fotos"; +App::$strings["Embed an image from your albums"] = "Incluir una imagen de sus álbumes"; +App::$strings["OK"] = "OK"; +App::$strings["Choose images to embed"] = "Elegir imágenes para incluir"; +App::$strings["Choose an album"] = "Elegir un álbum"; +App::$strings["Choose a different album..."] = "Elegir un álbum diferente..."; +App::$strings["Error getting album list"] = "Error al obtener la lista de álbumes"; +App::$strings["Error getting photo link"] = "Error al obtener el enlace de la foto"; +App::$strings["Error getting album"] = "Error al obtener el álbum"; +App::$strings["Failed to create source. No channel selected."] = "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal."; +App::$strings["Source created."] = "Fuente creada."; +App::$strings["Source updated."] = "Fuente actualizada."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Orígenes de los contenidos del canal"; +App::$strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; +App::$strings["New Source"] = "Nueva fuente"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes."; +App::$strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)"; +App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; +App::$strings["Channel Name"] = "Nombre del canal"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)"; +App::$strings["Source not found."] = "Fuente no encontrada"; +App::$strings["Edit Source"] = "Editar fuente"; +App::$strings["Delete Source"] = "Eliminar fuente"; +App::$strings["Source removed"] = "Fuente eliminada"; +App::$strings["Unable to remove source."] = "No se puede eliminar la fuente."; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %3\$s de %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha dejado de seguir %3\$s de %2\$s"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; +App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; +App::$strings["post"] = "la entrada"; +App::$strings["comment"] = "el comentario"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3\$s de %2\$s con %4\$s"; +App::$strings["Tag removed"] = "Etiqueta eliminada."; +App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; +App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; +App::$strings["Channel added."] = "Canal añadido."; +App::$strings["No connections."] = "Sin conexiones."; +App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; +App::$strings["View Connections"] = "Ver conexiones"; +App::$strings["Source of Item"] = "Origen del elemento"; +App::$strings["Room not found"] = "Sala no encontrada"; +App::$strings["Leave Room"] = "Abandonar la sala"; +App::$strings["Delete Room"] = "Eliminar esta sala"; +App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; +App::$strings["I am online"] = "Estoy conectado/a"; +App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; +App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; +App::$strings["New Chatroom"] = "Nueva sala de chat"; +App::$strings["Chatroom name"] = "Nombre de la sala de chat"; +App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; +App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; +App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; +App::$strings["Expiration"] = "Caducidad"; +App::$strings["min"] = "min"; +App::$strings["Xchan Lookup"] = "Búsqueda de canales"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; +App::$strings["Missing room name"] = "Sala de chat sin nombre"; +App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; +App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; +App::$strings["Room not found."] = "Sala no encontrada."; +App::$strings["Room is full"] = "La sala está llena."; +App::$strings["\$Projectname Notification"] = "Notificación de \$Projectname"; +App::$strings["\$projectname"] = "\$projectname"; +App::$strings["Thank You,"] = "Gracias,"; +App::$strings["%s Administrator"] = "%s Administrador"; +App::$strings["%s "] = "%s "; +App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Aviso] Nuevo mensaje en %s"; +App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s."; +App::$strings["a private message"] = "un mensaje privado"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]"; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl] "; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]"; +App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Aviso] Nuevo comentario de %2\$s a la conversación #%1\$d"; +App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha comentado un elemento/conversación que ha estado siguiendo."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; +App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")"; +App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha publicado en su página del perfil en %3\$s"; +App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha publicado en [zrl=%3\$s]su página del perfil[/zrl]"; +App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le ha etiquetado"; +App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le ha etiquetado en %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; +App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque"; +App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le ha dado un toque en %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le ha dado un toque[/zrl]."; +App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s ha etiquetado su publicación"; +App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s"; +App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]"; +App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Aviso] Ha recibido una solicitud de conexión"; +App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; +App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; +App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad"; +App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s."; +App::$strings["Name:"] = "Nombre:"; +App::$strings["Photo:"] = "Foto:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; +App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; +App::$strings["created a new post"] = "ha creado una nueva entrada"; +App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; +App::$strings["Site Admin"] = "Administrador del sitio"; +App::$strings["Bug Report"] = "Informe de errores"; +App::$strings["View Bookmarks"] = "Ver los marcadores"; +App::$strings["My Chatrooms"] = "Mis salas de chat"; +App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; +App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; +App::$strings["Suggest Channels"] = "Sugerir canales"; +App::$strings["Login"] = "Iniciar sesión"; +App::$strings["Grid"] = "Red"; +App::$strings["Channel Home"] = "Mi canal"; +App::$strings["Events"] = "Eventos"; +App::$strings["Directory"] = "Directorio"; +App::$strings["Mail"] = "Correo"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Probar"; +App::$strings["Suggest"] = "Sugerir"; +App::$strings["Random Channel"] = "Canal aleatorio"; +App::$strings["Invite"] = "Invitar"; +App::$strings["Features"] = "Funcionalidades"; +App::$strings["Language"] = "Idioma"; +App::$strings["Post"] = "Publicación"; +App::$strings["Profile Photo"] = "Foto del perfil"; +App::$strings["Purchase"] = "Comprar"; +App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; +App::$strings["Only me"] = "Sólo yo"; +App::$strings["Public"] = "Público"; +App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; +App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; +App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; +App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; +App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; +App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; +App::$strings["Private Message"] = "Mensaje Privado"; +App::$strings["Select"] = "Seleccionar"; +App::$strings["Save to Folder"] = "Guardar en carpeta"; +App::$strings["I will attend"] = "Participaré"; +App::$strings["I will not attend"] = "No participaré"; +App::$strings["I might attend"] = "Quizá participe"; +App::$strings["I agree"] = "Estoy de acuerdo"; +App::$strings["I disagree"] = "No estoy de acuerdo"; +App::$strings["I abstain"] = "Me abstengo"; +App::$strings["Add Star"] = "Destacar añadiendo una estrella"; +App::$strings["Remove Star"] = "Eliminar estrella"; +App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida"; +App::$strings["starred"] = "preferidas"; +App::$strings["Message signature validated"] = "Firma de mensaje validada"; +App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta"; +App::$strings["Add Tag"] = "Añadir etiqueta"; +App::$strings["like"] = "me gusta"; +App::$strings["dislike"] = "no me gusta"; +App::$strings["Share This"] = "Compartir esto"; +App::$strings["share"] = "compartir"; +App::$strings["Delivery Report"] = "Informe de transmisión"; +App::$strings["%d comment"] = array( + 0 => "%d comentario", + 1 => "%d comentarios", +); +App::$strings["View %s's profile - %s"] = "Ver el perfil de %s - %s"; +App::$strings["to"] = "a"; +App::$strings["via"] = "mediante"; +App::$strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de \"muro\" a \"muro\")"; +App::$strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")"; +App::$strings["from %s"] = "desde %s"; +App::$strings["last edited: %s"] = "último cambio: %s"; +App::$strings["Expires: %s"] = "Caduca: %s"; +App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; +App::$strings["Add to Calendar"] = "Añadir al calendario"; +App::$strings["Mark all seen"] = "Marcar todo como visto"; +App::$strings["%s show all"] = "%s mostrar todo"; +App::$strings["Bold"] = "Negrita"; +App::$strings["Italic"] = "Itálico "; +App::$strings["Underline"] = "Subrayar"; +App::$strings["Quote"] = "Citar"; +App::$strings["Code"] = "Código"; +App::$strings["Image"] = "Imagen"; +App::$strings["Insert Link"] = "Insertar enlace"; +App::$strings["Video"] = "Vídeo"; +App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado."; +App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; +App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; +App::$strings["view full size"] = "Ver en el tamaño original"; +App::$strings["Administrator"] = "Administrador"; +App::$strings["No Subject"] = "Sin asunto"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Embedded content"] = "Contenido incorporado"; +App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; +App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales"; +App::$strings["Can view my webpages"] = "Pueden verse mis páginas web"; +App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; +App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta"; +App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención"; +App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; +App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; +App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; +App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; +App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; +App::$strings["(Unknown)"] = "(Desconocido)"; +App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; +App::$strings["Visible to you only."] = "Visible sólo para usted."; +App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; +App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; +App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; +App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; +App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; +App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; +App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; +App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; +App::$strings["Connection not found."] = "Conexión no encontrada"; +App::$strings["profile photo"] = "foto del perfil"; App::$strings["prev"] = "anterior"; App::$strings["first"] = "primera"; App::$strings["last"] = "última"; @@ -1877,6 +1640,7 @@ App::$strings["newer"] = "más recientes"; App::$strings["No connections"] = "Sin conexiones"; App::$strings["View all %s connections"] = "Ver todas las %s conexiones"; App::$strings["poke"] = "un toque"; +App::$strings["poked"] = "ha dado un toque a"; App::$strings["ping"] = "un \"ping\""; App::$strings["pinged"] = "ha enviado un \"ping\" a"; App::$strings["prod"] = "una incitación "; @@ -1920,189 +1684,33 @@ App::$strings["February"] = "febrero"; App::$strings["March"] = "marzo"; App::$strings["April"] = "abril"; App::$strings["May"] = "mayo"; -App::$strings["June"] = "junio"; -App::$strings["July"] = "julio"; -App::$strings["August"] = "agosto"; -App::$strings["September"] = "septiembre"; -App::$strings["October"] = "octubre"; -App::$strings["November"] = "noviembre"; -App::$strings["December"] = "diciembre"; -App::$strings["Unknown Attachment"] = "Adjunto no reconocido"; -App::$strings["unknown"] = "desconocido"; -App::$strings["remove category"] = "eliminar categoría"; -App::$strings["remove from file"] = "eliminar del fichero"; -App::$strings["default"] = "por defecto"; -App::$strings["Page layout"] = "Plantilla de la página"; -App::$strings["You can create your own with the layouts tool"] = "Puede crear su propia disposición gráfica con la herramienta de plantillas"; -App::$strings["Page content type"] = "Tipo de contenido de la página"; -App::$strings["Select an alternate language"] = "Seleccionar un idioma alternativo"; -App::$strings["activity"] = "la actividad"; -App::$strings["Design Tools"] = "Herramientas de diseño web"; -App::$strings["Pages"] = "Páginas"; -App::$strings["Logged out."] = "Desconectado/a."; -App::$strings["Failed authentication"] = "Autenticación fallida."; -App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales"; -App::$strings["Can view my webpages"] = "Pueden verse mis páginas web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; -App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta"; -App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; -App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; -App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; -App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; -App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; -App::$strings["General Features"] = "Funcionalidades básicas"; -App::$strings["Content Expiration"] = "Caducidad del contenido"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; -App::$strings["Multiple Profiles"] = "Múltiples perfiles"; -App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; -App::$strings["Advanced Profiles"] = "Perfiles avanzados"; -App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; -App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; -App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; -App::$strings["Web Pages"] = "Páginas web"; -App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; -App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal"; -App::$strings["Hide Rating"] = "Ocultar las valoraciones"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares."; -App::$strings["Private Notes"] = "Notas privadas"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; -App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; -App::$strings["Photo Location"] = "Ubicación de las fotos"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; -App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; -App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; -App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; -App::$strings["Expert Mode"] = "Modo de experto"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; -App::$strings["Premium Channel"] = "Canal premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; -App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; -App::$strings["Large Photos"] = "Fotos de gran tamaño"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; -App::$strings["Even More Encryption"] = "Más cifrado todavía"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; -App::$strings["Enable Voting Tools"] = "Permitir entradas con votación"; -App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; -App::$strings["Delayed Posting"] = "Publicación aplazada"; -App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; -App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; -App::$strings["Search by Date"] = "Buscar por fecha"; -App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; -App::$strings["Privacy Groups"] = "Grupos de canales"; -App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; -App::$strings["Saved Searches"] = "Búsquedas guardadas"; -App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; -App::$strings["Network Personal Tab"] = "Actividad personal"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; -App::$strings["Network New Tab"] = "Contenido nuevo"; -App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; -App::$strings["Affinity Tool"] = "Herramienta de afinidad"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; -App::$strings["Connection Filtering"] = "Filtrado de conexiones"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; -App::$strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; -App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; -App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; -App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; -App::$strings["Post Categories"] = "Categorías de entradas"; -App::$strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; -App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; -App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; -App::$strings["Saved Folders"] = "Carpetas guardadas"; -App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; -App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; -App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; -App::$strings["Star Posts"] = "Entradas destacadas"; -App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; -App::$strings["Tag Cloud"] = "Nube de etiquetas"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; -App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; -App::$strings["edit"] = "editar"; -App::$strings["Edit group"] = "Editar grupo"; -App::$strings["Add privacy group"] = "Añadir un grupo de canales"; -App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; -App::$strings["add"] = "añadir"; -App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; -App::$strings["Starts:"] = "Comienza:"; -App::$strings["Finishes:"] = "Finaliza:"; -App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; -App::$strings["Not specified"] = "Sin especificar"; -App::$strings["Needs Action"] = "Necesita de una intervención"; -App::$strings["Completed"] = "Completado/a"; -App::$strings["In Process"] = "En proceso"; -App::$strings["Cancelled"] = "Cancelado/a"; -App::$strings["Not a valid email address"] = "Dirección de correo no válida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; -App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; -App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; -App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; -App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; -App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; -App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; -App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; -App::$strings["your registration password"] = "su contraseña de registro"; -App::$strings["Registration details for %s"] = "Detalles del registro de %s"; -App::$strings["Account approved."] = "Cuenta aprobada."; -App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; -App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; -App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; -App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; -App::$strings["Channel location missing."] = "Falta la dirección del canal."; -App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; -App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; -App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; -App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; -App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; -App::$strings["Item was not found."] = "Elemento no encontrado."; -App::$strings["No source file."] = "Ningún fichero de origen"; -App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; -App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; -App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; -App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; -App::$strings["Path not available."] = "Ruta no disponible."; -App::$strings["Empty pathname"] = "Ruta vacía"; -App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; -App::$strings["Path not found."] = "Ruta no encontrada"; -App::$strings["mkdir failed."] = "mkdir ha fallado."; -App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; -App::$strings["Empty path"] = "Ruta vacía"; -App::$strings["Image/photo"] = "Imagen/foto"; -App::$strings["Encrypted content"] = "Contenido cifrado"; -App::$strings["Install %s element: "] = "Instalar el elemento %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; -App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; -App::$strings["$1 wrote:"] = "$1 escribió:"; -App::$strings["(Unknown)"] = "(Desconocido)"; -App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; -App::$strings["Visible to you only."] = "Visible sólo para usted."; -App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; -App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; -App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; -App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; -App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; -App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; -App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; -App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; -App::$strings["Connection not found."] = "Conexión no encontrada"; -App::$strings["profile photo"] = "foto del perfil"; -App::$strings["Embedded content"] = "Contenido incorporado"; -App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; +App::$strings["June"] = "junio"; +App::$strings["July"] = "julio"; +App::$strings["August"] = "agosto"; +App::$strings["September"] = "septiembre"; +App::$strings["October"] = "octubre"; +App::$strings["November"] = "noviembre"; +App::$strings["December"] = "diciembre"; +App::$strings["Unknown Attachment"] = "Adjunto no reconocido"; +App::$strings["unknown"] = "desconocido"; +App::$strings["remove category"] = "eliminar el tema"; +App::$strings["remove from file"] = "eliminar del fichero"; +App::$strings["default"] = "por defecto"; +App::$strings["Page layout"] = "Plantilla de la página"; +App::$strings["You can create your own with the layouts tool"] = "Puede crear su propia disposición gráfica con la herramienta de plantillas"; +App::$strings["Page content type"] = "Tipo de contenido de la página"; +App::$strings["Select an alternate language"] = "Seleccionar un idioma alternativo"; +App::$strings["activity"] = "la actividad"; +App::$strings["Design Tools"] = "Herramientas de diseño web"; +App::$strings["Pages"] = "Páginas"; +App::$strings["Import website..."] = "Importar un sitio web..."; +App::$strings["Select folder to import"] = "Seleccionar la carpeta que se va a importar"; +App::$strings["Import from a zipped folder:"] = "Importar desde una carpeta comprimida: "; +App::$strings["Import from cloud files:"] = "Importar desde los ficheros en la nube: "; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/canal/ruta/a la/carpeta"; +App::$strings["Enter path to website files"] = "Ruta a los ficheros del sitio web"; +App::$strings["Select folder"] = "Seleccionar la carpeta"; +App::$strings["Categories"] = "Temas"; App::$strings["System"] = "Sistema"; App::$strings["New App"] = "Nueva aplicación (app)"; App::$strings["Suggestions"] = "Sugerencias"; @@ -2113,6 +1721,9 @@ App::$strings["Enter channel address"] = "Dirección del canal"; App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; App::$strings["Notes"] = "Notas"; App::$strings["Remove term"] = "Eliminar término"; +App::$strings["Saved Searches"] = "Búsquedas guardadas"; +App::$strings["add"] = "añadir"; +App::$strings["Saved Folders"] = "Carpetas guardadas"; App::$strings["Everything"] = "Todo"; App::$strings["Archives"] = "Hemeroteca"; App::$strings["Refresh"] = "Recargar"; @@ -2127,6 +1738,9 @@ App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas"; App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; App::$strings["Private Mail Menu"] = "Menú de correo privado"; App::$strings["Combined View"] = "Vista combinada"; +App::$strings["Inbox"] = "Bandeja de entrada"; +App::$strings["Outbox"] = "Bandeja de salida"; +App::$strings["New Message"] = "Nuevo mensaje"; App::$strings["Conversations"] = "Conversaciones"; App::$strings["Received Messages"] = "Mensajes recibidos"; App::$strings["Sent Messages"] = "Enviar mensajes"; @@ -2135,6 +1749,7 @@ App::$strings["Delete conversation"] = "Eliminar conversación"; App::$strings["Events Tools"] = "Gestión de eventos"; App::$strings["Export Calendar"] = "Exportar el calendario"; App::$strings["Import Calendar"] = "Importar un calendario"; +App::$strings["Chatrooms"] = "Salas de chat"; App::$strings["Overview"] = "Resumen"; App::$strings["Chat Members"] = "Miembros del chat"; App::$strings["Wiki List"] = "Lista de wikis"; @@ -2156,12 +1771,273 @@ App::$strings["For Developers"] = "Para los desarrolladores"; App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; App::$strings["Inspect queue"] = "Examinar la cola"; App::$strings["DB updates"] = "Actualizaciones de la base de datos"; +App::$strings["Admin"] = "Administrador"; App::$strings["Plugin Features"] = "Extensiones"; -App::$strings[" and "] = " y "; -App::$strings["public profile"] = "el perfil público"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; +App::$strings["New window"] = "Nueva ventana"; +App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; +App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; +App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; +App::$strings["Custom selection"] = "Selección personalizada"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; +App::$strings["Show"] = "Mostrar"; +App::$strings["Don't show"] = "No mostrar"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje."; +App::$strings["Public Timeline"] = "Cronología pública"; +App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; +App::$strings["Empty name"] = "Nombre vacío"; +App::$strings["Name too long"] = "Nombre demasiado largo"; +App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; +App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; +App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; +App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; +App::$strings["Default Profile"] = "Perfil principal"; +App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; +App::$strings["Create New Profile"] = "Crear un nuevo perfil"; +App::$strings["Edit Profile"] = "Editar el perfil"; +App::$strings["Visible to everybody"] = "Visible para todos"; +App::$strings["Gender:"] = "Género:"; +App::$strings["Status:"] = "Estado:"; +App::$strings["Homepage:"] = "Página personal:"; +App::$strings["Online Now"] = "Ahora en línea"; +App::$strings["Like this channel"] = "Me gusta este canal"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Cumpleaños:"; +App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Orientación sexual:"; +App::$strings["Tags:"] = "Etiquetas:"; +App::$strings["Political Views:"] = "Posición política:"; +App::$strings["Religion:"] = "Religión:"; +App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; +App::$strings["Likes:"] = "Me gusta:"; +App::$strings["Dislikes:"] = "No me gusta:"; +App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; +App::$strings["My other channels:"] = "Mis otros canales:"; +App::$strings["Musical interests:"] = "Preferencias musicales:"; +App::$strings["Books, literature:"] = "Libros, literatura:"; +App::$strings["Television:"] = "Televisión:"; +App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; +App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; +App::$strings["Work/employment:"] = "Trabajo:"; +App::$strings["School/education:"] = "Estudios:"; +App::$strings["Like this thing"] = "Me gusta esto"; +App::$strings["Birthday"] = "Cumpleaños"; +App::$strings["Age: "] = "Edad:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; +App::$strings["never"] = "nunca"; +App::$strings["less than a second ago"] = "hace un instante"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "año", + 1 => "años", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mes", + 1 => "meses", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "semana", + 1 => "semanas", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "día", + 1 => "días", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "hora", + 1 => "horas", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuto", + 1 => "minutos", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "segundo", + 1 => "segundos", +); +App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; +App::$strings["Frequently"] = "Frecuentemente"; +App::$strings["Hourly"] = "Cada hora"; +App::$strings["Twice daily"] = "Dos veces al día"; +App::$strings["Daily"] = "Diariamente"; +App::$strings["Weekly"] = "Semanalmente"; +App::$strings["Monthly"] = "Mensualmente"; +App::$strings["Male"] = "Hombre"; +App::$strings["Female"] = "Mujer"; +App::$strings["Currently Male"] = "Actualmente hombre"; +App::$strings["Currently Female"] = "Actualmente mujer"; +App::$strings["Mostly Male"] = "Generalmente hombre"; +App::$strings["Mostly Female"] = "Generalmente mujer"; +App::$strings["Transgender"] = "Transgénero"; +App::$strings["Intersex"] = "Intersexual"; +App::$strings["Transsexual"] = "Transexual"; +App::$strings["Hermaphrodite"] = "Hermafrodita"; +App::$strings["Neuter"] = "Neutral"; +App::$strings["Non-specific"] = "No especificado"; +App::$strings["Undecided"] = "Indeciso/a"; +App::$strings["Males"] = "Hombres"; +App::$strings["Females"] = "Mujeres"; +App::$strings["Gay"] = "Homosexual"; +App::$strings["Lesbian"] = "Lesbiana"; +App::$strings["No Preference"] = "Sin preferencias"; +App::$strings["Bisexual"] = "Bisexual"; +App::$strings["Autosexual"] = "Autosexual"; +App::$strings["Abstinent"] = "Casto/a"; +App::$strings["Virgin"] = "Virgen"; +App::$strings["Deviant"] = "Fuera de lo común"; +App::$strings["Fetish"] = "Fetichista"; +App::$strings["Oodles"] = "Orgías"; +App::$strings["Nonsexual"] = "Asexual"; +App::$strings["Single"] = "Soltero/a"; +App::$strings["Lonely"] = "Solo/a"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "No disponible"; +App::$strings["Has crush"] = "Enamorado/a"; +App::$strings["Infatuated"] = "Apasionado/a"; +App::$strings["Dating"] = "Saliendo con alguien"; +App::$strings["Unfaithful"] = "Infiel"; +App::$strings["Sex Addict"] = "Con adicción al sexo"; +App::$strings["Friends/Benefits"] = "Amigos con algo extra"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Prometido/a"; +App::$strings["Married"] = "Casado/a"; +App::$strings["Imaginarily married"] = "Casado/a en sueños"; +App::$strings["Partners"] = "Pareja"; +App::$strings["Cohabiting"] = "Cohabitando"; +App::$strings["Common law"] = "Matrimonio tradicional"; +App::$strings["Happy"] = "Felíz"; +App::$strings["Not looking"] = "No estoy buscando"; +App::$strings["Swinger"] = "Libertino"; +App::$strings["Betrayed"] = "Engañado/a"; +App::$strings["Separated"] = "Separado/a"; +App::$strings["Unstable"] = "Inestable"; +App::$strings["Divorced"] = "Divorciado/a"; +App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; +App::$strings["Widowed"] = "Viudo/a"; +App::$strings["Uncertain"] = "Indeterminado"; +App::$strings["It's complicated"] = "Es complicado"; +App::$strings["Don't care"] = "No me importa"; +App::$strings["Ask me"] = "Pregúnteme"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; +App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; +App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; +App::$strings["a new photo"] = "una nueva foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; +App::$strings["Photo Albums"] = "Álbumes de fotos"; +App::$strings["Upload New Photos"] = "Subir nuevas fotos"; +App::$strings["guest:"] = "invitado: "; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; +App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; +App::$strings["Categories:"] = "Temas:"; +App::$strings["Filed under:"] = "Archivado bajo:"; +App::$strings["View in context"] = "Mostrar en su contexto"; +App::$strings["remove"] = "eliminar"; +App::$strings["Loading..."] = "Cargando..."; +App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; +App::$strings["View Source"] = "Ver el código fuente de la entrada"; +App::$strings["Follow Thread"] = "Seguir este hilo"; +App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; +App::$strings["Activity/Posts"] = "Actividad y publicaciones"; +App::$strings["Edit Connection"] = "Editar conexión"; +App::$strings["Message"] = "Mensaje"; +App::$strings["%s likes this."] = "A %s le gusta esto."; +App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; +App::$strings["%2\$d people like this."] = array( + 0 => "a %2\$d personas le gusta esto.", + 1 => "A %2\$d personas les gusta esto.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "a %2\$d personas no les gusta esto.", + 1 => "A %2\$d personas no les gusta esto.", +); +App::$strings["and"] = "y"; +App::$strings[", and %d other people"] = array( + 0 => ", y %d persona más", + 1 => ", y %d personas más", +); +App::$strings["%s like this."] = "A %s le gusta esto."; +App::$strings["%s don't like this."] = "A %s no le gusta esto."; +App::$strings["Set your location"] = "Establecer su ubicación"; +App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; +App::$strings["Tag term:"] = "Término de la etiqueta:"; +App::$strings["Where are you right now?"] = "¿Donde está ahora?"; +App::$strings["Comments enabled"] = "Comentarios habilitados"; +App::$strings["Comments disabled"] = "Comentarios deshabilitados"; +App::$strings["Page link name"] = "Nombre del enlace de la página"; +App::$strings["Post as"] = "Publicar como"; +App::$strings["Toggle voting"] = "Cambiar votación"; +App::$strings["Disable comments"] = "Dehabilitar los comentarios"; +App::$strings["Toggle comments"] = "Activar o desactivar los comentarios"; +App::$strings["Categories (optional, comma-separated list)"] = "Temas (opcional, lista separada por comas)"; +App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; +App::$strings["Set publish date"] = "Establecer la fecha de publicación"; +App::$strings["Discover"] = "Descubrir"; +App::$strings["Imported public streams"] = "Contenidos públicos importados"; +App::$strings["Commented Order"] = "Comentarios recientes"; +App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; +App::$strings["Posted Order"] = "Publicaciones recientes"; +App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; +App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; +App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; +App::$strings["Starred"] = "Preferidas"; +App::$strings["Favourite Posts"] = "Publicaciones favoritas"; +App::$strings["Spam"] = "Correo basura"; +App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; +App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; +App::$strings["About"] = "Mi perfil"; +App::$strings["Profile Details"] = "Detalles del perfil"; +App::$strings["Files and Storage"] = "Ficheros y repositorio"; +App::$strings["Bookmarks"] = "Marcadores"; +App::$strings["Saved Bookmarks"] = "Marcadores guardados"; +App::$strings["Manage Webpages"] = "Administrar páginas web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Participaré", + 1 => "Participaré", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "No participaré", + 1 => "No participaré", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso/a", + 1 => "Indecisos/as", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "De acuerdo", + 1 => "De acuerdo", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "En desacuerdo", + 1 => "En desacuerdo", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "se abstiene", + 1 => "Se abstienen", +); +App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; +App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; +App::$strings["edit"] = "editar"; +App::$strings["Privacy Groups"] = "Grupos de canales"; +App::$strings["Edit group"] = "Editar grupo"; +App::$strings["Add privacy group"] = "Añadir un grupo de canales"; +App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; +App::$strings["New Page"] = "Nueva página"; +App::$strings["Title"] = "Título"; +App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; +App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; +App::$strings["Starts:"] = "Comienza:"; +App::$strings["Finishes:"] = "Finaliza:"; +App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; +App::$strings["Not specified"] = "Sin especificar"; +App::$strings["Needs Action"] = "Necesita de una intervención"; +App::$strings["Completed"] = "Completado/a"; +App::$strings["In Process"] = "En proceso"; +App::$strings["Cancelled"] = "Cancelado/a"; App::$strings["Attachments:"] = "Ficheros adjuntos:"; App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; App::$strings["Delete this item?"] = "¿Borrar este elemento?"; @@ -2222,6 +2098,140 @@ App::$strings["__ctx:calendar__ month"] = "mes"; App::$strings["__ctx:calendar__ week"] = "semana"; App::$strings["__ctx:calendar__ day"] = "día"; App::$strings["__ctx:calendar__ All day"] = "Todos los días"; +App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; +App::$strings["Channel location missing."] = "Falta la dirección del canal."; +App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; +App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; +App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; +App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; +App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; +App::$strings["Item was not found."] = "Elemento no encontrado."; +App::$strings["No source file."] = "Ningún fichero de origen"; +App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; +App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; +App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; +App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; +App::$strings["Path not available."] = "Ruta no disponible."; +App::$strings["Empty pathname"] = "Ruta vacía"; +App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; +App::$strings["Path not found."] = "Ruta no encontrada"; +App::$strings["mkdir failed."] = "mkdir ha fallado."; +App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; +App::$strings["Empty path"] = "Ruta vacía"; +App::$strings["Logged out."] = "Desconectado/a."; +App::$strings["Failed authentication"] = "Autenticación fallida."; +App::$strings["Login failed."] = "El acceso ha fallado."; +App::$strings[" and "] = " y "; +App::$strings["public profile"] = "el perfil público"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; +App::$strings["Invalid data packet"] = "Paquete de datos no válido"; +App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; +App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; +App::$strings["invalid target signature"] = "La firma recibida no es válida"; +App::$strings["General Features"] = "Funcionalidades básicas"; +App::$strings["Content Expiration"] = "Caducidad del contenido"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; +App::$strings["Multiple Profiles"] = "Múltiples perfiles"; +App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; +App::$strings["Advanced Profiles"] = "Perfiles avanzados"; +App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; +App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; +App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; +App::$strings["Web Pages"] = "Páginas web"; +App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; +App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal"; +App::$strings["Private Notes"] = "Notas privadas"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; +App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; +App::$strings["Photo Location"] = "Ubicación de las fotos"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; +App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; +App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; +App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; +App::$strings["Expert Mode"] = "Modo de experto"; +App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; +App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; +App::$strings["Large Photos"] = "Fotos de gran tamaño"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; +App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; +App::$strings["Even More Encryption"] = "Más cifrado todavía"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; +App::$strings["Enable Voting Tools"] = "Permitir entradas con votación"; +App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; +App::$strings["Disable Comments"] = "Deshabilitar comentarios"; +App::$strings["Provide the option to disable comments for a post"] = "Proporcionar la opción de desactivar los comentarios de una publicación"; +App::$strings["Delayed Posting"] = "Publicación aplazada"; +App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; +App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; +App::$strings["Search by Date"] = "Buscar por fecha"; +App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; +App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; +App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; +App::$strings["Network Personal Tab"] = "Actividad personal"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; +App::$strings["Network New Tab"] = "Contenido nuevo"; +App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; +App::$strings["Affinity Tool"] = "Herramienta de afinidad"; +App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; +App::$strings["Connection Filtering"] = "Filtrado de conexiones"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; +App::$strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; +App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; +App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; +App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; +App::$strings["Post Categories"] = "Temas de las entradas"; +App::$strings["Add categories to your posts"] = "Añadir temas a sus publicaciones"; +App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; +App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; +App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; +App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; +App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; +App::$strings["Star Posts"] = "Entradas destacadas"; +App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; +App::$strings["Tag Cloud"] = "Nube de etiquetas"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; +App::$strings["Premium Channel"] = "Canal premium"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; +App::$strings["Tags"] = "Etiquetas"; +App::$strings["Keywords"] = "Palabras clave"; +App::$strings["have"] = "tener"; +App::$strings["has"] = "tiene"; +App::$strings["want"] = "quiero"; +App::$strings["wants"] = "quiere"; +App::$strings["likes"] = "gusta de"; +App::$strings["dislikes"] = "no gusta de"; +App::$strings["Not a valid email address"] = "Dirección de correo no válida"; +App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; +App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; +App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; +App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; +App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; +App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; +App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; +App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; +App::$strings["your registration password"] = "su contraseña de registro"; +App::$strings["Registration details for %s"] = "Detalles del registro de %s"; +App::$strings["Account approved."] = "Cuenta aprobada."; +App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; +App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; +App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; +App::$strings["Image/photo"] = "Imagen/foto"; +App::$strings["Encrypted content"] = "Contenido cifrado"; +App::$strings["Install %s element: "] = "Instalar el elemento %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; +App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["$1 wrote:"] = "$1 escribió:"; App::$strings["%d invitation available"] = array( 0 => "%d invitación pendiente", 1 => "%d invitaciones disponibles", @@ -2246,57 +2256,51 @@ App::$strings["No recipient provided."] = "No se ha especificado ningún destina App::$strings["[no subject]"] = "[sin asunto]"; App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; -App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; -App::$strings["Custom selection"] = "Selección personalizada"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; -App::$strings["Show"] = "Mostrar"; -App::$strings["Don't show"] = "No mostrar"; -App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje."; -App::$strings["Birthday"] = "Cumpleaños"; -App::$strings["Age: "] = "Edad:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; -App::$strings["never"] = "nunca"; -App::$strings["less than a second ago"] = "hace un instante"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "año", - 1 => "años", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mes", - 1 => "meses", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "semana", - 1 => "semanas", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "día", - 1 => "días", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "hora", - 1 => "horas", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuto", - 1 => "minutos", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "segundo", - 1 => "segundos", -); -App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; -App::$strings["Public Timeline"] = "Cronología pública"; -App::$strings["Invalid data packet"] = "Paquete de datos no válido"; -App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; -App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; -App::$strings["invalid target signature"] = "La firma recibida no es válida"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; +App::$strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado."; +App::$strings["Logout"] = "Finalizar sesión"; +App::$strings["End this session"] = "Finalizar esta sesión"; +App::$strings["Home"] = "Inicio"; +App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; +App::$strings["Your profile page"] = "Su página del perfil"; +App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; +App::$strings["Edit your profile"] = "Editar su perfil"; +App::$strings["Your photos"] = "Sus fotos"; +App::$strings["Your files"] = "Sus ficheros"; +App::$strings["Your chatrooms"] = "Sus salas de chat"; +App::$strings["Your bookmarks"] = "Sus marcadores"; +App::$strings["Your webpages"] = "Sus páginas web"; +App::$strings["Your wiki"] = "Su wiki"; +App::$strings["Sign in"] = "Acceder"; +App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; +App::$strings["Remote authentication"] = "Acceder desde su servidor"; +App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; +App::$strings["Home Page"] = "Página de inicio"; +App::$strings["Create an account"] = "Crear una cuenta"; +App::$strings["Help and documentation"] = "Ayuda y documentación"; +App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; +App::$strings["Channel Directory"] = "Directorio de canales"; +App::$strings["Your grid"] = "Mi red"; +App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; +App::$strings["Channel home"] = "Mi canal"; +App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; +App::$strings["Notices"] = "Avisos"; +App::$strings["Notifications"] = "Notificaciones"; +App::$strings["See all notifications"] = "Ver todas las notificaciones"; +App::$strings["Private mail"] = "Correo privado"; +App::$strings["See all private messages"] = "Ver todas los mensajes privados"; +App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; +App::$strings["Event Calendar"] = "Calendario de eventos"; +App::$strings["See all events"] = "Ver todos los eventos"; +App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; +App::$strings["Manage Your Channels"] = "Gestionar sus canales"; +App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; +App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; +App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; +App::$strings["Please wait..."] = "Espere por favor…"; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinido)"; App::$strings["Theme settings"] = "Ajustes del tema"; -App::$strings["Select scheme"] = "Elegir un esquema"; App::$strings["Narrow navbar"] = "Estrechar la barra de navegación"; App::$strings["Navigation bar background color"] = "Color de fondo de la barra de navegación"; App::$strings["Navigation bar gradient top color"] = "Color superior del gradiente de la barra de navegación"; diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 9219a1c06..b9b6dd2e5 100644 --- a/view/nl/hmessages.po +++ b/view/nl/hmessages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-10 00:02-0700\n" -"PO-Revision-Date: 2016-06-10 13:57+0000\n" +"POT-Creation-Date: 2016-08-26 00:02-0700\n" +"PO-Revision-Date: 2016-08-31 11:08+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,11 +18,157 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ../../Zotlabs/Access/PermissionRoles.php:182 +#: ../../include/permissions.php:939 +msgid "Social Networking" +msgstr "Sociaal netwerk" + +#: ../../Zotlabs/Access/PermissionRoles.php:183 +#: ../../include/permissions.php:939 +msgid "Social - Mostly Public" +msgstr "Sociaal - Vrijwel alles openbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:184 +#: ../../include/permissions.php:939 +msgid "Social - Restricted" +msgstr "Sociaal - Beperkt zichtbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:185 +#: ../../include/permissions.php:939 +msgid "Social - Private" +msgstr "Sociaal - Verborgen kanaal" + +#: ../../Zotlabs/Access/PermissionRoles.php:188 +#: ../../include/permissions.php:940 +msgid "Community Forum" +msgstr "Groepsforum" + +#: ../../Zotlabs/Access/PermissionRoles.php:189 +#: ../../include/permissions.php:940 +msgid "Forum - Mostly Public" +msgstr "Forum - Vrijwel alles openbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:190 +#: ../../include/permissions.php:940 +msgid "Forum - Restricted" +msgstr "Forum - Beperkt zichtbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:191 +#: ../../include/permissions.php:940 +msgid "Forum - Private" +msgstr "Forum - Verborgen kanaal" + +#: ../../Zotlabs/Access/PermissionRoles.php:194 +#: ../../include/permissions.php:941 +msgid "Feed Republish" +msgstr "Feed herpubliceren" + +#: ../../Zotlabs/Access/PermissionRoles.php:195 +#: ../../include/permissions.php:941 +msgid "Feed - Mostly Public" +msgstr "Feed - Vrijwel alles openbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:196 +#: ../../include/permissions.php:941 +msgid "Feed - Restricted" +msgstr "Feed - Beperkt zichtbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:199 +#: ../../include/permissions.php:942 +msgid "Special Purpose" +msgstr "Speciaal doel" + +#: ../../Zotlabs/Access/PermissionRoles.php:200 +#: ../../include/permissions.php:942 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciaal - Beroemdheid/alleen volgen" + +#: ../../Zotlabs/Access/PermissionRoles.php:201 +#: ../../include/permissions.php:942 +msgid "Special - Group Repository" +msgstr "Speciaal - Groepsopslag" + +#: ../../Zotlabs/Access/PermissionRoles.php:204 +#: ../../include/permissions.php:943 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 +msgid "Other" +msgstr "Anders" + +#: ../../Zotlabs/Access/PermissionRoles.php:205 +#: ../../include/permissions.php:943 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" + +#: ../../Zotlabs/Access/Permissions.php:30 +msgid "Can view my channel stream and posts" +msgstr "Kan mijn kanaal en berichten bekijken" + +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:36 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" + +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:30 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" + +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:31 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" + +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:32 +msgid "Can view my file storage and photos" +msgstr "Kan mijn foto's en andere bestanden bekijken" + +#: ../../Zotlabs/Access/Permissions.php:35 +msgid "Can upload/modify my file storage and photos" +msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" + +#: ../../Zotlabs/Access/Permissions.php:36 +msgid "Can view my channel webpages" +msgstr "Kan de webpagina's van mijn kanaal bekijken" + +#: ../../Zotlabs/Access/Permissions.php:37 +msgid "Can create/edit my channel webpages" +msgstr "Kan wegpagina's van mijn kanaal aanmaken en bewerken" + +#: ../../Zotlabs/Access/Permissions.php:38 +msgid "Can post on my channel (wall) page" +msgstr "Kan een bericht in mijn kanaal plaatsen" + +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:38 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" + +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:39 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" + +#: ../../Zotlabs/Access/Permissions.php:41 +msgid "Can like/dislike profiles and profile things" +msgstr "Kan profielen en profieldingen leuk en niet leuk vinden " + +#: ../../Zotlabs/Access/Permissions.php:42 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" + +#: ../../Zotlabs/Access/Permissions.php:43 +msgid "Can chat with me" +msgstr "Kan met mij chatten" + +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:47 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" + +#: ../../Zotlabs/Access/Permissions.php:45 +msgid "Can administer my channel" +msgstr "Kan mijn kanaal beheren" + #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "omhoog" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2657 msgid "Collection" msgstr "map" @@ -46,16 +192,17 @@ msgstr "Planning-postvak IN" msgid "Schedule Outbox" msgstr "Planning-postvak UIT" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 -#: ../../include/conversation.php:1032 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 +#: ../../Zotlabs/Module/Photos.php:1249 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1613 +#: ../../include/conversation.php:1033 msgid "Unknown" msgstr "Onbekend" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1672 +#: ../../include/nav.php:95 msgid "Files" msgstr "Bestanden" @@ -67,24 +214,24 @@ msgstr "Totaal" msgid "Shared" msgstr "Gedeeld" -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:216 +#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 msgid "Create" msgstr "Aanmaken" -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 +#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 +#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1626 msgid "Upload" msgstr "Uploaden" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 -#: ../../Zotlabs/Module/Sharedwithme.php:99 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:684 +#: ../../Zotlabs/Module/Settings.php:710 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 msgid "Name" msgstr "Naam" @@ -93,7 +240,7 @@ msgid "Type" msgstr "Type" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1326 msgid "Size" msgstr "Grootte" @@ -102,127 +249,121 @@ msgstr "Grootte" msgid "Last Modified" msgstr "Laatst gewijzigd" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Storage/Browser.php:240 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:113 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/channel.php:937 ../../include/channel.php:941 -#: ../../include/menu.php:108 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 +#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Admin.php:2127 +#: ../../Zotlabs/Module/Webpages.php:217 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/menu.php:113 msgid "Edit" msgstr "Bewerken" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Storage/Browser.php:241 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 -#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 +#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../Zotlabs/Module/Editwebpage.php:170 +#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1226 ../../Zotlabs/Module/Admin.php:2128 +#: ../../Zotlabs/Module/Webpages.php:219 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../include/conversation.php:660 msgid "Delete" msgstr "Verwijderen" -#: ../../Zotlabs/Storage/Browser.php:285 +#: ../../Zotlabs/Storage/Browser.php:301 #, php-format msgid "You are using %1$s of your available file storage." msgstr "Je gebruikt %1$s van de beschikbare bestandsopslag." -#: ../../Zotlabs/Storage/Browser.php:290 +#: ../../Zotlabs/Storage/Browser.php:306 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "Je gebruikt %1$s van totaal %2$s beschikbare bestandsopslag. (%3$s%)" -#: ../../Zotlabs/Storage/Browser.php:302 +#: ../../Zotlabs/Storage/Browser.php:317 msgid "WARNING:" msgstr "WAARSCHUWING:" -#: ../../Zotlabs/Storage/Browser.php:305 +#: ../../Zotlabs/Storage/Browser.php:322 msgid "Create new folder" msgstr "Nieuwe map aanmaken" -#: ../../Zotlabs/Storage/Browser.php:307 +#: ../../Zotlabs/Storage/Browser.php:324 msgid "Upload file" msgstr "Bestand uploaden" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 -msgid "Permission denied" -msgstr "Toegang geweigerd" +#: ../../Zotlabs/Storage/Browser.php:337 +msgid "Drop files here to immediately upload" +msgstr "Sleep bestanden hierheen om ze onmiddelijk te uploaden" -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Setup.php:219 +#: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:104 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:93 +#: ../../Zotlabs/Module/Filestorage.php:120 +#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Webpages.php:95 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 +#: ../../Zotlabs/Module/Channel.php:268 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Profile_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:278 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 #: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/photos.php:27 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/items.php:3477 ../../include/photos.php:27 +#: ../../include/attach.php:142 ../../include/attach.php:190 +#: ../../include/attach.php:253 ../../include/attach.php:267 +#: ../../include/attach.php:274 ../../include/attach.php:339 +#: ../../include/attach.php:353 ../../include/attach.php:360 +#: ../../include/attach.php:440 ../../include/attach.php:902 +#: ../../include/attach.php:973 ../../include/attach.php:1125 msgid "Permission denied." msgstr "Toegang geweigerd." @@ -230,31 +371,40 @@ msgstr "Toegang geweigerd." msgid "Not Found" msgstr "Niet gevonden" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Pagina niet gevonden." +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../include/items.php:384 +msgid "Permission denied" +msgstr "Toegang geweigerd" + #: ../../Zotlabs/Zot/Auth.php:138 msgid "" "Remote authentication blocked. You are logged into this site locally. Please" " logout and retry." msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." -#: ../../Zotlabs/Zot/Auth.php:246 ../../Zotlabs/Module/Openid.php:76 -#: ../../Zotlabs/Module/Openid.php:183 +#: ../../Zotlabs/Zot/Auth.php:246 #, php-format msgid "Welcome %s. Remote authentication successful." msgstr "Welkom %s. Authenticatie op afstand geslaagd." -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 +#: ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Filestorage.php:59 +#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 +#: ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "Opgevraagd profiel is niet beschikbaar" @@ -262,1296 +412,1347 @@ msgstr "Opgevraagd profiel is niet beschikbaar" msgid "Some blurb about what to do when you're new here" msgstr "Welkom op $Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van $Projectname kunt vinden. Voor hulp met $Projectname klik je op het vraagteken." -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Bloknaam" - -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 -msgid "Blocks" -msgstr "Blokken" +#: ../../Zotlabs/Module/Chatsvc.php:117 +msgid "Away" +msgstr "Afwezig" -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" -msgstr "Bloktitel" +#: ../../Zotlabs/Module/Chatsvc.php:122 +msgid "Online" +msgstr "Online" -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" -msgstr "Aangemaakt" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Ongeldig bericht" -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" -msgstr "Bewerkt" +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "geen resultaten" -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" -msgstr "Delen" +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "kanaalsync verwerkt" -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" -msgstr "Weergeven" +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "in wachtrij" -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "verstuurd" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permissies niet toegestaan" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "geaccepteerd om afgeleverd te worden" -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "geüpdatet" -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1732 -msgid "Link to Source" -msgstr "Originele locatie" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "update genegeerd" -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "Gebeurtenis bewerken" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "toegang geweigerd" -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "Gebeurtenis aanmaken" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "ontvanger niet gevonden" -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" -msgstr "Vorige" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "Privébericht ingetrokken" -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Volgende" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "dubbel privébericht ontvangen" -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "Exporteren" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "privébericht afgeleverd" -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "Importeren" +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Afleveringsrapport voor %1$s" -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Filestorage.php:162 -#: ../../Zotlabs/Module/Import.php:550 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Settings.php:842 -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Opslaan" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opties" -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "Vandaag" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Opnieuw afleveren" -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" -msgstr "Berichten en reacties" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" -msgstr "Alleen berichten" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen gaan." -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "Yes" +msgstr "Ja" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Chatkanaal verwijderen" +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:463 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "No" +msgstr "Nee" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Beoordeling" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ik ben online" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Website:" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" -msgstr "Vul een URL in:" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Beoordeling (deze informatie is openbaar)" -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" -msgstr "Tekst versleutelen" +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" -msgstr "Weblink invoegen" +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Setup.php:316 +#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Settings.php:682 ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:886 ../../Zotlabs/Module/Settings.php:912 +#: ../../Zotlabs/Module/Settings.php:935 +#: ../../Zotlabs/Module/Settings.php:1040 +#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:701 ../../Zotlabs/Module/Admin.php:784 +#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Admin.php:1662 +#: ../../Zotlabs/Module/Admin.php:1747 ../../Zotlabs/Module/Admin.php:2130 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:711 +#: ../../include/widgets.php:763 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" +msgstr "Opslaan" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Functie uitgeschakeld." +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1351 +msgid "Public Hubs" +msgstr "Openbare hubs" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Naam chatkanaal" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Aantal minuten voordat chatberichten worden verwijderd" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Toegangs-
     type" -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" -msgstr "Permissies" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Registratie-
     beleid" -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Stats" -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Geen chatkanalen beschikbaar" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" -msgstr "Nieuwe aanmaken" +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Beoordelingen" -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Verloopt na" +#: ../../Zotlabs/Module/Pubsites.php:43 +msgid "Rate" +msgstr "Beoordeel" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Locatie" -#: ../../Zotlabs/Module/Chatsvc.php:117 -msgid "Away" -msgstr "Afwezig" +#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Webpages.php:223 +#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Weergeven" -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "Online" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Ongeldig item." +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Ga verder" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Registreren van nieuwe accounts is op deze hub uitgeschakeld." -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "Registraties op deze hub moeten eerst worden goedgekeurd." -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registreer op een andere hub." -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +#: ../../Zotlabs/Module/Register.php:204 msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze $Projectname-hub" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ik ben 13 jaar of ouder en accepteer de %s van deze $Projectname-hub" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Jouw e-mailadres" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de connectie-gegevens." +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" -#: ../../Zotlabs/Module/Connedit.php:227 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" -#: ../../Zotlabs/Module/Connedit.php:229 -msgid "Failed to update connection record." -msgstr "Bijwerken van connectie-gegevens mislukt." +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Name or caption" +msgstr "Naam" -#: ../../Zotlabs/Module/Connedit.php:276 -msgid "is now connected to" -msgstr "is nu verbonden met" +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 -msgid "No" -msgstr "Nee" +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +msgid "Choose a short nickname" +msgstr "Korte bijnaam" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 -msgid "Yes" -msgstr "Ja" +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" -#: ../../Zotlabs/Module/Connedit.php:411 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Channel role and privacy" +msgstr "Kanaaltype en privacy" -#: ../../Zotlabs/Module/Connedit.php:425 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Select a channel role with your privacy requirements." +msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 -msgid "Unable to set address book parameters." -msgstr "Niet in staat om de parameters van connecties in te stellen." +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Read more about roles" +msgstr "Lees meer over kanaaltypes" -#: ../../Zotlabs/Module/Connedit.php:503 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "Nee" -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 -msgid "View Profile" -msgstr "Profiel weergeven" +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:522 -#, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" +#: ../../Zotlabs/Module/Register.php:248 ../../Zotlabs/Module/Admin.php:503 +msgid "Registration" +msgstr "Registratie" -#: ../../Zotlabs/Module/Connedit.php:526 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" +#: ../../Zotlabs/Module/Register.php:253 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." -#: ../../Zotlabs/Module/Connedit.php:529 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" +#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 +#: ../../boot.php:1720 +msgid "Register" +msgstr "Registreren" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Recent Activity" -msgstr "Recente activiteit/berichten" +#: ../../Zotlabs/Module/Register.php:266 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder." -#: ../../Zotlabs/Module/Connedit.php:536 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Deblokkeren" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Blokkeren" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" -#: ../../Zotlabs/Module/Connedit.php:543 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Openbare toegang geweigerd." -#: ../../Zotlabs/Module/Connedit.php:544 -msgid "This connection is blocked!" -msgstr "Deze connectie is geblokkeerd!" +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 +#: ../../Zotlabs/Module/Admin.php:1575 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3398 +msgid "Item not found." +msgstr "Item niet gevonden." -#: ../../Zotlabs/Module/Connedit.php:548 -msgid "Unignore" -msgstr "Niet meer negeren" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/conversation.php:1665 ../../include/nav.php:94 +msgid "Photos" +msgstr "Foto's" -#: ../../Zotlabs/Module/Connedit.php:548 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Negeren" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Settings.php:683 ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Admin.php:1420 ../../Zotlabs/Module/Wiki.php:171 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 +#: ../../include/conversation.php:1292 +msgid "Cancel" +msgstr "Annuleren" -#: ../../Zotlabs/Module/Connedit.php:551 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Ongeldig item." -#: ../../Zotlabs/Module/Connedit.php:552 -msgid "This connection is ignored!" -msgstr "Deze connectie wordt genegeerd!" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Unarchive" -msgstr "Niet meer archiveren" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Archive" -msgstr "Archiveren" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Bewaar in map: " -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- kies map -" -#: ../../Zotlabs/Module/Connedit.php:560 -msgid "This connection is archived!" -msgstr "Deze connectie is gearchiveerd!" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2047 +#: ../../Zotlabs/Module/Admin.php:2067 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Opslaan" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Unhide" -msgstr "Niet meer verbergen" +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "Collectie niet gevonden" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Hide" -msgstr "Verbergen" +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "Niet zo'n kanaal" -#: ../../Zotlabs/Module/Connedit.php:567 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "This connection is hidden!" -msgstr "Deze connectie is verborgen!" +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Delete this connection" -msgstr "Deze connectie verwijderen" +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Privacygroep is leeg" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 -msgid "Me" -msgstr "Ik" +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Privacygroep: " -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 -msgid "Family" -msgstr "Familie" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Ongeldige connectie." -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 -msgid "Friends" -msgstr "Vrienden" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Geblokkeerd" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "Kennissen" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Genegeerd" + +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Verborgen" + +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Gearchiveerd" + +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1568 +msgid "New" +msgstr "Nieuw" -#: ../../Zotlabs/Module/Connedit.php:594 #: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:497 msgid "All" msgstr "Alles" -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Approve this connection" -msgstr "Deze connectie accepteren" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nieuwe connecties" -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Accept connection to allow communication" -msgstr "Keur deze connectie goed om communicatie toe te staan" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Nog te accepteren (nieuwe) connecties weergeven" -#: ../../Zotlabs/Module/Connedit.php:659 -msgid "Set Affinity" -msgstr "Verwantschapsfilter instellen" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Alle connecties" -#: ../../Zotlabs/Module/Connedit.php:662 -msgid "Set Profile" -msgstr "Profiel instellen" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Toon alle connecties" -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Set Affinity & Profile" -msgstr "Verwantschapsfilter en profiel instellen" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Toon alleen geblokkeerde connecties" -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "none" -msgstr "geen" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Toon alleen genegeerde connecties" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 -msgid "Connection Default Permissions" -msgstr "Standaard permissies voor connecties" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Toon alleen gearchiveerde connecties" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Toon alleen verborgen connecties" -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Apply these permissions automatically" -msgstr "Deze permissies automatisch toepassen" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Moet nog geaccepteerd worden" -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Connection requests will be approved without your interaction" -msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "This connection's primary address is" -msgstr "Het primaire kanaaladres van deze connectie is" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Connectie bewerken" -#: ../../Zotlabs/Module/Connedit.php:706 -msgid "Available locations:" -msgstr "Beschikbare locaties:" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Connectie verwijderen" -#: ../../Zotlabs/Module/Connedit.php:710 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Kanaaladres" -#: ../../Zotlabs/Module/Connedit.php:711 -msgid "Connection Tools" -msgstr "Hulpmiddelen" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Netwerk" -#: ../../Zotlabs/Module/Connedit.php:713 -msgid "Slide to adjust your degree of friendship" -msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:723 +msgid "Status" +msgstr "Status" -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Beoordeling" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "Verbonden" -#: ../../Zotlabs/Module/Connedit.php:715 -msgid "Slide to adjust your rating" -msgstr "Gebruik de schuif om je beoordeling te geven" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Connectie accepteren" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 -msgid "Optionally explain your rating" -msgstr "Verklaar jouw beoordeling (niet verplicht)" +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Approve" +msgstr "Goedkeuren" -#: ../../Zotlabs/Module/Connedit.php:718 -msgid "Custom Filter" -msgstr "Berichtenfilter" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Connectie negeren" -#: ../../Zotlabs/Module/Connedit.php:719 -msgid "Only import posts with this text" -msgstr "Importeer alleen berichten met deze tekst" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Negeren" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Recente activiteit" -#: ../../Zotlabs/Module/Connedit.php:720 -msgid "Do not import posts with this text" -msgstr "Importeer geen berichten met deze tekst" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:855 ../../include/nav.php:190 +msgid "Connections" +msgstr "Connecties" -#: ../../Zotlabs/Module/Connedit.php:722 -msgid "This information is public!" -msgstr "Deze informatie is openbaar!" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:925 +#: ../../include/text.php:937 ../../include/acl_selectors.php:174 +#: ../../include/nav.php:169 +msgid "Search" +msgstr "Zoeken" -#: ../../Zotlabs/Module/Connedit.php:727 -msgid "Connection Pending Approval" -msgstr "Connectie moet nog geaccepteerd worden" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Doorzoek jouw connecties" -#: ../../Zotlabs/Module/Connedit.php:730 -msgid "inherited" -msgstr "geërfd" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Connecties zoeken" -#: ../../Zotlabs/Module/Connedit.php:732 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Vinden" -#: ../../Zotlabs/Module/Connedit.php:734 -msgid "Their Settings" -msgstr "Hun instellingen" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " -#: ../../Zotlabs/Module/Connedit.php:735 -msgid "My Settings" -msgstr "Mijn instellingen" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Omslagfoto's" -#: ../../Zotlabs/Module/Connedit.php:737 -msgid "Individual Permissions" -msgstr "Individuele permissies" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "Afbeelding kon niet van grootte veranderd worden." -#: ../../Zotlabs/Module/Connedit.php:738 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "Afbeelding kan niet verwerkt worden" -#: ../../Zotlabs/Module/Connedit.php:739 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "Uploaden afbeelding mislukt" -#: ../../Zotlabs/Module/Connedit.php:740 -msgid "Last update:" -msgstr "Laatste wijziging:" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "Niet in staat om afbeelding te verwerken." -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 -msgid "Public access denied." -msgstr "Openbare toegang geweigerd." +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4312 +msgid "female" +msgstr "vrouw" -#: ../../Zotlabs/Module/Directory.php:243 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4313 #, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d beoordeling" -msgstr[1] "%d beoordelingen" +msgid "%1$s updated her %2$s" +msgstr "%1$s heeft haar %2$s bijgewerkt" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Geslacht:" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4314 +msgid "male" +msgstr "man" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Status: " +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4315 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s heeft zijn %2$s bijgewerkt" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage: " +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4317 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "De %2$s van %1$s is bijgewerkt" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 -msgid "Age:" -msgstr "Leeftijd:" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 +msgid "cover photo" +msgstr "omslagfoto" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Plaats:" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto niet beschikbaar." -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Omschrijving:" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Bestand uploaden:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 -msgid "Hometown:" -msgstr "Oorspronkelijk uit:" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Kies een profiel:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 -msgid "About:" -msgstr "Over:" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Omslagfoto uploaden" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 -msgid "Connect" -msgstr "Verbinden" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "or" +msgstr "of" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Openbaar forum:" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "sla deze stap over" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Trefwoorden: " +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit jouw fotoalbums" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Niet voorstellen" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Gemeenschappelijke connecties:" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Volledige kanalengids" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Klaar met bewerken" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Lokale kanalengids" +#: ../../Zotlabs/Module/Setup.php:183 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Hub - Setup" -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Vinden" +#: ../../Zotlabs/Module/Setup.php:187 +msgid "Could not connect to database." +msgstr "Could not connect to database." -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Gezocht naar:" +#: ../../Zotlabs/Module/Setup.php:191 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../Zotlabs/Module/Setup.php:198 +msgid "Could not create table." +msgstr "Could not create table." -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "volgende pagina" +#: ../../Zotlabs/Module/Setup.php:203 +msgid "Your site database has been installed." +msgstr "Your hub database has been installed." -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "vorige pagina" +#: ../../Zotlabs/Module/Setup.php:207 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Sorteeropties" +#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:270 +#: ../../Zotlabs/Module/Setup.php:733 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Please see the file \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetisch" +#: ../../Zotlabs/Module/Setup.php:267 +msgid "System check" +msgstr "System check" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Omgekeerd alfabetisch" +#: ../../Zotlabs/Module/Setup.php:271 ../../Zotlabs/Module/Photos.php:960 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +msgid "Next" +msgstr "Volgende" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Nieuw naar oud" +#: ../../Zotlabs/Module/Setup.php:272 +msgid "Check again" +msgstr "Check again" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Oud naar nieuw" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database connection" +msgstr "Database connection" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." +#: ../../Zotlabs/Module/Setup.php:295 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "In order to install $Projectname we need to know how to connect to your database." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Item niet gevonden." +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or server administrator if you have questions about these settings." -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:81 -msgid "Item not found" -msgstr "Item niet gevonden" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "The database you specify below should already exist. If it does not, please create it before continuing." -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" -msgstr "Titel (optioneel)" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Server Name" +msgstr "Database Server Name" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Blok bewerken" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Default is 127.0.0.1" +msgstr "Default is 127.0.0.1" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Geen kanaal." +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Port" +msgstr "Database Port" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Veel voorkomende connecties" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Communication port number - use 0 for default" +msgstr "Communication port number - use 0 for default" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Login Name" +msgstr "Database Login Name" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Geblokkeerd" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Password" +msgstr "Database Login Password" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Genegeerd" - -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Verborgen" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Name" +msgstr "Database Name" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Gearchiveerd" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Type" +msgstr "Database Type" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 -msgid "New" -msgstr "Nieuw" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "Site administrator email address" +msgstr "Hub administrator email address" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nieuwe connecties" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Your account email address must match this in order to use the web admin panel." -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Nog te accepteren (nieuwe) connecties weergeven" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Website URL" +msgstr "Hub URL" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Alle connecties" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Please use SSL (https) URL if available." +msgstr "Please use SSL (https) URL if available." -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Toon alle connecties" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:360 +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your hub" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Toon alleen geblokkeerde connecties" +#: ../../Zotlabs/Module/Setup.php:335 ../../Zotlabs/Module/Admin.php:489 +msgid "Basic/Minimal Social Networking" +msgstr "Basic/eenvoudig sociaal netwerk" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Toon alleen genegeerde connecties" +#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:490 +msgid "Standard Configuration (default)" +msgstr "Standaard (standaard)" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Toon alleen gearchiveerde connecties" +#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:491 +msgid "Professional" +msgstr "Professioneel " -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Toon alleen verborgen connecties" +#: ../../Zotlabs/Module/Setup.php:343 +msgid "Site settings" +msgstr "Hub settings" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Moet nog geaccepteerd worden" +#: ../../Zotlabs/Module/Setup.php:358 ../../Zotlabs/Module/Admin.php:512 +msgid "Server Configuration/Role" +msgstr "Configuratietype hub" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Setup.php:399 +msgid "PHP version 5.5 or greater is required." +msgstr "PHP version 5.5 or greater is required." -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Connectie bewerken" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version" +msgstr "PHP version" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Connectie verwijderen" +#: ../../Zotlabs/Module/Setup.php:415 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Kanaaladres" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron." -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Netwerk" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "PHP executable path" +msgstr "PHP executable path" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" -msgstr "Status" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Enter full path to php executable. You can leave this blank to continue the installation." -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "Verbonden" +#: ../../Zotlabs/Module/Setup.php:425 +msgid "Command line PHP" +msgstr "Command line PHP" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Connectie accepteren" +#: ../../Zotlabs/Module/Setup.php:434 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" -msgstr "Goedkeuren" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Connectie negeren" +#: ../../Zotlabs/Module/Setup.php:438 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Recente activiteit" +#: ../../Zotlabs/Module/Setup.php:456 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once." -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 -msgid "Connections" -msgstr "Connecties" +#: ../../Zotlabs/Module/Setup.php:461 +msgid "You can adjust these settings in the servers php.ini." +msgstr "You can adjust these settings in the servers php.ini." -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 -msgid "Search" -msgstr "Zoeken" +#: ../../Zotlabs/Module/Setup.php:463 +msgid "PHP upload limits" +msgstr "PHP upload limits" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Doorzoek jouw connecties" +#: ../../Zotlabs/Module/Setup.php:486 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Connecties zoeken" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " +#: ../../Zotlabs/Module/Setup.php:490 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Omslagfoto's" +#: ../../Zotlabs/Module/Setup.php:502 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 -msgid "Image resize failed." -msgstr "Afbeelding kon niet van grootte veranderd worden." +#: ../../Zotlabs/Module/Setup.php:503 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 -msgid "Image upload failed." -msgstr "Uploaden afbeelding mislukt" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "mysqli or postgres PHP module" +msgstr "mysqli or postgres PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 -msgid "Unable to process image." -msgstr "Niet in staat om afbeelding te verwerken." +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 -msgid "female" -msgstr "vrouw" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "xml PHP module" +msgstr "xml PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s heeft haar %2$s bijgewerkt" +#: ../../Zotlabs/Module/Setup.php:511 ../../Zotlabs/Module/Setup.php:513 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 -msgid "male" -msgstr "man" +#: ../../Zotlabs/Module/Setup.php:511 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache webserver mod-rewrite module is required but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s heeft zijn %2$s bijgewerkt" +#: ../../Zotlabs/Module/Setup.php:517 ../../Zotlabs/Module/Setup.php:520 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "De %2$s van %1$s is bijgewerkt" +#: ../../Zotlabs/Module/Setup.php:517 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 -msgid "cover photo" -msgstr "omslagfoto" +#: ../../Zotlabs/Module/Setup.php:525 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 -msgid "Photo not available." -msgstr "Foto niet beschikbaar." +#: ../../Zotlabs/Module/Setup.php:529 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 -msgid "Upload File:" -msgstr "Bestand uploaden:" +#: ../../Zotlabs/Module/Setup.php:533 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 -msgid "Select a profile:" -msgstr "Kies een profiel:" +#: ../../Zotlabs/Module/Setup.php:537 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: mysqli or postgres PHP module required but neither are installed." -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Omslagfoto uploaden" +#: ../../Zotlabs/Module/Setup.php:541 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 -msgid "or" -msgstr "of" +#: ../../Zotlabs/Module/Setup.php:545 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Error: xml PHP module required for DAV but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "skip this step" -msgstr "sla deze stap over" +#: ../../Zotlabs/Module/Setup.php:563 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit jouw fotoalbums" +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can." -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" - -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder." -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 -msgid "Done Editing" -msgstr "Klaar met bewerken" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" +#: ../../Zotlabs/Module/Setup.php:569 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Bericht bewerken" +#: ../../Zotlabs/Module/Setup.php:583 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Agenda-items geïmporteerd." +#: ../../Zotlabs/Module/Setup.php:584 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder." -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "Geen agenda-items gevonden." +#: ../../Zotlabs/Module/Setup.php:585 ../../Zotlabs/Module/Setup.php:606 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" +#: ../../Zotlabs/Module/Setup.php:586 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "Niet in staat om voorvertoning te genereren" +#: ../../Zotlabs/Module/Setup.php:589 +#, php-format +msgid "%s is writable" +msgstr "%s is writable" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." +#: ../../Zotlabs/Module/Setup.php:605 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder" -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" +#: ../../Zotlabs/Module/Setup.php:609 +msgid "store is writable" +msgstr "store is writable" -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "gebeurtenis" +#: ../../Zotlabs/Module/Setup.php:642 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Titel bewerken" +#: ../../Zotlabs/Module/Setup.php:643 +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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Titel" +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Vereist" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Categorie" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Providers are available that issue free certificates which are browser-valid." -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Categorie" +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications." -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Begindatum en -tijd bewerken" +#: ../../Zotlabs/Module/Setup.php:652 +msgid "SSL certificate validation" +msgstr "SSL certificate validation" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Begindatum en -tijd" +#: ../../Zotlabs/Module/Setup.php:658 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" +#: ../../Zotlabs/Module/Setup.php:661 +msgid "Url rewrite is working" +msgstr "Url rewrite is working" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Einddatum en -tijd bewerken" +#: ../../Zotlabs/Module/Setup.php:670 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "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." -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Einddatum en -tijd" +#: ../../Zotlabs/Module/Setup.php:694 +msgid "Errors encountered creating database tables." +msgstr "Errors encountered creating database tables." -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" +#: ../../Zotlabs/Module/Setup.php:731 +msgid "

    What next

    " +msgstr "

    What next

    " -#: ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Setup.php:732 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Omschrijving bewerken" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Omschrijving" +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d beoordeling" +msgstr[1] "%d beoordelingen" -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Locatie bewerken" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Geslacht:" -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Locatie" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Status: " -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage: " -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Voorvertoning" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Leeftijd:" -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Permissies" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../include/bb2diaspora.php:507 +msgid "Location:" +msgstr "Plaats:" -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Geavanceerde opties" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Omschrijving:" -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Oorspronkelijk uit:" -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Gebeurtenis verwijderen" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Over:" -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "agenda" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/channel.php:1034 ../../include/conversation.php:957 +msgid "Connect" +msgstr "Verbinden" -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "Gebeurtenis verwijderd" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Openbaar forum:" -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "Verwijderen gebeurtenis mislukt" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Trefwoorden: " -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Foto's" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Niet voorstellen" -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Annuleren" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Gemeenschappelijke connecties:" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Volledige kanalengids" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Lokale kanalengids" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Bewaar in map: " +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Gezocht naar:" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- kies map -" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Voorgestelde kanalen" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Opslaan" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "volgende pagina" -#: ../../Zotlabs/Module/Dreport.php:27 -msgid "Invalid message" -msgstr "Ongeldig bericht" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "vorige pagina" -#: ../../Zotlabs/Module/Dreport.php:59 -msgid "no results" -msgstr "geen resultaten" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Sorteeropties" -#: ../../Zotlabs/Module/Dreport.php:64 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Afleveringsrapport voor %1$s" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetisch" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "kanaalsync verwerkt" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Omgekeerd alfabetisch" -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "in wachtrij" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Nieuw naar oud" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "verstuurd" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Oud naar nieuw" -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "geaccepteerd om afgeleverd te worden" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "geüpdatet" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "update genegeerd" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "toegang geweigerd" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Item niet gevonden" -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "ontvanger niet gevonden" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Bloknaam" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "Privébericht ingetrokken" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Weblink invoegen" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "dubbel privébericht ontvangen" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 +msgid "Title (optional)" +msgstr "Titel (optioneel)" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "privébericht afgeleverd" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Blok bewerken" -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 msgid "Layout Name" msgstr "Naam lay-out" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 msgid "Layout Description (Optional)" msgstr "Lay-out-omschrijving (optioneel)" -#: ../../Zotlabs/Module/Editlayout.php:135 +#: ../../Zotlabs/Module/Editlayout.php:136 msgid "Edit Layout" msgstr "Lay-out bewerken" -#: ../../Zotlabs/Module/Editwebpage.php:143 +#: ../../Zotlabs/Module/Editwebpage.php:142 msgid "Page link" msgstr "Paginalink" @@ -1559,2026 +1760,1840 @@ msgstr "Paginalink" msgid "Edit Webpage" msgstr "Webpagina bewerken" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanaal toegevoegd." - -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "netwerk" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Privacygroep aangemaakt" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Menunaam" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Kon privacygroep niet aanmaken" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 -msgid "Privacy group not found." -msgstr "Privacygroep niet gevonden" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menutitel" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Privacygroep bijgewerkt" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Privacygroep met kanalen aanmaken" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Naam privacygroep: " +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Opslaan en doorgaan" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Privacygroep verwijderd." +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 +msgid "Menus" +msgstr "Menu's" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Verwijderen privacygroep mislukt" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Verwijderen" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Privacygroep bewerken" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:228 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Aangemaakt" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Kanalen" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:229 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Bewerkt" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Alle kanaalconnecties" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Menu verwijderen" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Deel webpagina's vanuit Firefox met " +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activeer de $Projectname-service in Firefox" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dit menu bewerken" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu niet gevonden." -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menu bewerken" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Zoek documentatie" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Naam van menu" -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Hulp:" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 -msgid "Help" -msgstr "Hulp" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titel van menu" -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "$Projectname-documentatie" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Toegang geweigerd" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Bestand niet gevonden." +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Niet gevonden." -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App geïnstalleerd" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Misvormde app." -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Insluitcode" -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bewerken" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App maken" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Naam van app" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Dit bestand delen" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Vereist" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "Toon URL van dit bestand" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Jouw connecties over dit bestand berichten" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Omschrijving" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Apps" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL van pictogram" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Item is niet aanwezig." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versie-ID" -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prijs van de app" -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Waarschuwing: database-versies lopen %1$d updates achter." +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Zoek documentatie" -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" +msgstr "Hulp:" -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "Geen kanaal. Importeren mislukt." +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:163 +msgid "Help" +msgstr "Hulp" -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import voltooid." +#: ../../Zotlabs/Module/Help.php:120 +msgid "$Projectname Documentation" +msgstr "$Projectname-documentatie" -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Item is niet aanwezig." -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "Kanaal importeren" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." -#: ../../Zotlabs/Module/Import.php:538 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulenaam:" -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Lay-out-hulp" -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Deel webpagina's vanuit Firefox met " -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activeer de $Projectname-service in Firefox" -#: ../../Zotlabs/Module/Import.php:544 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Zichtbaar voor:" -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Toegang geweigerd" -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Bestand niet gevonden." -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Dubbel bericht tegengehouden." +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permissies" -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 -msgid "Layouts" -msgstr "Lay-outs" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" -#: ../../Zotlabs/Module/Layouts.php:183 -msgid "Comanche page description language help" -msgstr "Hulp met de paginabeschrijvingstaal Comanche" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Dit bestand delen" -#: ../../Zotlabs/Module/Layouts.php:187 -msgid "Layout Description" -msgstr "Lay-out-omschrijving" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "Toon URL van dit bestand" -#: ../../Zotlabs/Module/Layouts.php:192 -msgid "Download PDL file" -msgstr "Download PDL-bestand" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Jouw connecties over dit bestand berichten" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Settings.php:64 +msgid "Name is required" +msgstr "Naam is vereist" -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +#: ../../Zotlabs/Module/Settings.php:68 +msgid "Key and Secret are required" +msgstr "Key en secret zijn vereist" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Voornaam" +#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Admin.php:1449 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "Bijwerken" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Achternaam" +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Dit kanaal heeft een limiet van %d tokens" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Bijnaam" +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "Naam en wachtwoord zijn vereist" -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Volledige naam" +#: ../../Zotlabs/Module/Settings.php:184 +msgid "Token saved." +msgstr "Token opgeslagen." -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "E-mail" +#: ../../Zotlabs/Module/Settings.php:312 +msgid "Not valid email." +msgstr "Geen geldig e-mailadres." -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Profielfoto" +#: ../../Zotlabs/Module/Settings.php:315 +msgid "Protected email address. Cannot change to that email." +msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profielfoto 16px" +#: ../../Zotlabs/Module/Settings.php:324 +msgid "System failure storing new email. Please try again." +msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profielfoto 32px" +#: ../../Zotlabs/Module/Settings.php:341 +msgid "Password verification failed." +msgstr "Wachtwoordverificatie mislukt" -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profielfoto 48px" +#: ../../Zotlabs/Module/Settings.php:348 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profielfoto 64px" +#: ../../Zotlabs/Module/Settings.php:352 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profielfoto 80px" +#: ../../Zotlabs/Module/Settings.php:366 +msgid "Password changed." +msgstr "Wachtwoord veranderd." -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profielfoto 128px" +#: ../../Zotlabs/Module/Settings.php:368 +msgid "Password update failed. Please try again." +msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Tijdzone" +#: ../../Zotlabs/Module/Settings.php:429 ../../Zotlabs/Module/Settings.php:433 +#: ../../Zotlabs/Module/Settings.php:434 ../../Zotlabs/Module/Settings.php:437 +#: ../../Zotlabs/Module/Settings.php:448 ../../Zotlabs/Module/Connedit.php:627 +#: ../../include/widgets.php:495 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/selectors.php:123 +msgid "Friends" +msgstr "Vrienden" -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL homepagina" +#: ../../Zotlabs/Module/Settings.php:617 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Taal" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Geboortejaar" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Geboortemaand" +#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 +#: ../../Zotlabs/Module/Settings.php:743 +msgid "Add application" +msgstr "Applicatie toevoegen" -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Geboortedag" +#: ../../Zotlabs/Module/Settings.php:684 +msgid "Name of application" +msgstr "Naam van applicatie" -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Geboortedatum" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 +msgid "Consumer Key" +msgstr "Consumer key" -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geslacht" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Man" +#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 +msgid "Consumer Secret" +msgstr "Consumer secret" -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Vrouw" +#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 +msgid "Redirect" +msgstr "Redirect/doorverwijzing" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "Webpagina" +#: ../../Zotlabs/Module/Settings.php:687 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "blok" +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 +msgid "Icon url" +msgstr "Pictogram-URL" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "lay-out" +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Optioneel" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Application not found." +msgstr "Applicatie niet gevonden." -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "%s onderdeel geïnstalleerd" +#: ../../Zotlabs/Module/Settings.php:742 +msgid "Connected Apps" +msgstr "Verbonden applicaties" -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "Installatie %s-element mislukt" +#: ../../Zotlabs/Module/Settings.php:746 +msgid "Client key starts with" +msgstr "Client key begint met" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" +#: ../../Zotlabs/Module/Settings.php:747 +msgid "No name" +msgstr "Geen naam" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." +#: ../../Zotlabs/Module/Settings.php:748 +msgid "Remove authorization" +msgstr "Autorisatie verwijderen" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Je dient in te loggen met je $Projectname-account of een nieuw $Projectname-account aan te maken om verder te kunnen gaan." +#: ../../Zotlabs/Module/Settings.php:761 +msgid "No feature settings configured" +msgstr "Geen plugin-instellingen aanwezig" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Ongeldig verzoek" +#: ../../Zotlabs/Module/Settings.php:768 +msgid "Feature/Addon Settings" +msgstr "Plugin-instellingen" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "kanaal" +#: ../../Zotlabs/Module/Settings.php:791 +msgid "Account Settings" +msgstr "Account-instellingen" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "ding" +#: ../../Zotlabs/Module/Settings.php:792 +msgid "Current Password" +msgstr "Huidig wachtwoord" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." +#: ../../Zotlabs/Module/Settings.php:793 +msgid "Enter New Password" +msgstr "Nieuw wachtwoord invoeren" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Confirm New Password" +msgstr "Nieuw wachtwoord bevestigen" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "foto" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 -msgid "status" -msgstr "bericht" +#: ../../Zotlabs/Module/Settings.php:796 +#: ../../Zotlabs/Module/Settings.php:1236 +msgid "Email Address:" +msgstr "E-mailadres:" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s leuk" +#: ../../Zotlabs/Module/Settings.php:797 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Account verwijderen" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s niet leuk" +#: ../../Zotlabs/Module/Settings.php:798 +msgid "Remove this account including all its channels" +msgstr "Dit account en al zijn kanalen verwijderen" -#: ../../Zotlabs/Module/Like.php:424 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s is het eens met %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:832 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." +msgstr "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot privéinhoud." -#: ../../Zotlabs/Module/Like.php:426 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s is het niet eens met %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:834 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:" -#: ../../Zotlabs/Module/Like.php:428 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "Gasttoegang" -#: ../../Zotlabs/Module/Like.php:430 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s is aanwezig op %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:876 +msgid "Login Name" +msgstr "Inlognaam" -#: ../../Zotlabs/Module/Like.php:432 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s is niet aanwezig op %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:877 +msgid "Login Password" +msgstr "Wachtwoord:" -#: ../../Zotlabs/Module/Like.php:434 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:878 +msgid "Expires (yyyy-mm-dd)" +msgstr "Geldig t/m (yyyy-mm-dd)" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Action completed." -msgstr "Actie voltooid" +#: ../../Zotlabs/Module/Settings.php:879 ../../Zotlabs/Module/Connedit.php:782 +msgid "Their Settings" +msgstr "Hun instellingen" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Thank you." -msgstr "Bedankt" +#: ../../Zotlabs/Module/Settings.php:880 ../../Zotlabs/Module/Connedit.php:783 +msgid "My Settings" +msgstr "Mijn instellingen" -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "Importeren voltooid" +#: ../../Zotlabs/Module/Settings.php:882 ../../Zotlabs/Module/Connedit.php:778 +msgid "inherited" +msgstr "geërfd" -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Importeer items" +#: ../../Zotlabs/Module/Settings.php:884 ../../Zotlabs/Module/Connedit.php:785 +msgid "Individual Permissions" +msgstr "Individuele permissies" -#: ../../Zotlabs/Module/Import_items.php:118 +#: ../../Zotlabs/Module/Settings.php:885 ../../Zotlabs/Module/Connedit.php:786 msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "Off" +msgstr "Uit" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "On" +msgstr "Aan" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Uitnodiging voor $Projectname" +#: ../../Zotlabs/Module/Settings.php:910 +msgid "Additional Features" +msgstr "Extra functies" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." +#: ../../Zotlabs/Module/Settings.php:934 +msgid "Connector Settings" +msgstr "Instellingen externe koppelingen" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." +#: ../../Zotlabs/Module/Settings.php:981 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" -#: ../../Zotlabs/Module/Invite.php:83 +#: ../../Zotlabs/Module/Settings.php:984 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" +msgid "%s - (Experimental)" +msgstr "%s - (experimenteel)" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" +#: ../../Zotlabs/Module/Settings.php:987 ../../Zotlabs/Module/Admin.php:414 +msgid "mobile" +msgstr "mobiel" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" +#: ../../Zotlabs/Module/Settings.php:1035 +msgid "Display Settings" +msgstr "Weergave-instellingen" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "Jouw bericht:" +#: ../../Zotlabs/Module/Settings.php:1036 +msgid "Theme Settings" +msgstr "Thema-instellingen" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" +#: ../../Zotlabs/Module/Settings.php:1037 +msgid "Custom Theme Settings" +msgstr "Handmatige thema-instellingen" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Je moet deze uitnodigingscode opgeven:" +#: ../../Zotlabs/Module/Settings.php:1038 +msgid "Content Settings" +msgstr "Inhoudsinstellingen" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Display Theme:" +msgstr "Gebruik thema:" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" +#: ../../Zotlabs/Module/Settings.php:1045 +msgid "Select scheme" +msgstr "Kies schema van thema" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "of bezoek" +#: ../../Zotlabs/Module/Settings.php:1047 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klik op [+ Verbinden]" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Preload images before rendering the page" +msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "" +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Zichtbaar voor:" +#: ../../Zotlabs/Module/Settings.php:1049 +msgid "Enable user zoom on mobile devices" +msgstr "Inzoomen op smartphones en tablets toestaan" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Locatie niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Update browser every xx seconds" +msgstr "Ververs de webbrowser om de zoveel seconde" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Opzoeken locatie mislukt" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimaal 10 seconde, geen maximum" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximaal aantal conversaties die per keer geladen worden:" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Locaties synchronizeren" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum of 100 items" +msgstr "Maximaal 100 conversaties" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Geen locaties gevonden." +#: ../../Zotlabs/Module/Settings.php:1052 +msgid "Show emoticons (smilies) as images" +msgstr "Toon emoticons (smilies) als afbeeldingen" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Link post titles to source" +msgstr "Berichtkoppen naar originele locatie linken" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Kanaaladres" +#: ../../Zotlabs/Module/Settings.php:1054 +msgid "System Page Layout Editor - (advanced)" +msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primair" +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Use blog/list mode on channel page" +msgstr "Gebruik blog/lijst-modus op kanaalpagina" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Verwijderen" +#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "(comments displayed separately)" +msgstr "(reacties worden afzonderlijk weergeven)" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Nu synchroniseren" +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Use blog/list mode on grid page" +msgstr "Gebruik blog/lijst-modus op gridpagina" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." +#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "click to expand content exceeding this height" +msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "Grid page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Nobody except yourself" +msgstr "Niemand, behalve jezelf" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "Only those you specifically allow" +msgstr "Alleen connecties met uitdrukkelijke toestemming" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "Approved connections" +msgstr "Geaccepteerde connecties" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "Any connections" +msgstr "Alle connecties" -#: ../../Zotlabs/Module/Mail.php:78 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "Anybody on this website" +msgstr "Iedereen op deze hub" -#: ../../Zotlabs/Module/Mail.php:143 -msgid "Messages" -msgstr "Berichten" +#: ../../Zotlabs/Module/Settings.php:1095 +msgid "Anybody in this network" +msgstr "Iedereen in dit netwerk" -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." -msgstr "Bericht ingetrokken." +#: ../../Zotlabs/Module/Settings.php:1096 +msgid "Anybody authenticated" +msgstr "Geauthenticeerd" -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Anybody on the internet" +msgstr "Iedereen op het internet" -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" +#: ../../Zotlabs/Module/Settings.php:1171 +msgid "Publish your default profile in the network directory" +msgstr "Publiceer je standaardprofiel in de kanalengids" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Requested channel is not in this network" -msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" +#: ../../Zotlabs/Module/Settings.php:1176 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" -msgstr "Privébericht versturen" +#: ../../Zotlabs/Module/Settings.php:1185 +msgid "Your channel address is" +msgstr "Jouw kanaaladres is" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -msgid "To:" -msgstr "Aan:" +#: ../../Zotlabs/Module/Settings.php:1227 +msgid "Channel Settings" +msgstr "Kanaal-instellingen" -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 -msgid "Subject:" -msgstr "Onderwerp:" +#: ../../Zotlabs/Module/Settings.php:1234 +msgid "Basic Settings" +msgstr "Basis-instellingen" -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 -msgid "Attach file" -msgstr "Bestand toevoegen" +#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Volledige naam:" -#: ../../Zotlabs/Module/Mail.php:253 -msgid "Send" -msgstr "Verzenden" +#: ../../Zotlabs/Module/Settings.php:1237 +msgid "Your Timezone:" +msgstr "Jouw tijdzone:" -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Default Post Location:" +msgstr "Standaardlocatie bericht:" -#: ../../Zotlabs/Module/Mail.php:340 -msgid "Delete message" -msgstr "Bericht verwijderen" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Geographical location to display on your posts" +msgstr "Geografische locatie die bij het bericht moet worden vermeld" -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" -msgstr "Afleveringsrapport" +#: ../../Zotlabs/Module/Settings.php:1239 +msgid "Use Browser Location:" +msgstr "Locatie van webbrowser gebruiken:" -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" -msgstr "Bericht intrekken" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "Adult Content" +msgstr "Inhoud voor volwassenen" -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" -msgstr "Verwijder conversatie" +#: ../../Zotlabs/Module/Settings.php:1243 +msgid "Security and Privacy Settings" +msgstr "Veiligheids- en privacy-instellingen" -#: ../../Zotlabs/Module/Mail.php:363 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." +#: ../../Zotlabs/Module/Settings.php:1246 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." -#: ../../Zotlabs/Module/Mail.php:367 -msgid "Send Reply" -msgstr "Antwoord versturen" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Hide my online presence" +msgstr "Verberg mijn aanwezigheid" -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Jouw privébericht aan %s (%s):" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Prevents displaying in your profile that you are online" +msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." +#: ../../Zotlabs/Module/Settings.php:1250 +msgid "Simple Privacy Settings:" +msgstr "Eenvoudige privacy-instellingen:" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" +#: ../../Zotlabs/Module/Settings.php:1251 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Kanaalbeheer" +#: ../../Zotlabs/Module/Settings.php:1252 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Huidig kanaal" +#: ../../Zotlabs/Module/Settings.php:1253 +msgid "Private - default private, never open or public" +msgstr "Privé (standaard privé en nooit openbaar)" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Activeer een van jouw andere kanalen door er op te klikken." +#: ../../Zotlabs/Module/Settings.php:1254 +msgid "Blocked - default blocked to/from everybody" +msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standaardkanaal" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "Allow others to tag your posts" +msgstr "Anderen toestaan om je berichten te taggen" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Als standaard instellen" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nieuwe berichten" +#: ../../Zotlabs/Module/Settings.php:1258 +msgid "Advanced Privacy Settings" +msgstr "Geavanceerde privacy-instellingen" -#: ../../Zotlabs/Module/Manage.php:173 +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "Expire other channel content after this many days" +msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" + +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "0 or blank to use the website limit." +msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken." + +#: ../../Zotlabs/Module/Settings.php:1260 #, php-format -msgid "%d new introductions" -msgstr "%d nieuwe connectieverzoeken" +msgid "This website expires after %d days." +msgstr "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Uitbesteed kanaal" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "This website does not expire imported content." +msgstr "Deze hub laat de inhoud van andere kanalen niet verlopen." -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang." -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal connectieverzoeken per dag:" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "May reduce spam activity" +msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" +#: ../../Zotlabs/Module/Settings.php:1262 +msgid "Default Post and Publish Permissions" +msgstr "Standaard permissies voor nieuwe berichten en publicaties" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." +#: ../../Zotlabs/Module/Settings.php:1263 ../../Zotlabs/Module/Mitem.php:154 +#: ../../Zotlabs/Module/Mitem.php:231 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "Use my default audience setting for the type of object published" +msgstr "Gebruik mijn standaard privacy-instelling voor dit type publicatie" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." +#: ../../Zotlabs/Module/Settings.php:1271 +msgid "Channel permissions category:" +msgstr "Kanaaltype en -permissies:" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Useful to reduce spamming" +msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" +#: ../../Zotlabs/Module/Settings.php:1280 +msgid "Notification Settings" +msgstr "Notificatie-instellingen" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." +#: ../../Zotlabs/Module/Settings.php:1281 +msgid "By default post a status message when:" +msgstr "Plaats automatisch een bericht wanneer:" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "accepting a friend request" +msgstr "Een connectieverzoek wordt geaccepteerd" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" +#: ../../Zotlabs/Module/Settings.php:1283 +msgid "joining a forum/community" +msgstr "Je lid wordt van een forum/groep" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." +#: ../../Zotlabs/Module/Settings.php:1284 +msgid "making an interesting profile change" +msgstr "Er sprake is van een interessante profielwijziging" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-mailadres" +#: ../../Zotlabs/Module/Settings.php:1285 +msgid "Send a notification email when:" +msgstr "Verzend een notificatie per e-mail wanneer:" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Opnieuw instellen" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "You receive a connection request" +msgstr "Je een connectieverzoek ontvangt" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "Your connections are confirmed" +msgstr "Jouw connecties zijn bevestigd" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." +#: ../../Zotlabs/Module/Settings.php:1288 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op jouw kanaal heeft geschreven" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Menunaam" +#: ../../Zotlabs/Module/Settings.php:1289 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" +#: ../../Zotlabs/Module/Settings.php:1290 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menutitel" +#: ../../Zotlabs/Module/Settings.php:1291 +msgid "You receive a friend suggestion" +msgstr "Je een kanaalvoorstel ontvangt" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" +#: ../../Zotlabs/Module/Settings.php:1292 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../Zotlabs/Module/Settings.php:1293 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je bent in een bericht aangestoten/gepord/etc." -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" +#: ../../Zotlabs/Module/Settings.php:1296 +msgid "Show visual notifications including:" +msgstr "Toon de volgende zichtbare notificaties:" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Opslaan en doorgaan" +#: ../../Zotlabs/Module/Settings.php:1298 +msgid "Unseen grid activity" +msgstr "Niet bekeken grid-activiteit" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menu's" +#: ../../Zotlabs/Module/Settings.php:1299 +msgid "Unseen channel activity" +msgstr "Niet bekeken kanaal-activiteit" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Bladwijzers toegestaan" +#: ../../Zotlabs/Module/Settings.php:1300 +msgid "Unseen private messages" +msgstr "Niet bekeken privéberichten" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Menu verwijderen" +#: ../../Zotlabs/Module/Settings.php:1300 +#: ../../Zotlabs/Module/Settings.php:1305 +#: ../../Zotlabs/Module/Settings.php:1306 +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "Recommended" +msgstr "Aanbevolen" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" +#: ../../Zotlabs/Module/Settings.php:1301 +msgid "Upcoming events" +msgstr "Aankomende gebeurtenissen" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dit menu bewerken" +#: ../../Zotlabs/Module/Settings.php:1302 +msgid "Events today" +msgstr "Gebeurtenissen van vandaag" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Upcoming birthdays" +msgstr "Aankomende verjaardagen" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menu niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Not available in all themes" +msgstr "Niet in alle thema's beschikbaar" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menu bewerken" +#: ../../Zotlabs/Module/Settings.php:1304 +msgid "System (personal) notifications" +msgstr "(Persoonlijke) systeemnotificaties" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" +#: ../../Zotlabs/Module/Settings.php:1305 +msgid "System info messages" +msgstr "Systeemmededelingen" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Naam van menu" +#: ../../Zotlabs/Module/Settings.php:1306 +msgid "System critical alerts" +msgstr "Kritische systeemwaarschuwingen" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "New connections" +msgstr "Nieuwe connecties" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titel van menu" +#: ../../Zotlabs/Module/Settings.php:1308 +msgid "System Registrations" +msgstr "Nieuwe accountregistraties op deze hub" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." +#: ../../Zotlabs/Module/Settings.php:1309 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Notify me of events this many days in advance" +msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Must be greater than 0" +msgstr "Moet hoger dan 0 zijn" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" +#: ../../Zotlabs/Module/Settings.php:1313 +msgid "Advanced Account/Page Type Settings" +msgstr "Instellingen geavanceerd account/paginatype" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Stemming" +#: ../../Zotlabs/Module/Settings.php:1314 +msgid "Change the behaviour of this account for special situations" +msgstr "Verander het gedrag van dit account voor speciale situaties" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Noteer je huidige stemming en toon het aan je connecties" +#: ../../Zotlabs/Module/Settings.php:1317 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profielovereenkomst" +#: ../../Zotlabs/Module/Settings.php:1318 +msgid "Miscellaneous Settings" +msgstr "Diverse instellingen" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." +#: ../../Zotlabs/Module/Settings.php:1319 +msgid "Default photo upload folder" +msgstr "Standaard fotoalbum voor uploads" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" +#: ../../Zotlabs/Module/Settings.php:1319 +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "%Y - current year, %m - current month" +msgstr "%Y - dit jaar, %m - deze maand" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Geen overeenkomsten" +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "Default file upload folder" +msgstr "Standaard bestandsmap voor uploads" -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "Collectie niet gevonden" +#: ../../Zotlabs/Module/Settings.php:1322 +msgid "Personal menu to display in your channel pages" +msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "Niet zo'n kanaal" +#: ../../Zotlabs/Module/Settings.php:1323 ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" - -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "Privacygroep is leeg" - -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Privacygroep: " - -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Ongeldige connectie." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Niet in staat om onderdeel aan te maken." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Linknaam" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Linkdoel of submenu-doel" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Gebruik magic-auth wanneer beschikbaar" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Volgorde in lijst" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Opslaan en afsluiten" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Opslaan en doorgaan" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Linkdoel" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menu bewerken" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Onderdeel bewerken" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Onderdeel verwijderen" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nieuw element" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menu-element toevoegen" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1324 +msgid "Remove this channel." +msgstr "Verwijder dit kanaal." -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." +#: ../../Zotlabs/Module/Settings.php:1325 +msgid "Firefox Share $Projectname provider" +msgstr "$Projectname-service voor Firefox Share" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." +#: ../../Zotlabs/Module/Settings.php:1326 +msgid "Start calendar week on monday" +msgstr "Begin in de agenda de week op maandag" -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "netwerk" -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Linktekst" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Naam" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Privacygroep aangemaakt" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Kon privacygroep niet aanmaken" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Korte bijnaam" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3931 +msgid "Privacy group not found." +msgstr "Privacygroep niet gevonden" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Privacygroep bijgewerkt" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaaltype en privacy" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Privacygroep met kanalen aanmaken" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Naam privacygroep: " -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Lees meer over kanaaltypes" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Kanaal aanmaken" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Privacygroep verwijderd." -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Verwijderen privacygroep mislukt" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Privacygroep bewerken" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Kanalen" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Annuleren" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Alle kanaalconnecties" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." -#: ../../Zotlabs/Module/Photos.php:84 +#: ../../Zotlabs/Module/Photos.php:82 msgid "Page owner information could not be retrieved." msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 #: ../../include/photo/photo_driver.php:718 msgid "Profile Photos" msgstr "Profielfoto's" -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 msgid "Album not found." msgstr "Album niet gevonden." -#: ../../Zotlabs/Module/Photos.php:132 +#: ../../Zotlabs/Module/Photos.php:130 msgid "Delete Album" msgstr "Verwijder album" -#: ../../Zotlabs/Module/Photos.php:153 +#: ../../Zotlabs/Module/Photos.php:151 msgid "" "Multiple storage folders exist with this album name, but within different " "directories. Please remove the desired folder or folders using the Files " "manager" msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 msgid "Delete Photo" msgstr "Verwijder foto" -#: ../../Zotlabs/Module/Photos.php:533 +#: ../../Zotlabs/Module/Photos.php:531 msgid "No photos selected" msgstr "Geen foto's geselecteerd" -#: ../../Zotlabs/Module/Photos.php:582 +#: ../../Zotlabs/Module/Photos.php:580 msgid "Access to this item is restricted." msgstr "Toegang tot dit item is beperkt." -#: ../../Zotlabs/Module/Photos.php:621 +#: ../../Zotlabs/Module/Photos.php:619 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." -#: ../../Zotlabs/Module/Photos.php:624 +#: ../../Zotlabs/Module/Photos.php:622 #, php-format msgid "%1$.2f MB photo storage used." msgstr "%1$.2f MB aan foto-opslag gebruikt." -#: ../../Zotlabs/Module/Photos.php:660 +#: ../../Zotlabs/Module/Photos.php:658 msgid "Upload Photos" msgstr "Foto's uploaden" -#: ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Photos.php:662 msgid "Enter an album name" msgstr "Vul een albumnaam in" -#: ../../Zotlabs/Module/Photos.php:665 +#: ../../Zotlabs/Module/Photos.php:663 msgid "or select an existing album (doubleclick)" msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Photos.php:664 msgid "Create a status post for this upload" msgstr "Plaats een bericht voor deze upload." -#: ../../Zotlabs/Module/Photos.php:667 +#: ../../Zotlabs/Module/Photos.php:665 msgid "Caption (optional):" msgstr "Bijschrift (optioneel):" -#: ../../Zotlabs/Module/Photos.php:668 +#: ../../Zotlabs/Module/Photos.php:666 msgid "Description (optional):" msgstr "Omschrijving (optioneel):" -#: ../../Zotlabs/Module/Photos.php:695 +#: ../../Zotlabs/Module/Photos.php:697 msgid "Album name could not be decoded" msgstr "Albumnaam kon niet gedecodeerd worden" -#: ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Photos.php:745 msgid "Contact Photos" msgstr "Connectiefoto's" -#: ../../Zotlabs/Module/Photos.php:766 +#: ../../Zotlabs/Module/Photos.php:768 msgid "Show Newest First" msgstr "Nieuwste eerst weergeven" -#: ../../Zotlabs/Module/Photos.php:768 +#: ../../Zotlabs/Module/Photos.php:770 msgid "Show Oldest First" msgstr "Oudste eerst weergeven" -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 +#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 msgid "View Photo" msgstr "Foto weergeven" -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +#: ../../Zotlabs/Module/Photos.php:825 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 msgid "Edit Album" msgstr "Album bewerken" -#: ../../Zotlabs/Module/Photos.php:870 +#: ../../Zotlabs/Module/Photos.php:872 msgid "Permission denied. Access to this item may be restricted." msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." -#: ../../Zotlabs/Module/Photos.php:872 +#: ../../Zotlabs/Module/Photos.php:874 msgid "Photo not available" msgstr "Foto niet aanwezig" -#: ../../Zotlabs/Module/Photos.php:930 +#: ../../Zotlabs/Module/Photos.php:932 msgid "Use as profile photo" msgstr "Als profielfoto gebruiken" -#: ../../Zotlabs/Module/Photos.php:931 +#: ../../Zotlabs/Module/Photos.php:933 msgid "Use as cover photo" msgstr "Als omslagfoto gebruiken" -#: ../../Zotlabs/Module/Photos.php:938 +#: ../../Zotlabs/Module/Photos.php:940 msgid "Private Photo" msgstr "Privéfoto" -#: ../../Zotlabs/Module/Photos.php:953 +#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 +msgid "Previous" +msgstr "Vorige" + +#: ../../Zotlabs/Module/Photos.php:955 msgid "View Full Size" msgstr "Volledige grootte weergeven" -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1451 #: ../../Zotlabs/Module/Tagrm.php:137 msgid "Remove" msgstr "Verwijderen" -#: ../../Zotlabs/Module/Photos.php:1032 +#: ../../Zotlabs/Module/Photos.php:1034 msgid "Edit photo" msgstr "Foto bewerken" -#: ../../Zotlabs/Module/Photos.php:1034 +#: ../../Zotlabs/Module/Photos.php:1036 msgid "Rotate CW (right)" msgstr "Draai met de klok mee (naar rechts)" -#: ../../Zotlabs/Module/Photos.php:1035 +#: ../../Zotlabs/Module/Photos.php:1037 msgid "Rotate CCW (left)" msgstr "Draai tegen de klok in (naar links)" -#: ../../Zotlabs/Module/Photos.php:1038 +#: ../../Zotlabs/Module/Photos.php:1040 msgid "Enter a new album name" msgstr "Vul een nieuwe albumnaam in" -#: ../../Zotlabs/Module/Photos.php:1039 +#: ../../Zotlabs/Module/Photos.php:1041 msgid "or select an existing one (doubleclick)" msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../Zotlabs/Module/Photos.php:1042 +#: ../../Zotlabs/Module/Photos.php:1044 msgid "Caption" msgstr "Bijschrift" -#: ../../Zotlabs/Module/Photos.php:1044 +#: ../../Zotlabs/Module/Photos.php:1046 msgid "Add a Tag" msgstr "Tag toevoegen" -#: ../../Zotlabs/Module/Photos.php:1048 +#: ../../Zotlabs/Module/Photos.php:1054 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" -#: ../../Zotlabs/Module/Photos.php:1051 +#: ../../Zotlabs/Module/Photos.php:1057 msgid "Flag as adult in album view" msgstr "Markeer als voor volwassenen in albumweergave" -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 msgid "I like this (toggle)" msgstr "Vind ik leuk" -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 msgid "I don't like this (toggle)" msgstr "Vind ik niet leuk" -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../include/conversation.php:1227 +msgid "Share" +msgstr "Delen" + +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../include/conversation.php:743 msgid "Please wait" msgstr "Even wachten" -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:708 msgid "This is you" msgstr "Dit ben jij" -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 msgid "Comment" msgstr "Reactie" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:224 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:720 +#: ../../include/conversation.php:1200 ../../include/page_widgets.php:43 +msgid "Preview" +msgstr "Voorvertoning" + +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 msgctxt "title" msgid "Likes" msgstr "vinden dit leuk" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 msgctxt "title" msgid "Dislikes" msgstr "vinden dit niet leuk" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Agree" msgstr "eens" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Disagree" msgstr "oneens" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Abstain" msgstr "onthoudingen" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Attending" msgstr "aanwezig" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Not attending" msgstr "niet aanwezig" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Might attend" msgstr "mogelijk aanwezig" -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 #: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 +#: ../../include/conversation.php:1756 msgid "View all" msgstr "Toon alles" -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1780 +#: ../../include/taxonomy.php:403 msgctxt "noun" msgid "Like" msgid_plural "Likes" msgstr[0] "vindt dit leuk" msgstr[1] "vinden dit leuk" -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1783 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "vindt dit niet leuk" msgstr[1] "vinden dit niet leuk" -#: ../../Zotlabs/Module/Photos.php:1235 +#: ../../Zotlabs/Module/Photos.php:1241 msgid "Photo Tools" msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Photos.php:1244 +#: ../../Zotlabs/Module/Photos.php:1250 msgid "In This Photo:" msgstr "Op deze foto:" -#: ../../Zotlabs/Module/Photos.php:1249 +#: ../../Zotlabs/Module/Photos.php:1255 msgid "Map" msgstr "Kaart" -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 msgctxt "noun" msgid "Likes" msgstr "vinden dit leuk" -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 msgctxt "noun" msgid "Dislikes" msgstr "vinden dit niet leuk" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../include/acl_selectors.php:181 msgid "Close" msgstr "Sluiten" -#: ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Photos.php:1343 msgid "View Album" msgstr "Album weergeven" -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 msgid "Recent Photos" msgstr "Recente foto's" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webpagina" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "blok" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "G:i, l d F" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "lay-out" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[vandaag]" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Installatie %s-element mislukt" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." +#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." +#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "Inloggen mislukt." +#: ../../Zotlabs/Module/Import_items.php:72 +#: ../../Zotlabs/Module/Import.php:101 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../Zotlabs/Module/Import_items.php:88 +#: ../../Zotlabs/Module/Import.php:123 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Waarschuwing: database-versies lopen %1$d updates achter." -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Importeren voltooid" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Configuratiebewerker" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importeer items" -#: ../../Zotlabs/Module/Pconfig.php:49 +#: ../../Zotlabs/Module/Import_items.php:120 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " +"Use this form to import existing posts and content from an export file." +msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." +#: ../../Zotlabs/Module/Import_items.php:121 +#: ../../Zotlabs/Module/Import.php:549 +msgid "File to Upload" +msgstr "Bestand om te uploaden" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulenaam:" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Uitnodiging voor $Projectname" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Lay-out-hulp" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Aanstoten" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Iemand aanstoten" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Iemand bijvoorbeeld aanstoten of poren" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Ontvanger" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" +msgstr "Jouw bericht:" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Maak dit bericht privé" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Je moet deze uitnodigingscode opgeven:" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profiel niet gevonden." +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profiel verwijderd." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profiel-" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "of bezoek" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klik op [+ Verbinden]" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Locatie niet gevonden." -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Opzoeken locatie mislukt" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Huwelijke status" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Locaties synchronizeren" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Romantische partner" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Geen locaties gevonden." -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Houdt van" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Houdt niet van" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1237 +#: ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Kanaaladres" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Werk/arbeid" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primair" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religie" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Nu synchroniseren" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Politieke overtuigingen" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Homepage" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interesses" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub niet gevonden." -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Je dient in te loggen met je $Projectname-account of een nieuw $Projectname-account aan te maken om verder te kunnen gaan." -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Profiel weergeven" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Ongeldig verzoek" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "kanaal" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Hulpmiddelen" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "ding" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Omslagfoto wijzigen" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 +#: ../../include/conversation.php:120 +msgid "photo" +msgstr "foto" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Dit profiel klonen" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1951 ../../include/conversation.php:148 +msgid "status" +msgstr "bericht" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 +#: ../../include/conversation.php:123 ../../include/event.php:958 +msgid "event" +msgstr "gebeurtenis" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 -msgid "Personal" -msgstr "Persoonlijk" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s niet leuk" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relatie" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s is het eens met %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Diversen" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s is het niet eens met %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s is aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Jouw geslacht" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s is niet aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Burgerlijke staat" +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Seksuele voorkeur" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Actie voltooid" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Profielnaam" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Bedankt" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Dit is jouw standaardprofiel" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Jouw volledige naam" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Titel/omschrijving" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Nieuwe aanmaken" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Straat en huisnummer" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:210 +msgid "Channel Manager" +msgstr "Kanaalbeheer" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Woonplaats" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Huidig kanaal" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Provincie/gewest/deelstaat" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Activeer een van jouw andere kanalen door er op te klikken." -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Postcode" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standaardkanaal" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Land" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Als standaard instellen" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Wie (wanneer van toepassing)" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "Sinds (datum)" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Uitbesteed kanaal" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Vertel ons iets over jezelf" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Niet in staat om onderdeel aan te maken." -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Oorspronkelijk uit" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Politieke overtuigingen" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Religieuze overtuigingen" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Trefwoorden voor in de kanalengids" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Linknaam" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Linkdoel of submenu-doel" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Muzikale interesses" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Boeken/literatuur" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Gebruik magic-auth wanneer beschikbaar" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisie" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film/dans/cultuur/entertainment" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Volgorde in lijst" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Liefde/romantiek" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Opslaan en afsluiten" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "School/opleiding" - -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Contactinformatie en sociale netwerken" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mijn andere kanalen" - -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 -msgid "Profile Image" -msgstr "Profielfoto" - -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 -msgid "Edit Profiles" -msgstr "Bewerk profielen" - -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Profiel" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Openbare hubs" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Opslaan en doorgaan" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Hub-URL" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menu:" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Toegangs-
     type" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Linkdoel" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registratie-
     beleid" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Menu bewerken" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Stats" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Onderdeel bewerken" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Onderdeel verwijderen" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Beoordelingen" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nieuw element" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Beoordeel" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Website:" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Menu-element toevoegen" -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Beoordeling (deze informatie is openbaar)" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Geen beoordelingen" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Beoordeling: " +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Website: " +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Omschrijving: " +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Linktekst" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3620,12 +3635,12 @@ msgstr "Berichtenwachtrij" msgid "Your software should be updated" msgstr "Jouw software moet worden bijgewerkt " -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:724 ../../Zotlabs/Module/Admin.php:768 +#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1342 ../../Zotlabs/Module/Admin.php:1433 +#: ../../Zotlabs/Module/Admin.php:1626 ../../Zotlabs/Module/Admin.php:1660 +#: ../../Zotlabs/Module/Admin.php:1745 msgid "Administration" msgstr "Beheer" @@ -3637,7 +3652,7 @@ msgstr "Samenvatting" msgid "Registered accounts" msgstr "Geregistreerde accounts" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:728 msgid "Pending registrations" msgstr "Accounts die op goedkeuring wachten" @@ -3645,7 +3660,7 @@ msgstr "Accounts die op goedkeuring wachten" msgid "Registered channels" msgstr "Geregistreerde kanalen" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:729 msgid "Active plugins" msgstr "Ingeschakelde plugins" @@ -3661,2522 +3676,2381 @@ msgstr "Versie repository (master)" msgid "Repository version (dev)" msgstr "Versie repository (dev)" -#: ../../Zotlabs/Module/Admin.php:373 +#: ../../Zotlabs/Module/Admin.php:377 msgid "Site settings updated." msgstr "Hub-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +#: ../../Zotlabs/Module/Admin.php:404 ../../include/text.php:2888 msgid "Default" msgstr "Standaard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 -msgid "mobile" -msgstr "mobiel" - -#: ../../Zotlabs/Module/Admin.php:412 +#: ../../Zotlabs/Module/Admin.php:416 msgid "experimental" msgstr "experimenteel" -#: ../../Zotlabs/Module/Admin.php:414 +#: ../../Zotlabs/Module/Admin.php:418 msgid "unsupported" msgstr "Niet ondersteund" -#: ../../Zotlabs/Module/Admin.php:460 +#: ../../Zotlabs/Module/Admin.php:464 msgid "Yes - with approval" msgstr "Ja - met goedkeuring" -#: ../../Zotlabs/Module/Admin.php:466 +#: ../../Zotlabs/Module/Admin.php:470 msgid "My site is not a public server" msgstr "Mijn $Projectname-hub is niet openbaar" -#: ../../Zotlabs/Module/Admin.php:467 +#: ../../Zotlabs/Module/Admin.php:471 msgid "My site has paid access only" msgstr "Mijn $Projectname-hub kent alleen betaalde toegang" -#: ../../Zotlabs/Module/Admin.php:468 +#: ../../Zotlabs/Module/Admin.php:472 msgid "My site has free access only" msgstr "Mijn $Projectname-hub kent alleen gratis toegang" -#: ../../Zotlabs/Module/Admin.php:469 +#: ../../Zotlabs/Module/Admin.php:473 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +#: ../../Zotlabs/Module/Admin.php:501 ../../include/widgets.php:1490 msgid "Site" msgstr "Hub-instellingen" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registratie" - -#: ../../Zotlabs/Module/Admin.php:494 +#: ../../Zotlabs/Module/Admin.php:504 msgid "File upload" msgstr "Bestand uploaden" -#: ../../Zotlabs/Module/Admin.php:495 +#: ../../Zotlabs/Module/Admin.php:505 msgid "Policies" msgstr "Beleid" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +#: ../../Zotlabs/Module/Admin.php:506 ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "Geavanceerd" -#: ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:510 msgid "Site name" msgstr "Naam van deze $Projectname-hub" -#: ../../Zotlabs/Module/Admin.php:501 +#: ../../Zotlabs/Module/Admin.php:514 msgid "Banner/Logo" msgstr "Banner/logo" -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:515 msgid "Administrator Information" -msgstr "Informatie over de beheerder van deze hub" +msgstr "Informatie over de beheerder" -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:515 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." -#: ../../Zotlabs/Module/Admin.php:503 +#: ../../Zotlabs/Module/Admin.php:516 msgid "System language" msgstr "Standaardtaal" -#: ../../Zotlabs/Module/Admin.php:504 +#: ../../Zotlabs/Module/Admin.php:517 msgid "System theme" msgstr "Standaardthema" -#: ../../Zotlabs/Module/Admin.php:504 +#: ../../Zotlabs/Module/Admin.php:517 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Standaardthema voor $Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen" -#: ../../Zotlabs/Module/Admin.php:505 +#: ../../Zotlabs/Module/Admin.php:518 msgid "Mobile system theme" msgstr "Standaardthema voor mobiel" -#: ../../Zotlabs/Module/Admin.php:505 +#: ../../Zotlabs/Module/Admin.php:518 msgid "Theme for mobile devices" msgstr "Thema voor mobiele apparaten" -#: ../../Zotlabs/Module/Admin.php:507 +#: ../../Zotlabs/Module/Admin.php:520 msgid "Allow Feeds as Connections" msgstr "Sta feeds toe als connecties" -#: ../../Zotlabs/Module/Admin.php:507 +#: ../../Zotlabs/Module/Admin.php:520 msgid "(Heavy system resource usage)" msgstr "(sterk negatieve invloed op systeembronnen hub)" -#: ../../Zotlabs/Module/Admin.php:508 +#: ../../Zotlabs/Module/Admin.php:521 msgid "Maximum image size" msgstr "Maximale grootte van afbeeldingen" -#: ../../Zotlabs/Module/Admin.php:508 +#: ../../Zotlabs/Module/Admin.php:521 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." -#: ../../Zotlabs/Module/Admin.php:509 +#: ../../Zotlabs/Module/Admin.php:522 msgid "Does this site allow new member registration?" msgstr "Staat deze hub nieuwe accounts toe?" -#: ../../Zotlabs/Module/Admin.php:510 +#: ../../Zotlabs/Module/Admin.php:523 msgid "Invitation only" msgstr "Alleen op uitnodiging" -#: ../../Zotlabs/Module/Admin.php:510 +#: ../../Zotlabs/Module/Admin.php:523 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan." -#: ../../Zotlabs/Module/Admin.php:511 +#: ../../Zotlabs/Module/Admin.php:524 msgid "Which best describes the types of account offered by this hub?" msgstr "Wat voor soort accounts biedt deze $Projectname-hub aan? Kies wat het meest in de buurt komt." -#: ../../Zotlabs/Module/Admin.php:512 +#: ../../Zotlabs/Module/Admin.php:525 msgid "Register text" msgstr "Tekst tijdens registratie" -#: ../../Zotlabs/Module/Admin.php:512 +#: ../../Zotlabs/Module/Admin.php:525 msgid "Will be displayed prominently on the registration page." msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Admin.php:526 msgid "Site homepage to show visitors (default: login box)" msgstr "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)" -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Admin.php:526 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken." -#: ../../Zotlabs/Module/Admin.php:514 +#: ../../Zotlabs/Module/Admin.php:527 msgid "Preserve site homepage URL" msgstr "Behoudt de URL van de hub (/)" -#: ../../Zotlabs/Module/Admin.php:514 +#: ../../Zotlabs/Module/Admin.php:527 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)" -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Admin.php:528 msgid "Accounts abandoned after x days" msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Admin.php:528 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." -#: ../../Zotlabs/Module/Admin.php:516 +#: ../../Zotlabs/Module/Admin.php:529 msgid "Allowed friend domains" msgstr "Toegestane domeinen" -#: ../../Zotlabs/Module/Admin.php:516 +#: ../../Zotlabs/Module/Admin.php:529 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze $Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Admin.php:530 msgid "Allowed email domains" msgstr "Toegestane e-maildomeinen" -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Admin.php:530 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 "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Admin.php:531 msgid "Not allowed email domains" msgstr "Niet toegestane e-maildomeinen" -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Admin.php:531 msgid "" "Comma separated list of domains which are not allowed in email addresses for" " registrations to this site. Wildcards are accepted. Empty to allow any " "domains, unless allowed domains have been defined." msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Admin.php:532 msgid "Verify Email Addresses" msgstr "E-mailadres verifieren" -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Admin.php:532 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." -#: ../../Zotlabs/Module/Admin.php:520 +#: ../../Zotlabs/Module/Admin.php:533 msgid "Force publish" msgstr "Dwing kanaalvermelding af" -#: ../../Zotlabs/Module/Admin.php:520 +#: ../../Zotlabs/Module/Admin.php:533 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." -#: ../../Zotlabs/Module/Admin.php:521 +#: ../../Zotlabs/Module/Admin.php:534 msgid "Import Public Streams" msgstr "Openbare streams importeren" -#: ../../Zotlabs/Module/Admin.php:521 +#: ../../Zotlabs/Module/Admin.php:534 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd." -#: ../../Zotlabs/Module/Admin.php:522 +#: ../../Zotlabs/Module/Admin.php:535 msgid "Login on Homepage" msgstr "Inlogformulier op de homepagina" -#: ../../Zotlabs/Module/Admin.php:522 +#: ../../Zotlabs/Module/Admin.php:535 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. " -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Admin.php:536 msgid "Enable context help" msgstr "Schakel contextuele hulp in" -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Admin.php:536 msgid "" "Display contextual help for the current page when the help button is " "pressed." msgstr "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt." -#: ../../Zotlabs/Module/Admin.php:525 +#: ../../Zotlabs/Module/Admin.php:538 msgid "Directory Server URL" msgstr "Server-URL voor de kanalengids" -#: ../../Zotlabs/Module/Admin.php:525 +#: ../../Zotlabs/Module/Admin.php:538 msgid "Default directory server" msgstr "Standaardserver voor de kanalengids" -#: ../../Zotlabs/Module/Admin.php:527 +#: ../../Zotlabs/Module/Admin.php:540 msgid "Proxy user" msgstr "Gebruikersnaam proxy" -#: ../../Zotlabs/Module/Admin.php:528 +#: ../../Zotlabs/Module/Admin.php:541 msgid "Proxy URL" msgstr "Proxy-URL" -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Admin.php:542 msgid "Network timeout" msgstr "Netwerktimeout" -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Admin.php:542 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Admin.php:543 msgid "Delivery interval" msgstr "Afleveringsinterval" -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Admin.php:543 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 "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Admin.php:544 msgid "Deliveries per process" msgstr "Leveringen per serverproces" -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Admin.php:544 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust" " if necessary to tune system performance. Recommend: 1-5." msgstr "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5" -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Admin.php:545 msgid "Poll interval" msgstr "Poll-interval" -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Admin.php:545 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Admin.php:546 msgid "Maximum Load Average" msgstr "Maximaal gemiddelde systeembelasting" -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Admin.php:546 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." -#: ../../Zotlabs/Module/Admin.php:534 +#: ../../Zotlabs/Module/Admin.php:547 msgid "Expiration period in days for imported (grid/network) content" msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd." -#: ../../Zotlabs/Module/Admin.php:534 +#: ../../Zotlabs/Module/Admin.php:547 msgid "0 for no expiration of imported content" msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "Off" -msgstr "Uit" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "On" -msgstr "Aan" - -#: ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Admin.php:691 #, php-format msgid "Lock feature %s" msgstr " Vergrendel de functie '%s'" -#: ../../Zotlabs/Module/Admin.php:686 +#: ../../Zotlabs/Module/Admin.php:699 msgid "Manage Additional Features" msgstr "Beheer - Extra functies" -#: ../../Zotlabs/Module/Admin.php:703 +#: ../../Zotlabs/Module/Admin.php:716 msgid "No server found" msgstr "Geen hub gevonden" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +#: ../../Zotlabs/Module/Admin.php:723 ../../Zotlabs/Module/Admin.php:1059 msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin.php:710 +#: ../../Zotlabs/Module/Admin.php:723 msgid "for channel" msgstr "voor kanaal" -#: ../../Zotlabs/Module/Admin.php:710 +#: ../../Zotlabs/Module/Admin.php:723 msgid "on server" msgstr "op hub" -#: ../../Zotlabs/Module/Admin.php:712 +#: ../../Zotlabs/Module/Admin.php:725 msgid "Server" msgstr "Hubbeheer" -#: ../../Zotlabs/Module/Admin.php:746 +#: ../../Zotlabs/Module/Admin.php:759 msgid "" "By default, unfiltered HTML is allowed in embedded media. This is inherently" " insecure." msgstr "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig." -#: ../../Zotlabs/Module/Admin.php:749 +#: ../../Zotlabs/Module/Admin.php:762 msgid "" "The recommended setting is to only allow unfiltered HTML from the following " "sites:" msgstr "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:" -#: ../../Zotlabs/Module/Admin.php:750 +#: ../../Zotlabs/Module/Admin.php:763 msgid "" "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/https://vimeo.com/
    https://soundcloud.com/
    " msgstr "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    " -#: ../../Zotlabs/Module/Admin.php:751 +#: ../../Zotlabs/Module/Admin.php:764 msgid "" "All other embedded content will be filtered, unless " "embedded content from that site is explicitly blocked." msgstr "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +#: ../../Zotlabs/Module/Admin.php:769 ../../include/widgets.php:1493 msgid "Security" msgstr "Beveiliging" -#: ../../Zotlabs/Module/Admin.php:758 +#: ../../Zotlabs/Module/Admin.php:771 msgid "Block public" msgstr "Openbare toegang blokkeren" -#: ../../Zotlabs/Module/Admin.php:758 +#: ../../Zotlabs/Module/Admin.php:771 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently authenticated." msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd." -#: ../../Zotlabs/Module/Admin.php:759 +#: ../../Zotlabs/Module/Admin.php:772 msgid "Set \"Transport Security\" HTTP header" msgstr "\"Transport Security\" HTTP-header inschakelen" -#: ../../Zotlabs/Module/Admin.php:760 +#: ../../Zotlabs/Module/Admin.php:773 msgid "Set \"Content Security Policy\" HTTP header" msgstr " \"Content Security Policy\" HTTP-header inschakelen" -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Admin.php:774 msgid "Allow communications only from these sites" msgstr "Alleen communicatie met deze hubs toestaan" -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Admin.php:774 msgid "" "One site per line. Leave empty to allow communication from anywhere by " "default" msgstr "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan" -#: ../../Zotlabs/Module/Admin.php:762 +#: ../../Zotlabs/Module/Admin.php:775 msgid "Block communications from these sites" msgstr "Communicatie met deze hubs blokkeren" -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Admin.php:776 msgid "Allow communications only from these channels" msgstr "Sta alleen communicatie toe met deze kanalen" -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Admin.php:776 msgid "" "One channel (hash) per line. Leave empty to allow from any channel by " "default" msgstr "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan" -#: ../../Zotlabs/Module/Admin.php:764 +#: ../../Zotlabs/Module/Admin.php:777 msgid "Block communications from these channels" msgstr "Communicatie met deze kanalen blokkeren" -#: ../../Zotlabs/Module/Admin.php:765 +#: ../../Zotlabs/Module/Admin.php:778 msgid "Only allow embeds from secure (SSL) websites and links." msgstr "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan." -#: ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:779 msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan" -#: ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:779 msgid "One site per line. By default embedded content is filtered." msgstr "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd." -#: ../../Zotlabs/Module/Admin.php:767 +#: ../../Zotlabs/Module/Admin.php:780 msgid "Block embedded HTML from these domains" msgstr "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren" -#: ../../Zotlabs/Module/Admin.php:785 +#: ../../Zotlabs/Module/Admin.php:798 msgid "Update has been marked successful" msgstr "Update is als succesvol gemarkeerd" -#: ../../Zotlabs/Module/Admin.php:795 +#: ../../Zotlabs/Module/Admin.php:808 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." -#: ../../Zotlabs/Module/Admin.php:798 +#: ../../Zotlabs/Module/Admin.php:811 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s was geslaagd." -#: ../../Zotlabs/Module/Admin.php:802 +#: ../../Zotlabs/Module/Admin.php:815 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." -#: ../../Zotlabs/Module/Admin.php:805 +#: ../../Zotlabs/Module/Admin.php:818 #, php-format msgid "Update function %s could not be found." msgstr "Update-functie %s kon niet gevonden worden." -#: ../../Zotlabs/Module/Admin.php:821 +#: ../../Zotlabs/Module/Admin.php:834 msgid "No failed updates." msgstr "Geen mislukte updates." -#: ../../Zotlabs/Module/Admin.php:825 +#: ../../Zotlabs/Module/Admin.php:838 msgid "Failed Updates" msgstr "Mislukte updates" -#: ../../Zotlabs/Module/Admin.php:827 +#: ../../Zotlabs/Module/Admin.php:840 msgid "Mark success (if update was manually applied)" msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" -#: ../../Zotlabs/Module/Admin.php:828 +#: ../../Zotlabs/Module/Admin.php:841 msgid "Attempt to execute this update step automatically" msgstr "Poging om deze stap van de update automatisch uit te voeren." -#: ../../Zotlabs/Module/Admin.php:859 +#: ../../Zotlabs/Module/Admin.php:872 msgid "Queue Statistics" msgstr "Wachtrij-statistieken" -#: ../../Zotlabs/Module/Admin.php:860 +#: ../../Zotlabs/Module/Admin.php:873 msgid "Total Entries" msgstr "Aantal vermeldingen" -#: ../../Zotlabs/Module/Admin.php:861 +#: ../../Zotlabs/Module/Admin.php:874 msgid "Priority" msgstr "Prioriteit" -#: ../../Zotlabs/Module/Admin.php:862 +#: ../../Zotlabs/Module/Admin.php:875 msgid "Destination URL" msgstr "Doel-URL" -#: ../../Zotlabs/Module/Admin.php:863 +#: ../../Zotlabs/Module/Admin.php:876 msgid "Mark hub permanently offline" msgstr "Hub als permanent offline markeren" -#: ../../Zotlabs/Module/Admin.php:864 +#: ../../Zotlabs/Module/Admin.php:877 msgid "Empty queue for this hub" msgstr "Berichtenwachtrij voor deze hub legen" -#: ../../Zotlabs/Module/Admin.php:865 +#: ../../Zotlabs/Module/Admin.php:878 msgid "Last known contact" msgstr "Voor het laatst contact" -#: ../../Zotlabs/Module/Admin.php:901 +#: ../../Zotlabs/Module/Admin.php:914 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "%s account geblokkeerd/gedeblokkeerd" msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" -#: ../../Zotlabs/Module/Admin.php:908 +#: ../../Zotlabs/Module/Admin.php:921 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "%s account verwijderd" msgstr[1] "%s accounts verwijderd" -#: ../../Zotlabs/Module/Admin.php:944 +#: ../../Zotlabs/Module/Admin.php:957 msgid "Account not found" msgstr "Account niet gevonden" -#: ../../Zotlabs/Module/Admin.php:955 +#: ../../Zotlabs/Module/Admin.php:968 #, php-format msgid "Account '%s' deleted" msgstr "Account '%s' verwijderd" -#: ../../Zotlabs/Module/Admin.php:963 +#: ../../Zotlabs/Module/Admin.php:976 #, php-format msgid "Account '%s' blocked" msgstr "Account '%s' geblokkeerd" -#: ../../Zotlabs/Module/Admin.php:971 +#: ../../Zotlabs/Module/Admin.php:984 #, php-format msgid "Account '%s' unblocked" msgstr "Account '%s' gedeblokkeerd" -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 +#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 +#: ../../include/widgets.php:1491 msgid "Accounts" msgstr "Accounts" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 msgid "select all" msgstr "alles selecteren" -#: ../../Zotlabs/Module/Admin.php:1034 +#: ../../Zotlabs/Module/Admin.php:1047 msgid "Registrations waiting for confirm" msgstr "Accounts die op goedkeuring wachten" -#: ../../Zotlabs/Module/Admin.php:1035 +#: ../../Zotlabs/Module/Admin.php:1048 msgid "Request date" msgstr "Tijd/datum verzoek" -#: ../../Zotlabs/Module/Admin.php:1036 +#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 +#: ../../include/network.php:2208 +msgid "Email" +msgstr "E-mail" + +#: ../../Zotlabs/Module/Admin.php:1049 msgid "No registrations." msgstr "Geen verzoeken." -#: ../../Zotlabs/Module/Admin.php:1038 +#: ../../Zotlabs/Module/Admin.php:1051 msgid "Deny" msgstr "Afkeuren" -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Blokkeren" + +#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Deblokkeren" + +#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 msgid "All Channels" msgstr "Alle kanalen" -#: ../../Zotlabs/Module/Admin.php:1049 +#: ../../Zotlabs/Module/Admin.php:1062 msgid "Register date" msgstr "Geregistreerd" -#: ../../Zotlabs/Module/Admin.php:1050 +#: ../../Zotlabs/Module/Admin.php:1063 msgid "Last login" msgstr "Laatste keer ingelogd" -#: ../../Zotlabs/Module/Admin.php:1051 +#: ../../Zotlabs/Module/Admin.php:1064 msgid "Expires" msgstr "Verloopt" -#: ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1065 msgid "Service Class" msgstr "Abonnementen" -#: ../../Zotlabs/Module/Admin.php:1054 +#: ../../Zotlabs/Module/Admin.php:1067 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted" " on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" -#: ../../Zotlabs/Module/Admin.php:1055 +#: ../../Zotlabs/Module/Admin.php:1068 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Admin.php:1091 +#: ../../Zotlabs/Module/Admin.php:1104 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "%s kanaal gecensureerd/ongecensureerd" msgstr[1] "%s kanalen gecensureerd/ongecensureerd" -#: ../../Zotlabs/Module/Admin.php:1100 +#: ../../Zotlabs/Module/Admin.php:1113 #, php-format msgid "%s channel code allowed/disallowed" msgid_plural "%s channels code allowed/disallowed" msgstr[0] "Scripts toegestaan/niet toegestaan voor %s kanaal" msgstr[1] "Scripts toegestaan/niet toegestaan voor %s kanalen" -#: ../../Zotlabs/Module/Admin.php:1106 +#: ../../Zotlabs/Module/Admin.php:1119 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "%s kanaal verwijderd" msgstr[1] "%s kanalen verwijderd" -#: ../../Zotlabs/Module/Admin.php:1126 +#: ../../Zotlabs/Module/Admin.php:1139 msgid "Channel not found" msgstr "Kanaal niet gevonden" -#: ../../Zotlabs/Module/Admin.php:1136 +#: ../../Zotlabs/Module/Admin.php:1149 #, php-format msgid "Channel '%s' deleted" msgstr "Kanaal '%s' verwijderd" -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Admin.php:1161 #, php-format msgid "Channel '%s' censored" msgstr "Kanaal '%s' gecensureerd" -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Admin.php:1161 #, php-format msgid "Channel '%s' uncensored" msgstr "Kanaal '%s' ongecensureerd" -#: ../../Zotlabs/Module/Admin.php:1159 +#: ../../Zotlabs/Module/Admin.php:1172 #, php-format msgid "Channel '%s' code allowed" msgstr "Scripts toegestaan voor kanaal '%s'" -#: ../../Zotlabs/Module/Admin.php:1159 +#: ../../Zotlabs/Module/Admin.php:1172 #, php-format msgid "Channel '%s' code disallowed" msgstr "Scripts niet toegestaan voor kanaal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1492 msgid "Channels" msgstr "Kanalen" -#: ../../Zotlabs/Module/Admin.php:1214 +#: ../../Zotlabs/Module/Admin.php:1227 msgid "Censor" msgstr "Censureren" -#: ../../Zotlabs/Module/Admin.php:1215 +#: ../../Zotlabs/Module/Admin.php:1228 msgid "Uncensor" msgstr "Niet censureren" -#: ../../Zotlabs/Module/Admin.php:1216 +#: ../../Zotlabs/Module/Admin.php:1229 msgid "Allow Code" msgstr "Scripts toestaan" -#: ../../Zotlabs/Module/Admin.php:1217 +#: ../../Zotlabs/Module/Admin.php:1230 msgid "Disallow Code" msgstr "Scripts niet toestaan" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1644 msgid "Channel" msgstr "Kanaal" -#: ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1235 msgid "UID" msgstr "UID" -#: ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Admin.php:1239 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 "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Admin.php:1227 +#: ../../Zotlabs/Module/Admin.php:1240 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 "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Admin.php:1284 +#: ../../Zotlabs/Module/Admin.php:1297 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s uitgeschakeld." -#: ../../Zotlabs/Module/Admin.php:1288 +#: ../../Zotlabs/Module/Admin.php:1301 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s ingeschakeld" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1599 msgid "Disable" msgstr "Uitschakelen" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +#: ../../Zotlabs/Module/Admin.php:1314 ../../Zotlabs/Module/Admin.php:1601 msgid "Enable" msgstr "Inschakelen" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 +#: ../../Zotlabs/Module/Admin.php:1343 ../../Zotlabs/Module/Admin.php:1434 +#: ../../include/widgets.php:1495 msgid "Plugins" msgstr "Plugins" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +#: ../../Zotlabs/Module/Admin.php:1344 ../../Zotlabs/Module/Admin.php:1628 msgid "Toggle" msgstr "Omschakelen" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1629 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 +#: ../../include/nav.php:212 msgid "Settings" msgstr "Instellingen" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1638 msgid "Author: " msgstr "Auteur: " -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1639 msgid "Maintainer: " msgstr "Beheerder: " -#: ../../Zotlabs/Module/Admin.php:1341 +#: ../../Zotlabs/Module/Admin.php:1354 msgid "Minimum project version: " msgstr "Minimum versie Hubzilla: " -#: ../../Zotlabs/Module/Admin.php:1342 +#: ../../Zotlabs/Module/Admin.php:1355 msgid "Maximum project version: " msgstr "Maximum versie Hubzilla:" -#: ../../Zotlabs/Module/Admin.php:1343 +#: ../../Zotlabs/Module/Admin.php:1356 msgid "Minimum PHP version: " msgstr "Minimum versie PHP: " -#: ../../Zotlabs/Module/Admin.php:1344 +#: ../../Zotlabs/Module/Admin.php:1357 +msgid "Compatible Server Roles: " +msgstr "Werkt met configuratietypes: " + +#: ../../Zotlabs/Module/Admin.php:1358 msgid "Requires: " msgstr "Vereist: " -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +#: ../../Zotlabs/Module/Admin.php:1359 ../../Zotlabs/Module/Admin.php:1439 msgid "Disabled - version incompatibility" msgstr "Uitgeschakeld - versie is incompatibel" -#: ../../Zotlabs/Module/Admin.php:1394 +#: ../../Zotlabs/Module/Admin.php:1408 msgid "Enter the public git repository URL of the plugin repo." msgstr "Vul de openbare Git-URL in van de plugin-repository." -#: ../../Zotlabs/Module/Admin.php:1395 +#: ../../Zotlabs/Module/Admin.php:1409 msgid "Plugin repo git URL" msgstr "Git-URL plugin-repository" -#: ../../Zotlabs/Module/Admin.php:1396 +#: ../../Zotlabs/Module/Admin.php:1410 msgid "Custom repo name" msgstr "Handmatige repository-naam" -#: ../../Zotlabs/Module/Admin.php:1396 +#: ../../Zotlabs/Module/Admin.php:1410 msgid "(optional)" msgstr "(optioneel)" -#: ../../Zotlabs/Module/Admin.php:1397 +#: ../../Zotlabs/Module/Admin.php:1411 msgid "Download Plugin Repo" msgstr "Plugin-repository downloaden" -#: ../../Zotlabs/Module/Admin.php:1404 +#: ../../Zotlabs/Module/Admin.php:1418 msgid "Install new repo" msgstr "Nieuwe repository installeren" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1419 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "Installeren" -#: ../../Zotlabs/Module/Admin.php:1427 +#: ../../Zotlabs/Module/Admin.php:1441 msgid "Manage Repos" msgstr "Repositories beheren" -#: ../../Zotlabs/Module/Admin.php:1428 +#: ../../Zotlabs/Module/Admin.php:1442 msgid "Installed Plugin Repositories" msgstr "Toegevoegde plugin-repositories" -#: ../../Zotlabs/Module/Admin.php:1429 +#: ../../Zotlabs/Module/Admin.php:1443 msgid "Install a New Plugin Repository" msgstr "Nieuwe plugin-repository toevoegen" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 -msgid "Update" -msgstr "Bijwerken" - -#: ../../Zotlabs/Module/Admin.php:1436 +#: ../../Zotlabs/Module/Admin.php:1450 msgid "Switch branch" msgstr "Branch veranderen" -#: ../../Zotlabs/Module/Admin.php:1550 +#: ../../Zotlabs/Module/Admin.php:1564 msgid "No themes found." msgstr "Geen thema's gevonden" -#: ../../Zotlabs/Module/Admin.php:1606 +#: ../../Zotlabs/Module/Admin.php:1620 msgid "Screenshot" msgstr "Schermafdruk" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 +#: ../../Zotlabs/Module/Admin.php:1627 ../../Zotlabs/Module/Admin.php:1661 +#: ../../include/widgets.php:1496 msgid "Themes" msgstr "Thema's" -#: ../../Zotlabs/Module/Admin.php:1652 +#: ../../Zotlabs/Module/Admin.php:1666 msgid "[Experimental]" msgstr "[Experimenteel]" -#: ../../Zotlabs/Module/Admin.php:1653 +#: ../../Zotlabs/Module/Admin.php:1667 msgid "[Unsupported]" msgstr "[Niet ondersteund]" -#: ../../Zotlabs/Module/Admin.php:1677 +#: ../../Zotlabs/Module/Admin.php:1691 msgid "Log settings updated." msgstr "Logboek-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 +#: ../../Zotlabs/Module/Admin.php:1746 ../../include/widgets.php:1517 +#: ../../include/widgets.php:1527 msgid "Logs" msgstr "Logboeken" -#: ../../Zotlabs/Module/Admin.php:1734 +#: ../../Zotlabs/Module/Admin.php:1748 msgid "Clear" msgstr "Leegmaken" -#: ../../Zotlabs/Module/Admin.php:1740 +#: ../../Zotlabs/Module/Admin.php:1754 msgid "Debugging" msgstr "Debuggen" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:1755 msgid "Log file" msgstr "Logbestand" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:1755 msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je $Projectname-installatie." -#: ../../Zotlabs/Module/Admin.php:1742 +#: ../../Zotlabs/Module/Admin.php:1756 msgid "Log level" msgstr "Logniveau" -#: ../../Zotlabs/Module/Admin.php:2028 +#: ../../Zotlabs/Module/Admin.php:2042 msgid "New Profile Field" msgstr "Nieuw profielveld" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 msgid "Field nickname" msgstr "Bijnaam voor veld" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 msgid "System name of field" msgstr "Systeemnaam voor veld" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +#: ../../Zotlabs/Module/Admin.php:2044 ../../Zotlabs/Module/Admin.php:2064 msgid "Input type" msgstr "Invoertype" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 msgid "Field Name" msgstr "Veldnaam" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 msgid "Label on profile pages" msgstr "Tekstlabel voor op profielpagina's" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 msgid "Help text" msgstr "Helptekst" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 msgid "Additional info (optional)" msgstr "Extra informatie (optioneel)" -#: ../../Zotlabs/Module/Admin.php:2042 +#: ../../Zotlabs/Module/Admin.php:2056 msgid "Field definition not found" msgstr "Velddefinitie niet gevonden" -#: ../../Zotlabs/Module/Admin.php:2048 +#: ../../Zotlabs/Module/Admin.php:2062 msgid "Edit Profile Field" msgstr "Profielveld bewerken" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +#: ../../Zotlabs/Module/Admin.php:2120 ../../include/widgets.php:1498 msgid "Profile Fields" msgstr "Profielvelden" -#: ../../Zotlabs/Module/Admin.php:2107 +#: ../../Zotlabs/Module/Admin.php:2121 msgid "Basic Profile Fields" msgstr "Standaard profielvelden" -#: ../../Zotlabs/Module/Admin.php:2108 +#: ../../Zotlabs/Module/Admin.php:2122 msgid "Advanced Profile Fields" msgstr "Geavanceerde profielvelden" -#: ../../Zotlabs/Module/Admin.php:2108 +#: ../../Zotlabs/Module/Admin.php:2122 msgid "(In addition to basic fields)" msgstr "(als toevoeging op de standaard velden)" -#: ../../Zotlabs/Module/Admin.php:2110 +#: ../../Zotlabs/Module/Admin.php:2124 msgid "All available fields" msgstr "Alle beschikbare velden" -#: ../../Zotlabs/Module/Admin.php:2111 +#: ../../Zotlabs/Module/Admin.php:2125 msgid "Custom Fields" msgstr "Extra (handmatig toegevoegde) velden" -#: ../../Zotlabs/Module/Admin.php:2115 +#: ../../Zotlabs/Module/Admin.php:2129 msgid "Create Custom Field" msgstr "Extra velden aanmaken" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App geïnstalleerd" - -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Misvormde app." +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Insluitcode" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bewerken" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App maken" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Naam van app" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL van pictogram" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels (optioneel)" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versie-ID" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prijs van de app" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Locatie (URL) om de app aan te schaffen" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-mailadres" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Opnieuw instellen" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Stemming" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Noteer je huidige stemming en toon het aan je connecties" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Profiel niet gevonden." -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profiel verwijderd." -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profiel-" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Registreren van nieuwe accounts is op deze hub uitgeschakeld." +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "Registraties op deze hub moeten eerst worden goedgekeurd." +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registreer op een andere hub." +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Geen profiel beschikbaar om te exporteren" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Huwelijke status" -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze $Projectname-hub" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Romantische partner" -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ik ben 13 jaar of ouder en accepteer de %s van deze $Projectname-hub" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Houdt van" -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Jouw e-mailadres" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Houdt niet van" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Werk/arbeid" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religie" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Politieke overtuigingen" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "Nee" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geslacht" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "Ja" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Homepage" -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 -msgid "Register" -msgstr "Registreren" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interesses" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Volgende stap: aanmaken van jouw eerste kanaal" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Inloggen." +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." -#: ../../Zotlabs/Module/Removeaccount.php:34 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" -#: ../../Zotlabs/Module/Removeaccount.php:56 -msgid "Remove This Account" -msgstr "Verwijder dit account" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Profiel weergeven" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "WARNING: " -msgstr "WAARSCHUWING: " +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." - -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "This action is permanent and can not be undone!" -msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Omslagfoto wijzigen" -#: ../../Zotlabs/Module/Removeaccount.php:59 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" -#: ../../Zotlabs/Module/Removeaccount.php:59 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Remove Account" -msgstr "Account verwijderen" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Dit profiel klonen" -#: ../../Zotlabs/Module/Removeme.php:33 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" -#: ../../Zotlabs/Module/Removeme.php:58 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "This channel will be completely removed from the network. " -msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1559 +msgid "Personal" +msgstr "Persoonlijk" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "Remove this channel and all its clones from the network" -msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relatie" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Diversen" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Het foutbericht was:" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Jouw geslacht" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Burgerlijke staat" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Seksuele voorkeur" -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Profielnaam" -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authenticeren" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "Items getagd met %s" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Jouw volledige naam" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Zoekresultaten voor %s" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titel/omschrijving" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Geen abonnementsbeperkingen gevonden." +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Straat en huisnummer" -#: ../../Zotlabs/Module/Settings.php:69 -msgid "Name is required" -msgstr "Naam is vereist" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Woonplaats" -#: ../../Zotlabs/Module/Settings.php:73 -msgid "Key and Secret are required" -msgstr "Key en secret zijn vereist" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Provincie/gewest/deelstaat" -#: ../../Zotlabs/Module/Settings.php:225 -msgid "Not valid email." -msgstr "Geen geldig e-mailadres." +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "Postcode" -#: ../../Zotlabs/Module/Settings.php:228 -msgid "Protected email address. Cannot change to that email." -msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Land" -#: ../../Zotlabs/Module/Settings.php:237 -msgid "System failure storing new email. Please try again." -msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Wie (wanneer van toepassing)" -#: ../../Zotlabs/Module/Settings.php:254 -msgid "Password verification failed." -msgstr "Wachtwoordverificatie mislukt" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl" -#: ../../Zotlabs/Module/Settings.php:261 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "Sinds (datum)" -#: ../../Zotlabs/Module/Settings.php:265 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Vertel ons iets over jezelf" -#: ../../Zotlabs/Module/Settings.php:279 -msgid "Password changed." -msgstr "Wachtwoord veranderd." +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL homepagina" -#: ../../Zotlabs/Module/Settings.php:281 -msgid "Password update failed. Please try again." -msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Oorspronkelijk uit" -#: ../../Zotlabs/Module/Settings.php:525 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Politieke overtuigingen" -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 -msgid "Add application" -msgstr "Applicatie toevoegen" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Religieuze overtuigingen" -#: ../../Zotlabs/Module/Settings.php:592 -msgid "Name of application" -msgstr "Naam van applicatie" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Trefwoorden voor in de kanalengids" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 -msgid "Consumer Key" -msgstr "Consumer key" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Muzikale interesses" -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 -msgid "Consumer Secret" -msgstr "Consumer secret" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Boeken/literatuur" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 -msgid "Redirect" -msgstr "Redirect/doorverwijzing" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisie" -#: ../../Zotlabs/Module/Settings.php:595 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film/dans/cultuur/entertainment" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 -msgid "Icon url" -msgstr "Pictogram-URL" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Optioneel" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Liefde/romantiek" -#: ../../Zotlabs/Module/Settings.php:607 -msgid "Application not found." -msgstr "Applicatie niet gevonden." +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "School/opleiding" -#: ../../Zotlabs/Module/Settings.php:650 -msgid "Connected Apps" -msgstr "Verbonden applicaties" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Contactinformatie en sociale netwerken" -#: ../../Zotlabs/Module/Settings.php:654 -msgid "Client key starts with" -msgstr "Client key begint met" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mijn andere kanalen" -#: ../../Zotlabs/Module/Settings.php:655 -msgid "No name" -msgstr "Geen naam" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "Profielfoto" -#: ../../Zotlabs/Module/Settings.php:656 -msgid "Remove authorization" -msgstr "Autorisatie verwijderen" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 +#: ../../include/nav.php:90 +msgid "Edit Profiles" +msgstr "Bewerk profielen" -#: ../../Zotlabs/Module/Settings.php:669 -msgid "No feature settings configured" -msgstr "Geen plugin-instellingen aanwezig" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." -#: ../../Zotlabs/Module/Settings.php:676 -msgid "Feature/Addon Settings" -msgstr "Plugin-instellingen" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Systeemnotificaties" -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Account Settings" -msgstr "Account-instellingen" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profielovereenkomst" -#: ../../Zotlabs/Module/Settings.php:700 -msgid "Current Password" -msgstr "Huidig wachtwoord" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." -#: ../../Zotlabs/Module/Settings.php:701 -msgid "Enter New Password" -msgstr "Nieuw wachtwoord invoeren" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Confirm New Password" -msgstr "Nieuw wachtwoord bevestigen" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Geen overeenkomsten" -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import Webpage Elements" +msgstr "Webpagina-elementen importeren" -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 -msgid "Email Address:" -msgstr "E-mailadres:" +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import selected" +msgstr "Importbestand geselecteerd" -#: ../../Zotlabs/Module/Settings.php:706 -msgid "Remove this account including all its channels" -msgstr "Dit account en al zijn kanalen verwijderen" +#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/conversation.php:1718 ../../include/nav.php:108 +msgid "Webpages" +msgstr "Webpagina's" -#: ../../Zotlabs/Module/Settings.php:729 -msgid "Additional Features" -msgstr "Extra functies" +#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Acties" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Connector Settings" -msgstr "Instellingen externe koppelingen" +#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Paginalink" -#: ../../Zotlabs/Module/Settings.php:792 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" +#: ../../Zotlabs/Module/Webpages.php:227 +msgid "Page Title" +msgstr "Paginatitel" -#: ../../Zotlabs/Module/Settings.php:795 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimenteel)" +#: ../../Zotlabs/Module/Webpages.php:258 +msgid "Invalid file type." +msgstr "Ongeldig bestandsformaat" -#: ../../Zotlabs/Module/Settings.php:837 -msgid "Display Settings" -msgstr "Weergave-instellingen" +#: ../../Zotlabs/Module/Webpages.php:270 +msgid "Error opening zip file" +msgstr "Fout met openen zipbestand" -#: ../../Zotlabs/Module/Settings.php:838 -msgid "Theme Settings" -msgstr "Thema-instellingen" +#: ../../Zotlabs/Module/Webpages.php:281 +msgid "Invalid folder path." +msgstr "Ongeldige maplocatie" -#: ../../Zotlabs/Module/Settings.php:839 -msgid "Custom Theme Settings" -msgstr "Handmatige thema-instellingen" +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "No webpage elements detected." +msgstr "Geen webpagina-elementen gedecteerd" -#: ../../Zotlabs/Module/Settings.php:840 -msgid "Content Settings" -msgstr "Inhoudsinstellingen" +#: ../../Zotlabs/Module/Webpages.php:382 +msgid "Import complete." +msgstr "Importeren voltooid." -#: ../../Zotlabs/Module/Settings.php:846 -msgid "Display Theme:" -msgstr "Gebruik thema:" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Agenda-items geïmporteerd." -#: ../../Zotlabs/Module/Settings.php:847 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Geen agenda-items gevonden." -#: ../../Zotlabs/Module/Settings.php:848 -msgid "Preload images before rendering the page" -msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" -#: ../../Zotlabs/Module/Settings.php:848 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Niet in staat om voorvertoning te genereren" -#: ../../Zotlabs/Module/Settings.php:849 -msgid "Enable user zoom on mobile devices" -msgstr "Inzoomen op smartphones en tablets toestaan" +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Update browser every xx seconds" -msgstr "Ververs de webbrowser om de zoveel seconde" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimaal 10 seconde, geen maximum" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" +msgstr "Titel bewerken" -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximaal aantal conversaties die per keer geladen worden:" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" +msgstr "Titel" -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum of 100 items" -msgstr "Maximaal 100 conversaties" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" -#: ../../Zotlabs/Module/Settings.php:852 -msgid "Show emoticons (smilies) as images" -msgstr "Toon emoticons (smilies) als afbeeldingen" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" +msgstr "Categorie" -#: ../../Zotlabs/Module/Settings.php:853 -msgid "Link post titles to source" -msgstr "Berichtkoppen naar originele locatie linken" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" +msgstr "Categorie" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "System Page Layout Editor - (advanced)" -msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" +msgstr "Begindatum en -tijd bewerken" -#: ../../Zotlabs/Module/Settings.php:857 -msgid "Use blog/list mode on channel page" -msgstr "Gebruik blog/lijst-modus op kanaalpagina" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" +msgstr "Begindatum en -tijd" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 -msgid "(comments displayed separately)" -msgstr "(reacties worden afzonderlijk weergeven)" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" +msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" -#: ../../Zotlabs/Module/Settings.php:858 -msgid "Use blog/list mode on grid page" -msgstr "Gebruik blog/lijst-modus op gridpagina" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" +msgstr "Einddatum en -tijd bewerken" -#: ../../Zotlabs/Module/Settings.php:859 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" +msgstr "Einddatum en -tijd" -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 -msgid "click to expand content exceeding this height" -msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" -#: ../../Zotlabs/Module/Settings.php:860 -msgid "Grid page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" +#: ../../Zotlabs/Module/Events.php:463 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." -#: ../../Zotlabs/Module/Settings.php:894 -msgid "Nobody except yourself" -msgstr "Niemand, behalve jezelf" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" +msgstr "Omschrijving bewerken" -#: ../../Zotlabs/Module/Settings.php:895 -msgid "Only those you specifically allow" -msgstr "Alleen connecties met uitdrukkelijke toestemming" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" +msgstr "Locatie bewerken" -#: ../../Zotlabs/Module/Settings.php:896 -msgid "Approved connections" -msgstr "Geaccepteerde connecties" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" -#: ../../Zotlabs/Module/Settings.php:897 -msgid "Any connections" -msgstr "Alle connecties" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 +msgid "Permission settings" +msgstr "Permissies" -#: ../../Zotlabs/Module/Settings.php:898 -msgid "Anybody on this website" -msgstr "Iedereen op deze hub" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" +msgstr "Geavanceerde opties" -#: ../../Zotlabs/Module/Settings.php:899 -msgid "Anybody in this network" -msgstr "Iedereen in dit netwerk" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Settings.php:900 -msgid "Anybody authenticated" -msgstr "Geauthenticeerd" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" -#: ../../Zotlabs/Module/Settings.php:901 -msgid "Anybody on the internet" -msgstr "Iedereen op het internet" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" +msgstr "Gebeurtenis verwijderen" -#: ../../Zotlabs/Module/Settings.php:976 -msgid "Publish your default profile in the network directory" -msgstr "Publiceer je standaardprofiel in de kanalengids" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1716 +msgid "Link to Source" +msgstr "Originele locatie" -#: ../../Zotlabs/Module/Settings.php:981 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" +msgstr "agenda" -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Your channel address is" -msgstr "Jouw kanaaladres is" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Gebeurtenis bewerken" -#: ../../Zotlabs/Module/Settings.php:1032 -msgid "Channel Settings" -msgstr "Kanaal-instellingen" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Gebeurtenis aanmaken" -#: ../../Zotlabs/Module/Settings.php:1039 -msgid "Basic Settings" -msgstr "Basis-instellingen" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Exporteren" -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 -msgid "Full Name:" -msgstr "Volledige naam:" +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" +msgstr "Maand" -#: ../../Zotlabs/Module/Settings.php:1042 -msgid "Your Timezone:" -msgstr "Jouw tijdzone:" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Week" -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Default Post Location:" -msgstr "Standaardlocatie bericht:" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Dag" -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Geographical location to display on your posts" -msgstr "Geografische locatie die bij het bericht moet worden vermeld" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Vandaag" -#: ../../Zotlabs/Module/Settings.php:1044 -msgid "Use Browser Location:" -msgstr "Locatie van webbrowser gebruiken:" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Gebeurtenis verwijderd" -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "Adult Content" -msgstr "Inhoud voor volwassenen" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Verwijderen gebeurtenis mislukt" -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Security and Privacy Settings" -msgstr "Veiligheids- en privacy-instellingen" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Geen kanaal. Importeren mislukt." -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Hide my online presence" -msgstr "Verberg mijn aanwezigheid" +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import voltooid." -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Prevents displaying in your profile that you are online" -msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Simple Privacy Settings:" -msgstr "Eenvoudige privacy-instellingen:" +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Kanaal importeren" -#: ../../Zotlabs/Module/Settings.php:1056 +#: ../../Zotlabs/Module/Import.php:548 msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Private - default private, never open or public" -msgstr "Privé (standaard privé en nooit openbaar)" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Blocked - default blocked to/from everybody" -msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" -#: ../../Zotlabs/Module/Settings.php:1061 -msgid "Allow others to tag your posts" -msgstr "Anderen toestaan om je berichten te taggen" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Import.php:554 msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" - -#: ../../Zotlabs/Module/Settings.php:1063 -msgid "Advanced Privacy Settings" -msgstr "Geavanceerde privacy-instellingen" - -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "Expire other channel content after this many days" -msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" - -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "0 or blank to use the website limit." -msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken." +"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 "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." -#: ../../Zotlabs/Module/Settings.php:1065 -#, php-format -msgid "This website expires after %d days." -msgstr "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "This website does not expire imported content." -msgstr "Deze hub laat de inhoud van andere kanalen niet verlopen." +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang." +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal connectieverzoeken per dag:" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Kanaal aanmaken" -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "May reduce spam activity" -msgstr "Kan eventuele spam verminderen" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." -#: ../../Zotlabs/Module/Settings.php:1067 -msgid "Default Post and Publish Permissions" -msgstr "Standaard permissies voor nieuwe berichten en publicaties" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" -#: ../../Zotlabs/Module/Settings.php:1069 -msgid "Use my default audience setting for the type of object published" -msgstr "Gebruik mijn standaard privacy-instelling voor dit type publicatie" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" -#: ../../Zotlabs/Module/Settings.php:1072 -msgid "Channel permissions category:" -msgstr "Kanaaltype en -permissies:" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "G:i, l d F" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Useful to reduce spamming" -msgstr "Kan eventuele spam verminderen" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[vandaag]" -#: ../../Zotlabs/Module/Settings.php:1081 -msgid "Notification Settings" -msgstr "Notificatie-instellingen" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" -#: ../../Zotlabs/Module/Settings.php:1082 -msgid "By default post a status message when:" -msgstr "Plaats automatisch een bericht wanneer:" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" -#: ../../Zotlabs/Module/Settings.php:1083 -msgid "accepting a friend request" -msgstr "Een connectieverzoek wordt geaccepteerd" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuleren" -#: ../../Zotlabs/Module/Settings.php:1084 -msgid "joining a forum/community" -msgstr "Je lid wordt van een forum/groep" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "making an interesting profile change" -msgstr "Er sprake is van een interessante profielwijziging" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" +msgstr "Aanstoten" -#: ../../Zotlabs/Module/Settings.php:1086 -msgid "Send a notification email when:" -msgstr "Verzend een notificatie per e-mail wanneer:" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Iemand aanstoten" -#: ../../Zotlabs/Module/Settings.php:1087 -msgid "You receive a connection request" -msgstr "Je een connectieverzoek ontvangt" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" -#: ../../Zotlabs/Module/Settings.php:1088 -msgid "Your connections are confirmed" -msgstr "Jouw connecties zijn bevestigd" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Iemand bijvoorbeeld aanstoten of poren" -#: ../../Zotlabs/Module/Settings.php:1089 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op jouw kanaal heeft geschreven" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Ontvanger" -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Maak dit bericht privé" -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "You receive a friend suggestion" -msgstr "Je een kanaalvoorstel ontvangt" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." -#: ../../Zotlabs/Module/Settings.php:1094 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je bent in een bericht aangestoten/gepord/etc." +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../Zotlabs/Module/Settings.php:1097 -msgid "Show visual notifications including:" -msgstr "Toon de volgende zichtbare notificaties:" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../Zotlabs/Module/Settings.php:1099 -msgid "Unseen grid activity" -msgstr "Niet bekeken grid-activiteit" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Profiel" -#: ../../Zotlabs/Module/Settings.php:1100 -msgid "Unseen channel activity" -msgstr "Niet bekeken kanaal-activiteit" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" -#: ../../Zotlabs/Module/Settings.php:1101 -msgid "Unseen private messages" -msgstr "Niet bekeken privéberichten" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Zichtbaar voor" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "Recommended" -msgstr "Aanbevolen" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." -#: ../../Zotlabs/Module/Settings.php:1102 -msgid "Upcoming events" -msgstr "Aankomende gebeurtenissen" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Configuratiebewerker" -#: ../../Zotlabs/Module/Settings.php:1103 -msgid "Events today" -msgstr "Gebeurtenissen van vandaag" +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Upcoming birthdays" -msgstr "Aankomende verjaardagen" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Not available in all themes" -msgstr "Niet in alle thema's beschikbaar" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Berichten en reacties" -#: ../../Zotlabs/Module/Settings.php:1105 -msgid "System (personal) notifications" -msgstr "(Persoonlijke) systeemnotificaties" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Alleen berichten" -#: ../../Zotlabs/Module/Settings.php:1106 -msgid "System info messages" -msgstr "Systeemmededelingen" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." -#: ../../Zotlabs/Module/Settings.php:1107 -msgid "System critical alerts" -msgstr "Kritische systeemwaarschuwingen" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versie %s" -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "New connections" -msgstr "Nieuwe connecties" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plugins en apps:" -#: ../../Zotlabs/Module/Settings.php:1109 -msgid "System Registrations" -msgstr "Nieuwe accountregistraties op deze hub" +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plugins en apps" -#: ../../Zotlabs/Module/Settings.php:1110 +#: ../../Zotlabs/Module/Siteinfo.php:49 msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Notify me of events this many days in advance" -msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Tag: " -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Must be greater than 0" -msgstr "Moet hoger dan 0 zijn" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" -#: ../../Zotlabs/Module/Settings.php:1114 -msgid "Advanced Account/Page Type Settings" -msgstr "Instellingen geavanceerd account/paginatype" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Gemiddelde systeembelasting is nu:" -#: ../../Zotlabs/Module/Settings.php:1115 -msgid "Change the behaviour of this account for special situations" -msgstr "Verander het gedrag van dit account voor speciale situaties" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" -#: ../../Zotlabs/Module/Settings.php:1118 +#: ../../Zotlabs/Module/Siteinfo.php:59 msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bezoek hubzilla.org " -#: ../../Zotlabs/Module/Settings.php:1119 -msgid "Miscellaneous Settings" -msgstr "Diverse instellingen" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" -#: ../../Zotlabs/Module/Settings.php:1120 -msgid "Default photo upload folder" -msgstr "Standaard fotoalbum voor uploads" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "$projectname-issues" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "%Y - current year, %m - current month" -msgstr "%Y - dit jaar, %m - deze maand" +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "Default file upload folder" -msgstr "Standaard bestandsmap voor uploads" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Hubbeheerders: " -#: ../../Zotlabs/Module/Settings.php:1123 -msgid "Personal menu to display in your channel pages" -msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 +msgid "Blocks" +msgstr "Blokken" -#: ../../Zotlabs/Module/Settings.php:1125 -msgid "Remove this channel." -msgstr "Verwijder dit kanaal." +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Bloktitel" -#: ../../Zotlabs/Module/Settings.php:1126 -msgid "Firefox Share $Projectname provider" -msgstr "$Projectname-service voor Firefox Share" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 +msgid "Layouts" +msgstr "Lay-outs" -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Start calendar week on monday" -msgstr "Begin in de agenda de week op maandag" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Hulp met de paginabeschrijvingstaal Comanche" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "$Projectname Hub - Setup" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Lay-out-omschrijving" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "Could not connect to database." +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "Download PDL-bestand" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Geen beoordelingen" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "Could not create table." +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Beoordeling: " -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "Your hub database has been installed." +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Website: " -#: ../../Zotlabs/Module/Setup.php:203 +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Omschrijving: " + +#: ../../Zotlabs/Module/Profile_photo.php:186 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "System check" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permissies niet toegestaan" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Check again" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 +msgid "Import" +msgstr "Importeren" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Database connection" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Geen kanaal." -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "In order to install $Projectname we need to know how to connect to your database." +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Veel voorkomende connecties" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Please contact your hosting provider or server administrator if you have questions about these settings." +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "The database you specify below should already exist. If it does not, please create it before continuing." +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Database Server Name" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Database Port" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Berichten" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Database Login Name" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Bericht ingetrokken." -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Database Login Password" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Database Name" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "Vul een URL in:" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Database Type" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "Hub administrator email address" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Your account email address must match this in order to use the web admin panel." +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Privébericht versturen" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "Hub URL" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "Aan:" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Onderwerp:" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Please select a default timezone for your hub" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1239 +msgid "Attach file" +msgstr "Bestand toevoegen" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Hub settings" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Verzenden" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Enable $Projectname advanced features?" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1284 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Some advanced features, while useful - may be best suited for technically proficient audiences" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 +#: ../../include/conversation.php:1289 +msgid "Encrypt text" +msgstr "Tekst versleutelen" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Bericht verwijderen" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "PHP version" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Afleveringsrapport" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Bericht intrekken" -#: ../../Zotlabs/Module/Setup.php:405 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron." +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "PHP executable path" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Verwijder conversatie" -#: ../../Zotlabs/Module/Setup.php:409 +#: ../../Zotlabs/Module/Mail.php:355 msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Enter full path to php executable. You can leave this blank to continue the installation." +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "Command line PHP" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Antwoord versturen" -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Jouw privébericht aan %s (%s):" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "This is required for message delivery to work." +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de connectie-gegevens." -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once." +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "You can adjust these settings in the servers php.ini." +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Bijwerken van connectie-gegevens mislukt." -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "PHP upload limits" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "is nu verbonden met" -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Generate encryption keys" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "Niet in staat om de parameters van connecties in te stellen." -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/conversation.php:955 ../../include/nav.php:88 +msgid "View Profile" +msgstr "Profiel weergeven" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "mysqli or postgres PHP module" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP module" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Recente activiteit/berichten" -#: ../../Zotlabs/Module/Setup.php:497 -msgid "xml PHP module" -msgstr "xml PHP module" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" -#: ../../Zotlabs/Module/Setup.php:501 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "Deze connectie is geblokkeerd!" -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Niet meer negeren" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" -#: ../../Zotlabs/Module/Setup.php:515 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "Deze connectie wordt genegeerd!" -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Niet meer archiveren" -#: ../../Zotlabs/Module/Setup.php:523 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archiveren" -#: ../../Zotlabs/Module/Setup.php:527 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: mysqli or postgres PHP module required but neither are installed." +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" -#: ../../Zotlabs/Module/Setup.php:531 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "Deze connectie is gearchiveerd!" -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: mcrypt PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "Niet meer verbergen" -#: ../../Zotlabs/Module/Setup.php:539 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Verbergen" -#: ../../Zotlabs/Module/Setup.php:557 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so." +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" -#: ../../Zotlabs/Module/Setup.php:558 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can." +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "Deze connectie is verborgen!" -#: ../../Zotlabs/Module/Setup.php:559 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder." +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Deze connectie verwijderen" -#: ../../Zotlabs/Module/Setup.php:560 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 +msgid "Me" +msgstr "Ik" -#: ../../Zotlabs/Module/Setup.php:563 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 +msgid "Family" +msgstr "Familie" -#: ../../Zotlabs/Module/Setup.php:577 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 +msgid "Acquaintances" +msgstr "Kennissen" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." -msgstr "In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder." +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Deze connectie accepteren" -#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Keur deze connectie goed om communicatie toe te staan" -#: ../../Zotlabs/Module/Setup.php:580 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Verwantschapsfilter instellen" -#: ../../Zotlabs/Module/Setup.php:583 -#, php-format -msgid "%s is writable" -msgstr "%s is writable" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Profiel instellen" -#: ../../Zotlabs/Module/Setup.php:599 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "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" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Verwantschapsfilter en profiel instellen" -#: ../../Zotlabs/Module/Setup.php:603 -msgid "store is writable" -msgstr "store is writable" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "geen" -#: ../../Zotlabs/Module/Setup.php:636 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:623 +msgid "Connection Default Permissions" +msgstr "Standaard permissies voor connecties" -#: ../../Zotlabs/Module/Setup.php:637 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3964 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Deze permissies automatisch toepassen" -#: ../../Zotlabs/Module/Setup.php:639 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd" -#: ../../Zotlabs/Module/Setup.php:640 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "Het primaire kanaaladres van deze connectie is" + +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Beschikbare locaties:" -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Connedit.php:758 msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Providers are available that issue free certificates which are browser-valid." +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." -#: ../../Zotlabs/Module/Setup.php:643 -msgid "SSL certificate validation" -msgstr "SSL certificate validation" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Setup.php:649 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" -#: ../../Zotlabs/Module/Setup.php:652 -msgid "Url rewrite is working" -msgstr "Url rewrite is working" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Gebruik de schuif om je beoordeling te geven" -#: ../../Zotlabs/Module/Setup.php:661 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "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." +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Verklaar jouw beoordeling (niet verplicht)" -#: ../../Zotlabs/Module/Setup.php:685 -msgid "Errors encountered creating database tables." -msgstr "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Berichtenfilter" -#: ../../Zotlabs/Module/Setup.php:719 -msgid "

    What next

    " -msgstr "

    What next

    " +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Importeer alleen berichten met deze tekst" -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." - -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Bestanden: met mij gedeeld" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NIEUW" +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "Importeer geen berichten met deze tekst" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Verwijder alle bestanden" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "Deze informatie is openbaar!" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Verwijder dit bestand" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Connectie moet nog geaccepteerd worden" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Connedit.php:780 #, php-format -msgid "Version %s" -msgstr "Versie %s" - -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plugins en apps:" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plugins en apps" +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." -#: ../../Zotlabs/Module/Siteinfo.php:66 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Tag: " +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Laatste wijziging:" -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Meest recente achtergrond-fetch:" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:167 +msgid "Apps" +msgstr "Apps" -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Gemiddelde systeembelasting is nu:" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Ga verder" -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bezoek hubzilla.org " +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "$projectname-issues" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" -#: ../../Zotlabs/Module/Siteinfo.php:80 +#: ../../Zotlabs/Module/Connect.php:96 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Hubbeheerders: " +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Bron aangemaakt." +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Bron aangemaakt." +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 -msgid "Channel Sources" -msgstr "Kanaalbronnen" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nieuwe bron" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importeer alleen inhoud met deze woorden (één per regel)" +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Laat leeg om alle openbare inhoud te importeren" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Authenticeren" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Kanaalnaam" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Inloggen." -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)" - -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Bron niet gevonden" - -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Bron bewerken" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Bron verwijderen" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Verwijder dit account" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Bron verwijderd" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " +msgstr "WAARSCHUWING: " -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Verwijderen bron mislukt." +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" +msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s niet meer" +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" -#: ../../Zotlabs/Module/Suggest.php:39 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 -msgid "post" -msgstr "bericht" +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "reactie" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag verwijderd" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Verwijder item-tag" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Kies een tag om te verwijderen" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanaal exporteren" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Ding bijgewerkt" +#: ../../Zotlabs/Module/Uexport.php:57 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Ding toegevoegd" - -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Ding weergeven" - -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Item niet gevonden" - -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Ding bewerken" - -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Kies een profiel" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Plaats een bericht" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" - -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL voor foto van ding (optioneel)" - -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" - -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanaal exporteren" - -#: ../../Zotlabs/Module/Uexport.php:57 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." - -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Inhoud exporteren" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Inhoud exporteren" #: ../../Zotlabs/Module/Uexport.php:59 msgid "" @@ -6221,194 +6095,477 @@ msgid "" " please import or restore these in date order (oldest first)." msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." -#: ../../Zotlabs/Module/Viewconnections.php:62 -msgid "No connections." -msgstr "Geen connecties." +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" + +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:138 +msgid "Edit post" +msgstr "Bericht bewerken" -#: ../../Zotlabs/Module/Viewconnections.php:75 +#: ../../Zotlabs/Module/Search.php:216 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bezoek het profiel van %s [%s]" +msgid "Items tagged with: %s" +msgstr "Items getagd met %s" -#: ../../Zotlabs/Module/Viewconnections.php:104 -msgid "View Connections" -msgstr "Connecties weergeven" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Zoekresultaten voor %s" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Bron van item" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Geen abonnementsbeperkingen gevonden." -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Webpagina's" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Ding bijgewerkt" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Acties" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Paginalink" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Ding toegevoegd" -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Paginatitel" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Xchan opzoeken" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Ding weergeven" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Zoek een xchan (of webbie) die begint met:" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Item niet gevonden" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Hubbeheerder" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Ding bewerken" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "Bugrapport" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" +msgstr "Kies een profiel" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "Bladwijzers bekijken" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" +msgstr "Plaats een bericht" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "Mijn chatkanalen" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "Firefox Share" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "Diagnose op afstand" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" +msgstr "URL voor foto van ding (optioneel)" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Inloggen" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Grid" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Jouw kanaal" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Agenda" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Kanalengids" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "Dubbel bericht tegengehouden." -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Privéberichten" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chatten" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Onderzoeken" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Voorstellen" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Willekeurig kanaal" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Bestanden: met mij gedeeld" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Uitnodigen " +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NIEUW" -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Extra functies" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Verwijder alle bestanden" -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Bericht" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Verwijder dit bestand" -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Aanschaffen" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Niet gevonden" -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/conversation.php:1728 ../../include/conversation.php:1731 +#: ../../include/features.php:57 ../../include/nav.php:110 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Zandbak" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\"" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Revisies vergelijken" -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "Chatkanaal is vol" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Ongedaan maken" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 -msgid "$Projectname Notification" -msgstr "$Projectname-notificatie" +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Vul de naam in van jouw nieuwe wiki:" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Vul de naam in van de nieuwe pagina:" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 -msgid "Thank You," -msgstr "Bedankt," +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Vul de nieuwe naam in:" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 -#, php-format -msgid "%s Administrator" -msgstr "Beheerder %s" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" +msgstr "Afbeelding uit een fotoalbum invoegen" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 +msgid "Embed an image from your albums" +msgstr "Afbeelding uit jouw albums invoegen" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 +#: ../../include/conversation.php:1291 +msgid "OK" +msgstr "OK" -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" +msgstr "Kies afbeeldingen om in te voegen" -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s zond jou %2$s." +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" +msgstr "Kies een album" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "een privébericht" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." +msgstr "Kies een ander album..." + +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" +msgstr "Fout met ophalen albumlijst" + +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" +msgstr "Fout met ophalen fotolink" + +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" +msgstr "Fout met ophalen album" + +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." + +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Bron aangemaakt." + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Bron aangemaakt." + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:639 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Kanaalbronnen" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nieuwe bron" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importeer alleen inhoud met deze woorden (één per regel)" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Laat leeg om alle openbare inhoud te importeren" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Kanaalnaam" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)" + +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Bron niet gevonden" + +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Bron bewerken" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Bron verwijderen" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Bron verwijderd" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Verwijderen bron mislukt." + +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s" + +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s niet meer" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." + +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" + +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "bericht" + +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "reactie" + +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag verwijderd" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Verwijder item-tag" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Kies een tag om te verwijderen" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanaal toegevoegd." + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Geen connecties." + +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bezoek het profiel van %s [%s]" + +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" +msgstr "Connecties weergeven" + +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Bron van item" + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Chatkanaal verwijderen" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ik ben online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Functie uitgeschakeld." + +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Naam chatkanaal" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Aantal minuten voordat chatberichten worden verwijderd" + +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" + +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "Geen chatkanalen beschikbaar" + +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Verloopt na" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan opzoeken" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Zoek een xchan (of webbie) die begint met:" + +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" + +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" + +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" + +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" + +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "Chatkanaal is vol" + +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 +msgid "$Projectname Notification" +msgstr "$Projectname-notificatie" + +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 +msgid "$projectname" +msgstr "$projectname" + +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 +msgid "Thank You," +msgstr "Bedankt," + +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 +#, php-format +msgid "%s Administrator" +msgstr "Beheerder %s" + +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../Zotlabs/Lib/Enotify.php:104 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" + +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." + +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s zond jou %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "een privébericht" #: ../../Zotlabs/Lib/Enotify.php:108 #, php-format @@ -6574,11 +6731,168 @@ msgstr "maakte een nieuw bericht aan" msgid "commented on %s's post" msgstr "gaf een reactie op een bericht van %s" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 -msgid "Private Message" -msgstr "Niet voor iedereen zichtbaar" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Hubbeheerder" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Bugrapport" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Bladwijzers bekijken" + +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Mijn chatkanalen" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Firefox Share" + +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Diagnose op afstand" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 +#: ../../boot.php:1738 +msgid "Login" +msgstr "Inloggen" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 +msgid "Channel Home" +msgstr "Jouw kanaal" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1682 +#: ../../include/conversation.php:1685 ../../include/nav.php:205 +msgid "Events" +msgstr "Agenda" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 +msgid "Directory" +msgstr "Kanalengids" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 +msgid "Mail" +msgstr "Privéberichten" + +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 +msgid "Chat" +msgstr "Chatten" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Onderzoeken" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Willekeurig kanaal" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Uitnodigen " + +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 +msgid "Features" +msgstr "Extra functies" + +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Taal" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Bericht" + +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Profielfoto" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Aanschaffen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:124 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:165 +msgid "Only me" +msgstr "Alleen ik" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Openbaar" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Iedereen in het $Projectname-netwerk" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Iedereen op %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Al mijn geaccepteerde connecties" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" + +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" +msgstr "Niet voor iedereen zichtbaar" + +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 msgid "Select" msgstr "Kies" @@ -6626,11 +6940,11 @@ msgstr "Ster toevoegen of verwijderen" msgid "starred" msgstr "met ster" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 msgid "Message signature validated" msgstr "Berichtkenmerk gevalideerd" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 msgid "Message signature incorrect" msgstr "Berichtkenmerk onjuist" @@ -6638,114 +6952,115 @@ msgstr "Berichtkenmerk onjuist" msgid "Add Tag" msgstr "Tag toevoegen" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 msgid "like" msgstr "vind dit leuk" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 msgid "dislike" msgstr "vind dit niet leuk" -#: ../../Zotlabs/Lib/ThreadItem.php:266 +#: ../../Zotlabs/Lib/ThreadItem.php:267 msgid "Share This" msgstr "Delen" -#: ../../Zotlabs/Lib/ThreadItem.php:266 +#: ../../Zotlabs/Lib/ThreadItem.php:267 msgid "share" msgstr "delen" -#: ../../Zotlabs/Lib/ThreadItem.php:275 +#: ../../Zotlabs/Lib/ThreadItem.php:276 msgid "Delivery Report" msgstr "Afleveringsrapport" -#: ../../Zotlabs/Lib/ThreadItem.php:293 +#: ../../Zotlabs/Lib/ThreadItem.php:294 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d reactie" msgstr[1] "%d reacties weergeven" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 #, php-format msgid "View %s's profile - %s" msgstr "Profiel van %s bekijken - %s" -#: ../../Zotlabs/Lib/ThreadItem.php:326 +#: ../../Zotlabs/Lib/ThreadItem.php:327 msgid "to" msgstr "aan" -#: ../../Zotlabs/Lib/ThreadItem.php:327 +#: ../../Zotlabs/Lib/ThreadItem.php:328 msgid "via" msgstr "via" -#: ../../Zotlabs/Lib/ThreadItem.php:328 +#: ../../Zotlabs/Lib/ThreadItem.php:329 msgid "Wall-to-Wall" msgstr "Kanaal-naar-kanaal" -#: ../../Zotlabs/Lib/ThreadItem.php:329 +#: ../../Zotlabs/Lib/ThreadItem.php:330 msgid "via Wall-To-Wall:" msgstr "via kanaal-naar-kanaal" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 #, php-format msgid "from %s" msgstr "van %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 #, php-format msgid "last edited: %s" msgstr "laatst bewerkt: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 #, php-format msgid "Expires: %s" msgstr "Verloopt: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:370 +#: ../../Zotlabs/Lib/ThreadItem.php:371 msgid "Save Bookmarks" msgstr "Bladwijzers opslaan" -#: ../../Zotlabs/Lib/ThreadItem.php:371 +#: ../../Zotlabs/Lib/ThreadItem.php:372 msgid "Add to Calendar" msgstr "Aan agenda toevoegen" -#: ../../Zotlabs/Lib/ThreadItem.php:380 +#: ../../Zotlabs/Lib/ThreadItem.php:381 msgid "Mark all seen" msgstr "Markeer alles als bekeken" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] alle" +#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s alle" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1234 msgid "Bold" msgstr "Vet" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1235 msgid "Italic" msgstr "Cursief" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1236 msgid "Underline" msgstr "Onderstrepen" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1237 msgid "Quote" msgstr "Citeren" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1238 msgid "Code" msgstr "Broncode" -#: ../../Zotlabs/Lib/ThreadItem.php:716 +#: ../../Zotlabs/Lib/ThreadItem.php:717 msgid "Image" msgstr "Afbeelding" -#: ../../Zotlabs/Lib/ThreadItem.php:717 +#: ../../Zotlabs/Lib/ThreadItem.php:718 msgid "Insert Link" msgstr "Link invoegen" -#: ../../Zotlabs/Lib/ThreadItem.php:718 +#: ../../Zotlabs/Lib/ThreadItem.php:719 msgid "Video" msgstr "Video" @@ -6753,461 +7068,507 @@ msgstr "Video" msgid "No username found in import file." msgstr "Geen gebruikersnaam in het importbestand gevonden." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 msgid "Unable to create a unique channel address. Import failed." msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." -#: ../../include/dba/dba_driver.php:171 +#: ../../include/dba/dba_driver.php:173 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Categorieën" +#: ../../include/network.php:704 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Tags" +#: ../../include/network.php:1935 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "Beheerder" -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Trefwoorden" +#: ../../include/network.php:1949 +msgid "No Subject" +msgstr "Geen onderwerp" -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "heb" +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "heeft" +#: ../../include/network.php:2205 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "wil" +#: ../../include/network.php:2206 +msgid "GNU-Social" +msgstr "GNU social" -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "wil" +#: ../../include/network.php:2207 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "vindt dit leuk" +#: ../../include/network.php:2209 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "vindt dit niet leuk" +#: ../../include/network.php:2210 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/network.php:2211 +msgid "Zot" +msgstr "Zot" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Start:" +#: ../../include/network.php:2212 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Einde:" +#: ../../include/network.php:2213 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." +#: ../../include/network.php:2214 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Niet aangegeven" +#: ../../include/oembed.php:340 +msgid "Embedded content" +msgstr "Ingesloten (embedded) inhoud" -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Actie vereist" +#: ../../include/oembed.php:349 +msgid "Embedding disabled" +msgstr "Insluiten (embedding) uitgeschakeld" -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Voltooid" +#: ../../include/permissions.php:29 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "In behandeling" +#: ../../include/permissions.php:33 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "Geannuleerd" +#: ../../include/permissions.php:37 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" -#: ../../include/import.php:29 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." +#: ../../include/permissions.php:40 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." +#: ../../include/permissions.php:40 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/permissions.php:42 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../include/permissions.php:42 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." +#: ../../include/permissions.php:43 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../include/permissions.php:44 +msgid "Can write to my file storage and photos" +msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" + +#: ../../include/permissions.php:45 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" + +#: ../../include/permissions.php:47 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" + +#: ../../include/permissions.php:49 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" + +#: ../../include/permissions.php:49 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." -#: ../../include/items.php:1142 +#: ../../include/items.php:899 ../../include/items.php:944 +msgid "(Unknown)" +msgstr "(Onbekend)" + +#: ../../include/items.php:1143 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." + +#: ../../include/items.php:1145 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." + +#: ../../include/items.php:1147 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." + +#: ../../include/items.php:1149 msgid "Visible to anybody authenticated." msgstr "Voor iedereen die geauthenticeerd is zichtbaar." -#: ../../include/items.php:1144 +#: ../../include/items.php:1151 #, php-format msgid "Visible to anybody on %s." msgstr "Voor iedereen op %s zichtbaar." -#: ../../include/items.php:1146 +#: ../../include/items.php:1153 msgid "Visible to all connections." msgstr "Voor alle connecties zichtbaar." -#: ../../include/items.php:1148 +#: ../../include/items.php:1155 msgid "Visible to approved connections." msgstr "Voor alle geaccepteerde connecties zichtbaar." -#: ../../include/items.php:1150 +#: ../../include/items.php:1157 msgid "Visible to specific connections." msgstr "Voor specifieke connecties zichtbaar." -#: ../../include/items.php:3909 +#: ../../include/items.php:3947 msgid "Privacy group is empty." msgstr "Privacygroep is leeg" -#: ../../include/items.php:3916 +#: ../../include/items.php:3954 #, php-format msgid "Privacy group: %s" msgstr "Privacygroep: %s" -#: ../../include/items.php:3928 +#: ../../include/items.php:3966 msgid "Connection not found." msgstr "Connectie niet gevonden." -#: ../../include/items.php:4277 +#: ../../include/items.php:4319 msgid "profile photo" msgstr "profielfoto" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." - -#: ../../include/text.php:428 +#: ../../include/text.php:404 msgid "prev" msgstr "vorige" -#: ../../include/text.php:430 +#: ../../include/text.php:406 msgid "first" msgstr "eerste" -#: ../../include/text.php:459 +#: ../../include/text.php:435 msgid "last" msgstr "laatste" -#: ../../include/text.php:462 +#: ../../include/text.php:438 msgid "next" msgstr "volgende" -#: ../../include/text.php:472 +#: ../../include/text.php:448 msgid "older" msgstr "ouder" -#: ../../include/text.php:474 +#: ../../include/text.php:450 msgid "newer" msgstr "nieuwer" -#: ../../include/text.php:863 +#: ../../include/text.php:843 msgid "No connections" msgstr "Geen connecties" -#: ../../include/text.php:888 +#: ../../include/text.php:868 #, php-format msgid "View all %s connections" msgstr "Toon alle %s connecties" -#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/text.php:1013 ../../include/text.php:1018 msgid "poke" msgstr "aanstoten" -#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/text.php:1013 ../../include/text.php:1018 #: ../../include/conversation.php:243 msgid "poked" msgstr "aangestoten" -#: ../../include/text.php:1039 +#: ../../include/text.php:1019 msgid "ping" msgstr "ping" -#: ../../include/text.php:1039 +#: ../../include/text.php:1019 msgid "pinged" msgstr "gepingd" -#: ../../include/text.php:1040 +#: ../../include/text.php:1020 msgid "prod" msgstr "por" -#: ../../include/text.php:1040 +#: ../../include/text.php:1020 msgid "prodded" msgstr "gepord" -#: ../../include/text.php:1041 +#: ../../include/text.php:1021 msgid "slap" msgstr "slaan" -#: ../../include/text.php:1041 +#: ../../include/text.php:1021 msgid "slapped" msgstr "sloeg" -#: ../../include/text.php:1042 +#: ../../include/text.php:1022 msgid "finger" msgstr "finger" -#: ../../include/text.php:1042 +#: ../../include/text.php:1022 msgid "fingered" msgstr "gefingerd" -#: ../../include/text.php:1043 +#: ../../include/text.php:1023 msgid "rebuff" msgstr "afpoeieren" -#: ../../include/text.php:1043 +#: ../../include/text.php:1023 msgid "rebuffed" msgstr "afgepoeierd" -#: ../../include/text.php:1055 +#: ../../include/text.php:1035 msgid "happy" msgstr "gelukkig" -#: ../../include/text.php:1056 +#: ../../include/text.php:1036 msgid "sad" msgstr "bedroefd" -#: ../../include/text.php:1057 +#: ../../include/text.php:1037 msgid "mellow" msgstr "mellow" -#: ../../include/text.php:1058 +#: ../../include/text.php:1038 msgid "tired" msgstr "moe" -#: ../../include/text.php:1059 +#: ../../include/text.php:1039 msgid "perky" msgstr "parmantig" -#: ../../include/text.php:1060 +#: ../../include/text.php:1040 msgid "angry" msgstr "boos" -#: ../../include/text.php:1061 +#: ../../include/text.php:1041 msgid "stupefied" msgstr "verbijsterd" -#: ../../include/text.php:1062 +#: ../../include/text.php:1042 msgid "puzzled" msgstr "verward" -#: ../../include/text.php:1063 +#: ../../include/text.php:1043 msgid "interested" msgstr "geïnteresseerd" -#: ../../include/text.php:1064 +#: ../../include/text.php:1044 msgid "bitter" msgstr "verbitterd" -#: ../../include/text.php:1065 +#: ../../include/text.php:1045 msgid "cheerful" msgstr "vrolijk" -#: ../../include/text.php:1066 +#: ../../include/text.php:1046 msgid "alive" msgstr "levendig" -#: ../../include/text.php:1067 +#: ../../include/text.php:1047 msgid "annoyed" msgstr "geërgerd" -#: ../../include/text.php:1068 +#: ../../include/text.php:1048 msgid "anxious" msgstr "bezorgd" -#: ../../include/text.php:1069 +#: ../../include/text.php:1049 msgid "cranky" msgstr "humeurig" -#: ../../include/text.php:1070 +#: ../../include/text.php:1050 msgid "disturbed" msgstr "verontrust" -#: ../../include/text.php:1071 +#: ../../include/text.php:1051 msgid "frustrated" msgstr "gefrustreerd " -#: ../../include/text.php:1072 +#: ../../include/text.php:1052 msgid "depressed" msgstr "gedeprimeerd" -#: ../../include/text.php:1073 +#: ../../include/text.php:1053 msgid "motivated" msgstr "gemotiveerd" -#: ../../include/text.php:1074 +#: ../../include/text.php:1054 msgid "relaxed" msgstr "ontspannen" -#: ../../include/text.php:1075 +#: ../../include/text.php:1055 msgid "surprised" msgstr "verrast" -#: ../../include/text.php:1257 ../../include/js_strings.php:70 +#: ../../include/text.php:1239 ../../include/js_strings.php:70 msgid "Monday" msgstr "maandag" -#: ../../include/text.php:1257 ../../include/js_strings.php:71 +#: ../../include/text.php:1239 ../../include/js_strings.php:71 msgid "Tuesday" msgstr "dinsdag" -#: ../../include/text.php:1257 ../../include/js_strings.php:72 +#: ../../include/text.php:1239 ../../include/js_strings.php:72 msgid "Wednesday" msgstr "woensdag" -#: ../../include/text.php:1257 ../../include/js_strings.php:73 +#: ../../include/text.php:1239 ../../include/js_strings.php:73 msgid "Thursday" msgstr "donderdag" -#: ../../include/text.php:1257 ../../include/js_strings.php:74 +#: ../../include/text.php:1239 ../../include/js_strings.php:74 msgid "Friday" msgstr "vrijdag" -#: ../../include/text.php:1257 ../../include/js_strings.php:75 +#: ../../include/text.php:1239 ../../include/js_strings.php:75 msgid "Saturday" msgstr "zaterdag" -#: ../../include/text.php:1257 ../../include/js_strings.php:69 +#: ../../include/text.php:1239 ../../include/js_strings.php:69 msgid "Sunday" msgstr "zondag" -#: ../../include/text.php:1261 ../../include/js_strings.php:45 +#: ../../include/text.php:1243 ../../include/js_strings.php:45 msgid "January" msgstr "januari" -#: ../../include/text.php:1261 ../../include/js_strings.php:46 +#: ../../include/text.php:1243 ../../include/js_strings.php:46 msgid "February" msgstr "februari" -#: ../../include/text.php:1261 ../../include/js_strings.php:47 +#: ../../include/text.php:1243 ../../include/js_strings.php:47 msgid "March" msgstr "maart" -#: ../../include/text.php:1261 ../../include/js_strings.php:48 +#: ../../include/text.php:1243 ../../include/js_strings.php:48 msgid "April" msgstr "april" -#: ../../include/text.php:1261 +#: ../../include/text.php:1243 msgid "May" msgstr "mei" -#: ../../include/text.php:1261 ../../include/js_strings.php:50 +#: ../../include/text.php:1243 ../../include/js_strings.php:50 msgid "June" msgstr "juni" -#: ../../include/text.php:1261 ../../include/js_strings.php:51 +#: ../../include/text.php:1243 ../../include/js_strings.php:51 msgid "July" msgstr "juli" -#: ../../include/text.php:1261 ../../include/js_strings.php:52 +#: ../../include/text.php:1243 ../../include/js_strings.php:52 msgid "August" msgstr "augustus" -#: ../../include/text.php:1261 ../../include/js_strings.php:53 +#: ../../include/text.php:1243 ../../include/js_strings.php:53 msgid "September" msgstr "september" -#: ../../include/text.php:1261 ../../include/js_strings.php:54 +#: ../../include/text.php:1243 ../../include/js_strings.php:54 msgid "October" msgstr "oktober" -#: ../../include/text.php:1261 ../../include/js_strings.php:55 +#: ../../include/text.php:1243 ../../include/js_strings.php:55 msgid "November" msgstr "november" -#: ../../include/text.php:1261 ../../include/js_strings.php:56 +#: ../../include/text.php:1243 ../../include/js_strings.php:56 msgid "December" msgstr "december" -#: ../../include/text.php:1338 ../../include/text.php:1342 +#: ../../include/text.php:1320 ../../include/text.php:1324 msgid "Unknown Attachment" msgstr "Onbekende bijlage" -#: ../../include/text.php:1344 +#: ../../include/text.php:1326 msgid "unknown" msgstr "onbekend" -#: ../../include/text.php:1380 +#: ../../include/text.php:1362 msgid "remove category" msgstr "categorie verwijderen" -#: ../../include/text.php:1457 +#: ../../include/text.php:1439 msgid "remove from file" msgstr "uit map verwijderen" -#: ../../include/text.php:1753 ../../include/text.php:1824 +#: ../../include/text.php:1738 ../../include/text.php:1809 msgid "default" msgstr "standaard" -#: ../../include/text.php:1761 +#: ../../include/text.php:1746 msgid "Page layout" msgstr "Pagina-lay-out" -#: ../../include/text.php:1761 +#: ../../include/text.php:1746 msgid "You can create your own with the layouts tool" msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" -#: ../../include/text.php:1803 +#: ../../include/text.php:1788 msgid "Page content type" msgstr "Opmaaktype pagina" -#: ../../include/text.php:1836 +#: ../../include/text.php:1821 msgid "Select an alternate language" msgstr "Kies een andere taal" -#: ../../include/text.php:1953 +#: ../../include/text.php:1958 msgid "activity" msgstr "activiteit" -#: ../../include/text.php:2262 +#: ../../include/text.php:2259 msgid "Design Tools" msgstr "Ontwerp-hulpmiddelen" -#: ../../include/text.php:2268 +#: ../../include/text.php:2265 msgid "Pages" msgstr "Pagina's" +#: ../../include/text.php:2287 +msgid "Import website..." +msgstr "Website importeren..." + +#: ../../include/text.php:2288 +msgid "Select folder to import" +msgstr "Kies een map om te importeren" + +#: ../../include/text.php:2289 +msgid "Import from a zipped folder:" +msgstr "Vanuit een zipbestand importeren:" + +#: ../../include/text.php:2290 +msgid "Import from cloud files:" +msgstr "Vanuit de cloud importeren:" + +#: ../../include/text.php:2291 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/maplocatie" + +#: ../../include/text.php:2292 +msgid "Enter path to website files" +msgstr "Voer de locatie in van de websitebestanden" + +#: ../../include/text.php:2293 +msgid "Select folder" +msgstr "Kies een map" + +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "Categorieën" + #: ../../include/widgets.php:103 msgid "System" msgstr "Systeem" @@ -7249,7 +7610,7 @@ msgstr "Aantekeningen" msgid "Remove term" msgstr "Verwijder zoekterm" -#: ../../include/widgets.php:281 ../../include/features.php:84 +#: ../../include/widgets.php:281 ../../include/features.php:85 msgid "Saved Searches" msgstr "Opgeslagen zoekopdrachten" @@ -7257,8 +7618,8 @@ msgstr "Opgeslagen zoekopdrachten" msgid "add" msgstr "toevoegen" -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 +#: ../../include/widgets.php:310 ../../include/features.php:99 +#: ../../include/contact_widgets.php:53 msgid "Saved Folders" msgstr "Bewaarde mappen" @@ -7307,504 +7668,736 @@ msgstr "Kanaal exporteren" msgid "Connected apps" msgstr "Verbonden applicaties" -#: ../../include/widgets.php:622 +#: ../../include/widgets.php:631 msgid "Premium Channel Settings" msgstr "Instellingen premiumkanaal" -#: ../../include/widgets.php:651 +#: ../../include/widgets.php:660 msgid "Private Mail Menu" msgstr "Privéberichten" -#: ../../include/widgets.php:653 +#: ../../include/widgets.php:662 msgid "Combined View" msgstr "Gecombineerd postvak" -#: ../../include/widgets.php:658 ../../include/nav.php:196 +#: ../../include/widgets.php:667 ../../include/nav.php:200 msgid "Inbox" msgstr "Postvak IN" -#: ../../include/widgets.php:663 ../../include/nav.php:197 +#: ../../include/widgets.php:672 ../../include/nav.php:201 msgid "Outbox" msgstr "Postvak UIT" -#: ../../include/widgets.php:668 ../../include/nav.php:198 +#: ../../include/widgets.php:677 ../../include/nav.php:202 msgid "New Message" msgstr "Nieuw bericht" -#: ../../include/widgets.php:685 ../../include/widgets.php:697 +#: ../../include/widgets.php:694 ../../include/widgets.php:706 msgid "Conversations" msgstr "Conversaties" -#: ../../include/widgets.php:689 +#: ../../include/widgets.php:698 msgid "Received Messages" msgstr "Ontvangen berichten" -#: ../../include/widgets.php:693 +#: ../../include/widgets.php:702 msgid "Sent Messages" msgstr "Verzonden berichten" -#: ../../include/widgets.php:707 +#: ../../include/widgets.php:716 msgid "No messages." msgstr "Geen berichten" -#: ../../include/widgets.php:725 +#: ../../include/widgets.php:734 msgid "Delete conversation" msgstr "Verwijder conversatie" -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Agenda-menu" - -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Dag tonen" - -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Week tonen" - -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Maand tonen" - -#: ../../include/widgets.php:766 +#: ../../include/widgets.php:760 msgid "Events Tools" msgstr "Agenda-hulpmiddelen" -#: ../../include/widgets.php:767 +#: ../../include/widgets.php:761 msgid "Export Calendar" msgstr "Exporteren" -#: ../../include/widgets.php:768 +#: ../../include/widgets.php:762 msgid "Import Calendar" msgstr "Importeren" -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 +#: ../../include/widgets.php:850 ../../include/conversation.php:1695 +#: ../../include/conversation.php:1698 msgid "Chatrooms" msgstr "Chatkanalen" -#: ../../include/widgets.php:846 +#: ../../include/widgets.php:854 msgid "Overview" msgstr "Overzicht" -#: ../../include/widgets.php:853 +#: ../../include/widgets.php:861 msgid "Chat Members" msgstr "Chatleden" -#: ../../include/widgets.php:876 +#: ../../include/widgets.php:883 +msgid "Wiki List" +msgstr "Wiki's" + +#: ../../include/widgets.php:921 +msgid "Wiki Pages" +msgstr "Wikipagina's" + +#: ../../include/widgets.php:956 msgid "Bookmarked Chatrooms" msgstr "Bladwijzers van chatkanalen" -#: ../../include/widgets.php:899 +#: ../../include/widgets.php:979 msgid "Suggested Chatrooms" msgstr "Voorgestelde chatkanalen" -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 msgid "photo/image" msgstr "foto/afbeelding" -#: ../../include/widgets.php:1099 +#: ../../include/widgets.php:1180 msgid "Click to show more" msgstr "Klik voor meer" -#: ../../include/widgets.php:1250 +#: ../../include/widgets.php:1331 msgid "Rating Tools" msgstr "Beoordelingen" -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 msgid "Rate Me" msgstr "Beoordeel mij" -#: ../../include/widgets.php:1259 +#: ../../include/widgets.php:1340 msgid "View Ratings" msgstr "Bekijk beoordelingen" -#: ../../include/widgets.php:1316 +#: ../../include/widgets.php:1424 msgid "Forums" msgstr "Forums" -#: ../../include/widgets.php:1345 +#: ../../include/widgets.php:1453 msgid "Tasks" msgstr "Taken" -#: ../../include/widgets.php:1354 +#: ../../include/widgets.php:1462 msgid "Documentation" msgstr "Documentatie" -#: ../../include/widgets.php:1356 +#: ../../include/widgets.php:1464 msgid "Project/Site Information" msgstr "Project- en hub-informatie" -#: ../../include/widgets.php:1357 +#: ../../include/widgets.php:1465 msgid "For Members" msgstr "Voor leden" -#: ../../include/widgets.php:1358 +#: ../../include/widgets.php:1466 msgid "For Administrators" msgstr "Voor beheerders" -#: ../../include/widgets.php:1359 +#: ../../include/widgets.php:1467 msgid "For Developers" msgstr "Voor ontwikkelaars" -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 msgid "Member registrations waiting for confirmation" msgstr "Accounts die op goedkeuring wachten" -#: ../../include/widgets.php:1389 +#: ../../include/widgets.php:1497 msgid "Inspect queue" msgstr "Inspecteer berichtenwachtrij" -#: ../../include/widgets.php:1391 +#: ../../include/widgets.php:1499 msgid "DB updates" msgstr "Database-updates" -#: ../../include/widgets.php:1416 ../../include/nav.php:216 +#: ../../include/widgets.php:1524 ../../include/nav.php:220 msgid "Admin" msgstr "Beheer" -#: ../../include/widgets.php:1417 +#: ../../include/widgets.php:1525 msgid "Plugin Features" msgstr "Plugin-opties" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nieuw venster" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Open de geselecteerde locatie in een ander venster of tab" -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "Wie kan dit zien?" -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Handmatige selectie" -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Tonen" -#: ../../include/bookmarks.php:35 +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "Niet tonen" + +#: ../../include/acl_selectors.php:207 #, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien." -#: ../../include/api.php:1336 +#: ../../include/api.php:1330 msgid "Public Timeline" msgstr "Openbare tijdlijn" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installeer %s-element: " +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Ontbrekende naam" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Naam te lang" -#: ../../include/bbcode.php:254 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Geen account-identificator" -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" -#: ../../include/bbcode.php:339 -msgid "spoiler" -msgstr "spoiler" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 schreef:" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opties kanalengids" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Standaardprofiel" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Veilig zoeken" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Alleen deze hub" +#: ../../include/channel.php:963 ../../include/nav.php:92 +msgid "Edit Profile" +msgstr "Profiel bewerken" -#: ../../include/security.php:383 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Uitloggen" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "Geslacht:" -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Beëindig deze sessie" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "Status:" -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Home" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "Homepagina:" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Jouw kanaal" +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "Nu online" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Jouw profielpagina" +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "F j Y" -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Profiel bewerken" +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "F j" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "Geboortedatum:" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Jouw foto's" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Jouw bestanden" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "Tags:" -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Bladwijzers" +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "Religie:" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Jouw webpagina's" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Inloggen" +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "Houdt van:" -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "Houdt niet van:" -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "Mijn andere kanalen" -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Homepage" +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "Muzikale interesses:" -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Maak een account aan" +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Hulp en documentatie" +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "Televisie:" -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Apps" +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Kanalengids" +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "Werk/beroep:" -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "Jouw grid" +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "School/opleiding:" -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Markeer alle gridnotificaties als bekeken" +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "Vind dit ding leuk" -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Jouw kanaal" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Verjaardag of geboortedatum" -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Leeftijd:" -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Notificaties" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Notificaties" +#: ../../include/datetime.php:272 ../../boot.php:2577 +msgid "never" +msgstr "nooit" -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Privéberichten" +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "jaar" +msgstr[1] "jaren" -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "maand" +msgstr[1] "maanden" -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Agenda" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "week" +msgstr[1] "weken" -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dagen" -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "uur" +msgstr[1] "uren" -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuut" +msgstr[1] "minuten" -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "seconden" -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Aan het laden..." +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@kanaal, #tag, inhoud, ?hulp" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Regelmatig" -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Wachten aub..." +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Elk uur" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nieuw venster" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Twee keer per dag" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Open de geselecteerde locatie in een ander venster of tab" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Dagelijks" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Wekelijks" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Maandelijks" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Kanalen vinden" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" +msgstr "Man" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" +msgstr "Vrouw" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/volgen" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Momenteel man" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeeld: Robert Morgenstein, vissen" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Momenteel vrouw" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Willekeurig profiel" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Voornamelijk man" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Voornamelijk vrouw" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgender" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Interseksueel" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "meer connecties weergeven" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transseksueel" + +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" + +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Genderneutraal" + +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "Niet gespecificeerd" + +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Nog niet beslist" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Mannen" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Vrouwen" + +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Homoseksueel" + +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbisch" + +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Geen voorkeur" + +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Biseksueel" + +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autoseksueel" + +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Seksuele onthouding" + +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Maagd" + +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Afwijkend" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetisj" + +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Veel" + +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Aseksueel" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Alleen" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Eenzaam" + +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Beschikbaar" + +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Niet beschikbaar" + +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Heeft een oogje op iemand" + +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Smoorverliefd" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Aan het daten" + +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Ontrouw" + +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Seksverslaafd" + +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" + +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Ongebonden/vluchtig" + +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Verloofd" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Getrouwd" + +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" + +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partners" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Samenwonend" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Common-law-huwelijk" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Gelukkig" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Niet op zoek" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Verraden" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Uit elkaar" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Onstabiel" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Gescheiden" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Onzeker" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Het is ingewikkeld" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Maakt mij niks uit" + +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Vraag het me" + +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "een nieuwe foto" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s plaatste %2$s op %3$s" + +#: ../../include/photos.php:506 ../../include/conversation.php:1668 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + +#: ../../include/security.php:109 +msgid "guest:" +msgstr "gast:" + +#: ../../include/security.php:527 +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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " #: ../../include/conversation.php:204 #, php-format @@ -7816,975 +8409,861 @@ msgstr "%1$s is nu met %2$s verbonden" msgid "%1$s poked %2$s" msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/conversation.php:691 +#: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:713 msgid "Categories:" msgstr "Categorieën:" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:714 msgid "Filed under:" msgstr "Bewaard onder:" -#: ../../include/conversation.php:738 +#: ../../include/conversation.php:741 msgid "View in context" msgstr "In context bekijken" -#: ../../include/conversation.php:847 +#: ../../include/conversation.php:851 msgid "remove" msgstr "verwijderen" -#: ../../include/conversation.php:852 +#: ../../include/conversation.php:855 ../../include/nav.php:251 +msgid "Loading..." +msgstr "Aan het laden..." + +#: ../../include/conversation.php:856 msgid "Delete Selected Items" msgstr "Verwijder de geselecteerde items" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:949 msgid "View Source" msgstr "Bron weergeven" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:950 msgid "Follow Thread" msgstr "Conversatie volgen" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:951 msgid "Unfollow Thread" msgstr "Conversatie niet meer volgen" -#: ../../include/conversation.php:955 +#: ../../include/conversation.php:956 msgid "Activity/Posts" msgstr "Activiteit/berichten connectie" -#: ../../include/conversation.php:957 +#: ../../include/conversation.php:958 msgid "Edit Connection" msgstr "Connectie bewerken" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:959 msgid "Message" msgstr "Bericht" -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1076 #, php-format msgid "%s likes this." msgstr "%s vindt dit leuk." -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1076 #, php-format msgid "%s doesn't like this." msgstr "%s vindt dit niet leuk." -#: ../../include/conversation.php:1079 +#: ../../include/conversation.php:1080 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d persoon vindt dit leuk." msgstr[1] "%2$d personen vinden dit leuk." -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1082 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d persoon vindt dit niet leuk." msgstr[1] "%2$d personen vinden dit niet leuk." -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1088 msgid "and" msgstr "en" -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1091 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", en %d ander persoon" msgstr[1] ", en %d andere personen" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1092 #, php-format msgid "%s like this." msgstr "%s vinden dit leuk." -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1092 #, php-format msgid "%s don't like this." msgstr "%s vinden dit niet leuk." -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1135 msgid "Set your location" msgstr "Locatie instellen" -#: ../../include/conversation.php:1131 +#: ../../include/conversation.php:1136 msgid "Clear browser location" msgstr "Locatie van webbrowser wissen" -#: ../../include/conversation.php:1177 +#: ../../include/conversation.php:1184 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:1178 +#: ../../include/conversation.php:1185 msgid "Where are you right now?" msgstr "Waar bevind je je op dit moment?" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1194 +msgid "Comments enabled" +msgstr "Reacties ingeschakeld" + +#: ../../include/conversation.php:1195 +msgid "Comments disabled" +msgstr "Reacties uitgeschakeld" + +#: ../../include/conversation.php:1229 msgid "Page link name" msgstr "Linknaam pagina" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1232 msgid "Post as" msgstr "Bericht plaatsen als" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1246 msgid "Toggle voting" msgstr "Peiling in- of uitschakelen" -#: ../../include/conversation.php:1231 +#: ../../include/conversation.php:1249 +msgid "Disable comments" +msgstr "Reacties uitschakelen" + +#: ../../include/conversation.php:1250 +msgid "Toggle comments" +msgstr "Reacties in- of uitschakelen" + +#: ../../include/conversation.php:1258 msgid "Categories (optional, comma-separated list)" msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../include/conversation.php:1254 +#: ../../include/conversation.php:1281 +msgid "Other networks and post services" +msgstr "Andere netwerken en diensten" + +#: ../../include/conversation.php:1287 msgid "Set publish date" msgstr "Publicatiedatum instellen" -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1536 msgid "Discover" msgstr "Ontdekken" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1539 msgid "Imported public streams" msgstr "Openbare streams importeren" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1544 msgid "Commented Order" msgstr "Nieuwe reacties bovenaan" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1547 msgid "Sort by Comment Date" msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1551 msgid "Posted Order" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1554 msgid "Sort by Post Date" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1562 msgid "Posts that mention or involve you" msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1571 msgid "Activity Stream - by date" msgstr "Activiteitenstroom - volgens datum" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1577 msgid "Starred" msgstr "Met ster" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1580 msgid "Favourite Posts" msgstr "Favoriete berichten" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1587 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1590 msgid "Posts flagged as SPAM" msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/conversation.php:1614 +#: ../../include/conversation.php:1647 msgid "Status Messages and Posts" msgstr "Berichten in dit kanaal" -#: ../../include/conversation.php:1623 +#: ../../include/conversation.php:1656 msgid "About" msgstr "Over" -#: ../../include/conversation.php:1626 +#: ../../include/conversation.php:1659 msgid "Profile Details" msgstr "Profiel" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../include/conversation.php:1642 +#: ../../include/conversation.php:1675 msgid "Files and Storage" msgstr "Bestanden en opslagruimte" -#: ../../include/conversation.php:1678 +#: ../../include/conversation.php:1708 ../../include/nav.php:104 +msgid "Bookmarks" +msgstr "Bladwijzers" + +#: ../../include/conversation.php:1711 msgid "Saved Bookmarks" msgstr "Opgeslagen bladwijzers" -#: ../../include/conversation.php:1688 +#: ../../include/conversation.php:1721 msgid "Manage Webpages" msgstr "Webpagina's beheren" -#: ../../include/conversation.php:1747 +#: ../../include/conversation.php:1786 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "aanwezig" msgstr[1] "aanwezig" -#: ../../include/conversation.php:1750 +#: ../../include/conversation.php:1789 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "niet aanwezig" msgstr[1] "niet aanwezig" -#: ../../include/conversation.php:1753 +#: ../../include/conversation.php:1792 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "nog niet beslist" msgstr[1] "nog niet beslist" -#: ../../include/conversation.php:1756 +#: ../../include/conversation.php:1795 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "eens" msgstr[1] "eens" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1798 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "oneens" msgstr[1] "oneens" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1801 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "onthouding" msgstr[1] "onthoudingen" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Regelmatig" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Elk uur" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Twee keer per dag" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Voeg nieuwe connecties aan deze privacygroep toe" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Dagelijks" +#: ../../include/group.php:289 +msgid "edit" +msgstr "bewerken" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Wekelijks" +#: ../../include/group.php:311 ../../include/features.php:84 +msgid "Privacy Groups" +msgstr "Privacygroepen" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Maandelijks" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Privacygroep bewerken" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Momenteel man" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Privacygroep toevoegen" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Momenteel vrouw" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Kanalen die zich in geen enkele privacygroep bevinden" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Voornamelijk man" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nieuwe pagina" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Voornamelijk vrouw" +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titel" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgender" +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Interseksueel" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transseksueel" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Start:" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Einde:" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Genderneutraal" +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Niet gespecificeerd" +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Niet aangegeven" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Anders" +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Actie vereist" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Nog niet beslist" +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Voltooid" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Mannen" +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "In behandeling" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Vrouwen" +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "Geannuleerd" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homoseksueel" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Bijlagen:" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificatie $Projectname-gebeurtenis:" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Geen voorkeur" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Biseksueel" +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" +msgstr "%s minder reacties weergeven" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autoseksueel" +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" +msgstr "%s uitklappen" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Seksuele onthouding" +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" +msgstr "%s inklappen" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Maagd" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Wachtwoord te kort" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Afwijkend" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetisj" +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "iedereen" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Veel" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Geheim wachtwoord" -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Aseksueel" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Wachtwoordhint" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Alleen" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Eenzaam" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alles sluiten" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Beschikbaar" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niets nieuw hier" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Niet beschikbaar" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Beoordeel dit kanaal (dit is openbaar)" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Heeft een oogje op iemand" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Omschrijving (optioneel)" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Smoorverliefd" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Vul een URL in:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Aan het daten" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Ontrouw" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Seksverslaafd" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "geleden" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Ongebonden/vluchtig" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "vanaf nu" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Verloofd" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "minder dan een minuut" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Getrouwd" +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "ongeveer een minuut" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d minuten" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partners" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "ongeveer een uur" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Samenwonend" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "ongeveer %d uren" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Common-law-huwelijk" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "een dag" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Gelukkig" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d dagen" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Niet op zoek" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "ongeveer een maand" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Swinger" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d maanden" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Verraden" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "ongeveer een jaar" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Uit elkaar" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d jaren" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Onstabiel" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Gescheiden" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "mei" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "jan" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Onzeker" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "feb" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Het is ingewikkeld" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "mrt" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Maakt mij niks uit" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "apr" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Vraag het me" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "mei" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "jun" -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "Alleen ik" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "jul" -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Openbaar" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "aug" -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "Iedereen in het $Projectname-netwerk" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "sep" -#: ../../include/PermissionDescription.php:118 -#, php-format -msgid "Any account on %s" -msgstr "Iedereen op %s" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "okt" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "Al mijn geaccepteerde connecties" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "nov" -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "dec" -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "zo" -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "ma" -#: ../../include/PermissionDescription.php:161 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "di" -#: ../../include/PermissionDescription.php:162 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "wo" -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" -msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "do" -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "vr" -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "za" -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "vandaag" -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze hub niet toegestaan" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "maand" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze hub geregistreerd." +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "week" -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "dag" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "hele dag" -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Beheerder" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account goedgekeurd" - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." - -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" -#: ../../include/attach.php:247 ../../include/attach.php:333 +#: ../../include/attach.php:248 ../../include/attach.php:334 msgid "Item was not found." msgstr "Item niet gevonden" -#: ../../include/attach.php:497 +#: ../../include/attach.php:500 msgid "No source file." msgstr "Geen bronbestand." -#: ../../include/attach.php:519 +#: ../../include/attach.php:522 msgid "Cannot locate file to replace" msgstr "Kan het te vervangen bestand niet vinden" -#: ../../include/attach.php:537 +#: ../../include/attach.php:540 msgid "Cannot locate file to revise/update" msgstr "Kan het bestand wat aangepast moet worden niet vinden" -#: ../../include/attach.php:672 +#: ../../include/attach.php:675 #, php-format msgid "File exceeds size limit of %d" msgstr "Bestand is groter dan de toegelaten %d" -#: ../../include/attach.php:686 +#: ../../include/attach.php:689 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." -#: ../../include/attach.php:842 +#: ../../include/attach.php:847 msgid "File upload failed. Possible system limit or action terminated." msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." -#: ../../include/attach.php:855 +#: ../../include/attach.php:860 msgid "Stored file could not be verified. Upload failed." msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." -#: ../../include/attach.php:909 ../../include/attach.php:925 +#: ../../include/attach.php:916 ../../include/attach.php:932 msgid "Path not available." -msgstr "Pad niet beschikbaar." +msgstr "Locatie niet beschikbaar." -#: ../../include/attach.php:971 ../../include/attach.php:1123 +#: ../../include/attach.php:978 ../../include/attach.php:1130 msgid "Empty pathname" -msgstr "Padnaam leeg" +msgstr "Ontbrekende locatienaam" -#: ../../include/attach.php:997 +#: ../../include/attach.php:1004 msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" +msgstr "dubbele bestandsnaam of locatie" -#: ../../include/attach.php:1019 +#: ../../include/attach.php:1026 msgid "Path not found." -msgstr "Pad niet gevonden" +msgstr "Locatie niet gevonden" -#: ../../include/attach.php:1077 +#: ../../include/attach.php:1084 msgid "mkdir failed." msgstr "directory aanmaken (mkdir) mislukt." -#: ../../include/attach.php:1081 +#: ../../include/attach.php:1088 msgid "database storage failed." msgstr "opslag in database mislukt." -#: ../../include/attach.php:1129 +#: ../../include/attach.php:1136 msgid "Empty path" -msgstr "Ontbrekend bestandspad" - -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" - -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Ontbrekende naam" - -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Naam te lang" - -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Geen account-identificator" - -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" - -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." - -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" - -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Standaardprofiel" - -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." - -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" +msgstr "Ontbrekende locatie" -#: ../../include/channel.php:958 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Geslacht:" - -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Homepagina:" - -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "Nu online" +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Uitgelogd." -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "F j Y" +#: ../../include/auth.php:286 +msgid "Login failed." +msgstr "Inloggen mislukt." -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "F j" +#: ../../include/activities.php:41 +msgid " and " +msgstr " en " -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Geboortedatum:" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "openbaar profiel" -#: ../../include/channel.php:1192 +#: ../../include/activities.php:58 #, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" - -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" - -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Tags:" - -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" - -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religie:" - -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" - -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Houdt van:" - -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" - -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Mijn andere kanalen" - -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Muzikale interesses:" - -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "Televisie:" +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Werk/beroep:" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "School/opleiding:" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "Vind dit ding leuk" +#: ../../include/zot.php:3706 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" -#: ../../include/features.php:48 +#: ../../include/features.php:50 msgid "General Features" msgstr "Algemene functies" -#: ../../include/features.php:50 +#: ../../include/features.php:52 msgid "Content Expiration" msgstr "Inhoud laten verlopen" -#: ../../include/features.php:50 +#: ../../include/features.php:52 msgid "Remove posts/comments and/or private messages at a future time" msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" -#: ../../include/features.php:51 +#: ../../include/features.php:53 msgid "Multiple Profiles" msgstr "Meerdere profielen" -#: ../../include/features.php:51 +#: ../../include/features.php:53 msgid "Ability to create multiple profiles" msgstr "Mogelijkheid om meerdere profielen aan te maken" -#: ../../include/features.php:52 +#: ../../include/features.php:54 msgid "Advanced Profiles" msgstr "Geavanceerde profielen" -#: ../../include/features.php:52 +#: ../../include/features.php:54 msgid "Additional profile sections and selections" msgstr "Extra onderdelen en keuzes voor je profiel" -#: ../../include/features.php:53 +#: ../../include/features.php:55 msgid "Profile Import/Export" msgstr "Profiel importen/exporteren" -#: ../../include/features.php:53 +#: ../../include/features.php:55 msgid "Save and load profile details across sites/channels" msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." -#: ../../include/features.php:54 +#: ../../include/features.php:56 msgid "Web Pages" msgstr "Webpagina's" -#: ../../include/features.php:54 +#: ../../include/features.php:56 msgid "Provide managed web pages on your channel" msgstr "Sta beheerde webpagina's op jouw kanaal toe" -#: ../../include/features.php:55 -msgid "Hide Rating" -msgstr "Beoordelingen verbergen" - -#: ../../include/features.php:55 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. " +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" +msgstr "Voeg een wiki aan jouw kanaal toe" -#: ../../include/features.php:56 +#: ../../include/features.php:59 msgid "Private Notes" msgstr "Privé-aantekeningen" -#: ../../include/features.php:56 +#: ../../include/features.php:59 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)" -#: ../../include/features.php:57 +#: ../../include/features.php:60 msgid "Navigation Channel Select" msgstr "Kanaal kiezen in navigatiemenu" -#: ../../include/features.php:57 +#: ../../include/features.php:60 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" -#: ../../include/features.php:58 +#: ../../include/features.php:61 msgid "Photo Location" msgstr "Fotolocatie" -#: ../../include/features.php:58 +#: ../../include/features.php:61 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." -#: ../../include/features.php:59 +#: ../../include/features.php:62 msgid "Access Controlled Chatrooms" msgstr "Chatkanalen met toegangscontrole " -#: ../../include/features.php:59 +#: ../../include/features.php:62 msgid "Provide chatrooms and chat services with access control." msgstr "Chatkanalen en chatdiensten met toegangscontrole aanbieden." -#: ../../include/features.php:60 +#: ../../include/features.php:63 msgid "Smart Birthdays" msgstr "Slimme verjaardagen" -#: ../../include/features.php:60 +#: ../../include/features.php:63 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn." -#: ../../include/features.php:61 +#: ../../include/features.php:64 msgid "Expert Mode" msgstr "Expertmodus" -#: ../../include/features.php:61 +#: ../../include/features.php:64 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Schakel de expertmodus in voor geavanceerde instellingen" -#: ../../include/features.php:62 -msgid "Premium Channel" -msgstr "Premiumkanaal" - -#: ../../include/features.php:62 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" - -#: ../../include/features.php:67 +#: ../../include/features.php:69 msgid "Post Composition Features" msgstr "Functies voor het opstellen van berichten" @@ -8813,1015 +9292,747 @@ msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde g #: ../../include/features.php:73 msgid "Enable Voting Tools" -msgstr "Peilingen inschakelen" - -#: ../../include/features.php:73 -msgid "Provide a class of post which others can vote on" -msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." - -#: ../../include/features.php:74 -msgid "Delayed Posting" -msgstr "Berichten uitstellen" - -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" -msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." - -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Dubbele berichten/reacties tegenhouden" - -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " - -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" -msgstr "Netwerk- en streamfilter" - -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "Zoek op datum" - -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten op datum te filteren " - -#: ../../include/features.php:83 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Privacygroepen" - -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "Beheer en selectie van privacygroepen inschakelen" - -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" - -#: ../../include/features.php:86 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" -msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" - -#: ../../include/features.php:87 -msgid "Affinity Tool" -msgstr "Verwantschapsfilter" - -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" - -#: ../../include/features.php:88 -msgid "Connection Filtering" -msgstr "Berichtenfilters" - -#: ../../include/features.php:88 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" - -#: ../../include/features.php:89 -msgid "Show channel suggestions" -msgstr "Voor jou mogelijk interessante kanalen voorstellen" - -#: ../../include/features.php:94 -msgid "Post/Comment Tools" -msgstr "Bericht- en reactiehulpmiddelen" - -#: ../../include/features.php:95 -msgid "Community Tagging" -msgstr "Taggen door anderen" - -#: ../../include/features.php:95 -msgid "Ability to tag existing posts" -msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" - -#: ../../include/features.php:96 -msgid "Post Categories" -msgstr "Categorieën berichten" - -#: ../../include/features.php:96 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" - -#: ../../include/features.php:97 -msgid "Emoji Reactions" -msgstr "Emoji-reacties" - -#: ../../include/features.php:97 -msgid "Add emoji reaction ability to posts" -msgstr "Emoji-reacties in berichten toestaan" - -#: ../../include/features.php:98 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen op te slaan" - -#: ../../include/features.php:99 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" - -#: ../../include/features.php:99 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" - -#: ../../include/features.php:100 -msgid "Star Posts" -msgstr "Geef berichten een ster" - -#: ../../include/features.php:100 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mogelijkheid om speciale berichten met een ster te markeren" - -#: ../../include/features.php:101 -msgid "Tag Cloud" -msgstr "Tagwolk" - -#: ../../include/features.php:101 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" - -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Ingesloten (embedded) inhoud" - -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Insluiten (embedding) uitgeschakeld" - -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" -msgstr "Wie kan dit zien?" - -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" -msgstr "Handmatige selectie" - -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." - -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Tonen" - -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "Niet tonen" - -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Andere netwerken en diensten" - -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These" -" permissions set who is allowed to view the post." -msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien." - -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Verjaardag of geboortedatum" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "jaar" -msgstr[1] "jaren" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "maand" -msgstr[1] "maanden" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "week" -msgstr[1] "weken" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dagen" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "uur" -msgstr[1] "uren" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuut" -msgstr[1] "minuten" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "seconden" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" - -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." +msgstr "Peilingen inschakelen" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Voeg nieuwe connecties aan deze privacygroep toe" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." -#: ../../include/group.php:289 -msgid "edit" -msgstr "bewerken" +#: ../../include/features.php:74 +msgid "Disable Comments" +msgstr "Reacties uitschakelen" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Privacygroep bewerken" +#: ../../include/features.php:74 +msgid "Provide the option to disable comments for a post" +msgstr "Maak het mogelijk dat reacties op een bericht kunnen worden uitgeschakeld" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Privacygroep toevoegen" +#: ../../include/features.php:75 +msgid "Delayed Posting" +msgstr "Berichten uitstellen" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Kanalen die zich in geen enkele privacygroep bevinden" +#: ../../include/features.php:75 +msgid "Allow posts to be published at a later date" +msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" +#: ../../include/features.php:76 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Dubbele berichten/reacties tegenhouden" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] minder reacties weergeven" +#: ../../include/features.php:76 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] uitklappen" +#: ../../include/features.php:82 +msgid "Network and Stream Filtering" +msgstr "Netwerk- en streamfilter" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] inklappen" +#: ../../include/features.php:83 +msgid "Search by Date" +msgstr "Zoek op datum" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Wachtwoord te kort" +#: ../../include/features.php:83 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen" +#: ../../include/features.php:84 +msgid "Enable management and selection of privacy groups" +msgstr "Beheer en selectie van privacygroepen inschakelen" -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "iedereen" +#: ../../include/features.php:85 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Geheim wachtwoord" +#: ../../include/features.php:86 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Wachtwoordhint" +#: ../../include/features.php:86 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." +#: ../../include/features.php:87 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alles sluiten" +#: ../../include/features.php:87 +msgid "Enable tab to display all new Network activity" +msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niets nieuw hier" +#: ../../include/features.php:88 +msgid "Affinity Tool" +msgstr "Verwantschapsfilter" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Beoordeel dit kanaal (dit is openbaar)" +#: ../../include/features.php:88 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Omschrijving (optioneel)" +#: ../../include/features.php:89 +msgid "Connection Filtering" +msgstr "Berichtenfilters" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Vul een URL in:" +#: ../../include/features.php:89 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" +#: ../../include/features.php:90 +msgid "Show channel suggestions" +msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/features.php:95 +msgid "Post/Comment Tools" +msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/features.php:96 +msgid "Community Tagging" +msgstr "Taggen door anderen" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "geleden" +#: ../../include/features.php:96 +msgid "Ability to tag existing posts" +msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "vanaf nu" +#: ../../include/features.php:97 +msgid "Post Categories" +msgstr "Categorieën berichten" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "minder dan een minuut" +#: ../../include/features.php:97 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "ongeveer een minuut" +#: ../../include/features.php:98 +msgid "Emoji Reactions" +msgstr "Emoji-reacties" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minuten" +#: ../../include/features.php:98 +msgid "Add emoji reaction ability to posts" +msgstr "Emoji-reacties in berichten toestaan" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "ongeveer een uur" +#: ../../include/features.php:99 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "ongeveer %d uren" +#: ../../include/features.php:100 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "een dag" +#: ../../include/features.php:100 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d dagen" +#: ../../include/features.php:101 +msgid "Star Posts" +msgstr "Geef berichten een ster" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "ongeveer een maand" +#: ../../include/features.php:101 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d maanden" +#: ../../include/features.php:102 +msgid "Tag Cloud" +msgstr "Tagwolk" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "ongeveer een jaar" +#: ../../include/features.php:102 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d jaren" +#: ../../include/features.php:111 +msgid "Premium Channel" +msgstr "Premiumkanaal" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/features.php:112 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Tags" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mei" +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Trefwoorden" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "jan" +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "heb" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "feb" +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "heeft" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "mrt" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "wil" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "apr" +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "wil" + +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "vindt dit leuk" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "mei" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "vindt dit niet leuk" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "jun" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "jul" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze hub niet toegestaan" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "aug" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze hub geregistreerd." -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "sep" +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "okt" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "nov" +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "dec" +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "zo" +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "ma" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "di" +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "wo" +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "do" +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Account goedgekeurd" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "vr" +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "za" +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "vandaag" +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "maand" +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "week" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Afbeelding/foto" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "dag" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "hele dag" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installeer %s-element: " -#: ../../include/network.php:657 -msgid "view full size" -msgstr "volledige grootte tonen" +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Geen onderwerp" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schreef het volgende %2$s %3$s" -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "GNU social" +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 schreef:" -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Kanalen vinden" -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Willekeurig profiel" -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" -#: ../../include/photos.php:110 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeenschappelijke connectie" +msgstr[1] "%d gemeenschappelijke connecties" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "meer connecties weergeven" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "een nieuwe foto" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opties kanalengids" -#: ../../include/photos.php:299 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s plaatste %2$s op %3$s" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Veilig zoeken" -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" -#: ../../include/zot.php:699 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Alleen deze hub" -#: ../../include/zot.php:715 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." -#: ../../include/zot.php:2363 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../include/zot.php:3712 -msgid "invalid target signature" -msgstr "ongeldig doelkenmerk" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" +#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1737 +msgid "Logout" +msgstr "Uitloggen" -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" +#: ../../include/nav.php:84 ../../include/nav.php:117 +msgid "End this session" +msgstr "Beëindig deze sessie" -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kan mijn foto's en andere bestanden bekijken" +#: ../../include/nav.php:87 ../../include/nav.php:148 +msgid "Home" +msgstr "Home" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" +#: ../../include/nav.php:87 +msgid "Your posts and conversations" +msgstr "Jouw kanaal" -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" +#: ../../include/nav.php:88 +msgid "Your profile page" +msgstr "Jouw profielpagina" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" +#: ../../include/nav.php:90 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" +#: ../../include/nav.php:92 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" +#: ../../include/nav.php:94 +msgid "Your photos" +msgstr "Jouw foto's" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" +#: ../../include/nav.php:95 +msgid "Your files" +msgstr "Jouw bestanden" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" +#: ../../include/nav.php:98 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" +#: ../../include/nav.php:104 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" +#: ../../include/nav.php:108 +msgid "Your webpages" +msgstr "Jouw webpagina's" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" +#: ../../include/nav.php:110 +msgid "Your wiki" +msgstr "Jouw wiki" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" +#: ../../include/nav.php:114 +msgid "Sign in" +msgstr "Inloggen" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" +#: ../../include/nav.php:131 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" +#: ../../include/nav.php:134 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" +#: ../../include/nav.php:134 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" +#: ../../include/nav.php:148 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." +#: ../../include/nav.php:151 +msgid "Create an account" +msgstr "Maak een account aan" -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Sociaal netwerk" +#: ../../include/nav.php:163 +msgid "Help and documentation" +msgstr "Hulp en documentatie" -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Sociaal - Vrijwel alles openbaar" +#: ../../include/nav.php:167 +msgid "Applications, utilities, links, games" +msgstr "Apps" -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Sociaal - Beperkt zichtbaar" +#: ../../include/nav.php:169 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Sociaal - Verborgen kanaal" +#: ../../include/nav.php:171 +msgid "Channel Directory" +msgstr "Kanalengids" -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Groepsforum" +#: ../../include/nav.php:183 +msgid "Your grid" +msgstr "Jouw grid" -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Forum - Vrijwel alles openbaar" +#: ../../include/nav.php:184 +msgid "Mark all grid notifications seen" +msgstr "Markeer alle gridnotificaties als bekeken" -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Forum - Beperkt zichtbaar" +#: ../../include/nav.php:186 +msgid "Channel home" +msgstr "Jouw kanaal" -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Forum - Verborgen kanaal" +#: ../../include/nav.php:187 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Feed herpubliceren" +#: ../../include/nav.php:193 +msgid "Notices" +msgstr "Notificaties" -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Feed - Vrijwel alles openbaar" +#: ../../include/nav.php:193 +msgid "Notifications" +msgstr "Notificaties" -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Feed - Beperkt zichtbaar" +#: ../../include/nav.php:194 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Speciaal doel" +#: ../../include/nav.php:197 +msgid "Private mail" +msgstr "Privéberichten" -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Speciaal - Beroemdheid/alleen volgen" +#: ../../include/nav.php:198 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Speciaal - Groepsopslag" +#: ../../include/nav.php:199 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" +#: ../../include/nav.php:205 +msgid "Event Calendar" +msgstr "Agenda" -#: ../../include/activities.php:41 -msgid " and " -msgstr " en " +#: ../../include/nav.php:206 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "openbaar profiel" +#: ../../include/nav.php:207 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" +#: ../../include/nav.php:210 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" +#: ../../include/nav.php:212 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." +#: ../../include/nav.php:220 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Bijlagen:" +#: ../../include/nav.php:256 +msgid "@name, #tag, ?doc, content" +msgstr "@kanaal, #tag, inhoud, ?hulp" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificatie $Projectname-gebeurtenis:" +#: ../../include/nav.php:257 +msgid "Please wait..." +msgstr "Wachten aub..." -#: ../../view/theme/redbasic/php/config.php:82 +#: ../../view/theme/redbasic/php/config.php:6 msgid "Focus (Hubzilla default)" msgstr "Focus (Hubzilla-standaard)" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Theme settings" msgstr "Thema-instellingen" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" -msgstr "Kies schema van thema" - -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Narrow navbar" msgstr "Smalle navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar background color" msgstr "Achtergrondkleur navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Navigation bar gradient top color" msgstr "Bovenste gradiëntkleur navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Navigation bar gradient bottom color" msgstr "Onderste gradiëntkleur navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Navigation active button gradient top color" msgstr "Bovenste gradiëntkleur actieve knop navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Navigation active button gradient bottom color" msgstr "Onderste gradiëntkleur actieve knop op navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Navigation bar border color " msgstr "Randkleur navigatiebalk " -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Navigation bar icon color " msgstr "Pictogramkleur navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Navigation bar active icon color " msgstr "Actieve pictogramkleur navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:120 msgid "link color" msgstr "Linkkleur instellen" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set font-color for banner" msgstr "Tekstkleur van banner instellen" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the background color" msgstr "Achtergrondkleur instellen" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set the background image" msgstr "Achtergrondafbeelding instellen" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set the background color of items" msgstr "Achtergrondkleur items instellen" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:125 msgid "Set the background color of comments" msgstr "Achtergrondkleur reacties instellen" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set the border color of comments" msgstr "Randkleur reacties instellen" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set the indent for comments" msgstr "Inspringen reacties instellen" -#: ../../view/theme/redbasic/php/config.php:122 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set the basic color for item icons" msgstr "Basiskleur itempictogrammen instellen" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Set the hover color for item icons" msgstr "Hoverkleur itempictogrammen instellen" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Set font-size for the entire application" msgstr "Tekstgrootte van de volledige applicatie instellen" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Example: 14px" msgstr "Voorbeeld: 14px" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set font-size for posts and comments" msgstr "Lettergrootte voor berichten en reacties instellen" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set font-color for posts and comments" msgstr "Tekstkleur van berichten en reacties" -#: ../../view/theme/redbasic/php/config.php:127 +#: ../../view/theme/redbasic/php/config.php:133 msgid "Set radius of corners" msgstr "Radius van hoeken instellen" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:134 msgid "Set shadow depth of photos" msgstr "Schaduwdiepte van foto's instellen" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Set maximum width of content region in pixel" msgstr "Maximumbreedte conversatieruimte instellen (in pixels)" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Leave empty for default width" msgstr "Laat leeg voor standaardbreedte" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:136 msgid "Left align page content" msgstr "Inhoud links uitlijnen" -#: ../../view/theme/redbasic/php/config.php:131 +#: ../../view/theme/redbasic/php/config.php:137 msgid "Set minimum opacity of nav bar - to hide it" msgstr "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)" -#: ../../view/theme/redbasic/php/config.php:132 +#: ../../view/theme/redbasic/php/config.php:138 msgid "Set size of conversation author photo" msgstr "Grootte profielfoto's van berichten instellen" -#: ../../view/theme/redbasic/php/config.php:133 +#: ../../view/theme/redbasic/php/config.php:139 msgid "Set size of followup author photos" msgstr "Grootte profielfoto's van reacties instellen" -#: ../../boot.php:1162 +#: ../../boot.php:1194 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Zoek %1$s (%2$s)" -#: ../../boot.php:1162 +#: ../../boot.php:1194 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1480 +#: ../../boot.php:1512 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1483 +#: ../../boot.php:1515 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1684 +#: ../../boot.php:1719 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla" -#: ../../boot.php:1706 +#: ../../boot.php:1740 +msgid "Login/Email" +msgstr "E-mailadres of inlognaam" + +#: ../../boot.php:1741 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1707 +#: ../../boot.php:1742 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1710 +#: ../../boot.php:1745 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:2276 +#: ../../boot.php:2314 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" -#: ../../boot.php:2425 +#: ../../boot.php:2469 msgid "Website SSL certificate is not valid. Please correct." msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b." -#: ../../boot.php:2428 +#: ../../boot.php:2472 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" -#: ../../boot.php:2469 +#: ../../boot.php:2576 msgid "Cron/Scheduled tasks not running." msgstr "Cron is niet actief" -#: ../../boot.php:2473 +#: ../../boot.php:2580 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-taken zijn niet actief op %s" diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index 4ff83f788..5313cefbe 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_nl")) { function string_plural_select_nl($n){ return ($n != 1);; }} -; +App::$rtl = 0; +App::$strings["Social Networking"] = "Sociaal netwerk"; +App::$strings["Social - Mostly Public"] = "Sociaal - Vrijwel alles openbaar"; +App::$strings["Social - Restricted"] = "Sociaal - Beperkt zichtbaar"; +App::$strings["Social - Private"] = "Sociaal - Verborgen kanaal"; +App::$strings["Community Forum"] = "Groepsforum"; +App::$strings["Forum - Mostly Public"] = "Forum - Vrijwel alles openbaar"; +App::$strings["Forum - Restricted"] = "Forum - Beperkt zichtbaar"; +App::$strings["Forum - Private"] = "Forum - Verborgen kanaal"; +App::$strings["Feed Republish"] = "Feed herpubliceren"; +App::$strings["Feed - Mostly Public"] = "Feed - Vrijwel alles openbaar"; +App::$strings["Feed - Restricted"] = "Feed - Beperkt zichtbaar"; +App::$strings["Special Purpose"] = "Speciaal doel"; +App::$strings["Special - Celebrity/Soapbox"] = "Speciaal - Beroemdheid/alleen volgen"; +App::$strings["Special - Group Repository"] = "Speciaal - Groepsopslag"; +App::$strings["Other"] = "Anders"; +App::$strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +App::$strings["Can view my channel stream and posts"] = "Kan mijn kanaal en berichten bekijken"; +App::$strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; +App::$strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; +App::$strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; +App::$strings["Can view my file storage and photos"] = "Kan mijn foto's en andere bestanden bekijken"; +App::$strings["Can upload/modify my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; +App::$strings["Can view my channel webpages"] = "Kan de webpagina's van mijn kanaal bekijken"; +App::$strings["Can create/edit my channel webpages"] = "Kan wegpagina's van mijn kanaal aanmaken en bewerken"; +App::$strings["Can post on my channel (wall) page"] = "Kan een bericht in mijn kanaal plaatsen"; +App::$strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; +App::$strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; +App::$strings["Can like/dislike profiles and profile things"] = "Kan profielen en profieldingen leuk en niet leuk vinden "; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +App::$strings["Can chat with me"] = "Kan met mij chatten"; +App::$strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; +App::$strings["Can administer my channel"] = "Kan mijn kanaal beheren"; App::$strings["parent"] = "omhoog"; App::$strings["Collection"] = "map"; App::$strings["Principal"] = "principal"; @@ -29,186 +61,114 @@ App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%) App::$strings["WARNING:"] = "WAARSCHUWING:"; App::$strings["Create new folder"] = "Nieuwe map aanmaken"; App::$strings["Upload file"] = "Bestand uploaden"; -App::$strings["Permission denied"] = "Toegang geweigerd"; +App::$strings["Drop files here to immediately upload"] = "Sleep bestanden hierheen om ze onmiddelijk te uploaden"; App::$strings["Permission denied."] = "Toegang geweigerd."; App::$strings["Not Found"] = "Niet gevonden"; App::$strings["Page not found."] = "Pagina niet gevonden."; +App::$strings["Permission denied"] = "Toegang geweigerd"; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; App::$strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; App::$strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; App::$strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; -App::$strings["Block Name"] = "Bloknaam"; -App::$strings["Blocks"] = "Blokken"; -App::$strings["Block Title"] = "Bloktitel"; -App::$strings["Created"] = "Aangemaakt"; -App::$strings["Edited"] = "Bewerkt"; -App::$strings["Share"] = "Delen"; -App::$strings["View"] = "Weergeven"; -App::$strings["Channel not found."] = "Kanaal niet gevonden."; -App::$strings["Permissions denied."] = "Permissies niet toegestaan"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Link to Source"] = "Originele locatie"; -App::$strings["Edit Event"] = "Gebeurtenis bewerken"; -App::$strings["Create Event"] = "Gebeurtenis aanmaken"; -App::$strings["Previous"] = "Vorige"; -App::$strings["Next"] = "Volgende"; -App::$strings["Export"] = "Exporteren"; -App::$strings["Import"] = "Importeren"; -App::$strings["Submit"] = "Opslaan"; -App::$strings["Today"] = "Vandaag"; -App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -App::$strings["Posts and comments"] = "Berichten en reacties"; -App::$strings["Only posts"] = "Alleen berichten"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; -App::$strings["Room not found"] = "Chatkanaal niet gevonden"; -App::$strings["Leave Room"] = "Chatkanaal verlaten"; -App::$strings["Delete Room"] = "Chatkanaal verwijderen"; -App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; -App::$strings["I am online"] = "Ik ben online"; -App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -App::$strings["Please enter a link URL:"] = "Vul een URL in:"; -App::$strings["Encrypt text"] = "Tekst versleutelen"; -App::$strings["Insert web link"] = "Weblink invoegen"; -App::$strings["Feature disabled."] = "Functie uitgeschakeld."; -App::$strings["New Chatroom"] = "Nieuw chatkanaal"; -App::$strings["Chatroom name"] = "Naam chatkanaal"; -App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; -App::$strings["Permissions"] = "Permissies"; -App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; -App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; -App::$strings["Create New"] = "Nieuwe aanmaken"; -App::$strings["Expiration"] = "Verloopt na"; -App::$strings["min"] = "min"; App::$strings["Away"] = "Afwezig"; App::$strings["Online"] = "Online"; -App::$strings["Invalid item."] = "Ongeldig item."; +App::$strings["Invalid message"] = "Ongeldig bericht"; +App::$strings["no results"] = "geen resultaten"; +App::$strings["channel sync processed"] = "kanaalsync verwerkt"; +App::$strings["queued"] = "in wachtrij"; +App::$strings["posted"] = "verstuurd"; +App::$strings["accepted for delivery"] = "geaccepteerd om afgeleverd te worden"; +App::$strings["updated"] = "geüpdatet"; +App::$strings["update ignored"] = "update genegeerd"; +App::$strings["permission denied"] = "toegang geweigerd"; +App::$strings["recipient not found"] = "ontvanger niet gevonden"; +App::$strings["mail recalled"] = "Privébericht ingetrokken"; +App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen"; +App::$strings["mail delivered"] = "privébericht afgeleverd"; +App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; +App::$strings["Options"] = "Opties"; +App::$strings["Redeliver"] = "Opnieuw afleveren"; +App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +App::$strings["Return to your app and insert this Security Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +App::$strings["Yes"] = "Ja"; +App::$strings["No"] = "Nee"; +App::$strings["Rating"] = "Beoordeling"; +App::$strings["Website:"] = "Website:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; +App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; +App::$strings["Submit"] = "Opslaan"; +App::$strings["Public Hubs"] = "Openbare hubs"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Toegangs-
     type"; +App::$strings["Registration Policy"] = "Registratie-
     beleid"; +App::$strings["Stats"] = "Stats"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Beoordelingen"; +App::$strings["Rate"] = "Beoordeel"; +App::$strings["Location"] = "Locatie"; +App::$strings["View"] = "Weergeven"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; +App::$strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; +App::$strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze \$Projectname-hub."; +App::$strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; +App::$strings["Registration on this hub is disabled."] = "Registreren van nieuwe accounts is op deze hub uitgeschakeld."; +App::$strings["Registration on this hub is by approval only."] = "Registraties op deze hub moeten eerst worden goedgekeurd."; +App::$strings["Register at another affiliated hub."] = "Registreer op een andere hub."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze \$Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; +App::$strings["Terms of Service"] = "Gebruiksvoorwaarden"; +App::$strings["I accept the %s for this website"] = "Ik accepteer de %s van deze \$Projectname-hub"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ik ben 13 jaar of ouder en accepteer de %s van deze \$Projectname-hub"; +App::$strings["Your email address"] = "Jouw e-mailadres"; +App::$strings["Choose a password"] = "Geef een wachtwoord op"; +App::$strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; +App::$strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; +App::$strings["Name or caption"] = "Naam"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; +App::$strings["Choose a short nickname"] = "Korte bijnaam"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; +App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; +App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; +App::$strings["no"] = "Nee"; +App::$strings["yes"] = "Ja"; +App::$strings["Registration"] = "Registratie"; +App::$strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; +App::$strings["Register"] = "Registreren"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder."; App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; App::$strings["My Bookmarks"] = "Mijn bladwijzers"; App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; -App::$strings["Continue"] = "Ga verder"; -App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; -App::$strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; -App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; -App::$strings["Connection updated."] = "Connectie bijgewerkt."; -App::$strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; -App::$strings["is now connected to"] = "is nu verbonden met"; -App::$strings["No"] = "Nee"; -App::$strings["Yes"] = "Ja"; -App::$strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; -App::$strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; -App::$strings["Connection has been removed."] = "Connectie is verwijderd"; -App::$strings["View Profile"] = "Profiel weergeven"; -App::$strings["View %s's profile"] = "Profiel van %s weergeven"; -App::$strings["Refresh Permissions"] = "Permissies vernieuwen"; -App::$strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; -App::$strings["Recent Activity"] = "Recente activiteit/berichten"; -App::$strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; -App::$strings["Unblock"] = "Deblokkeren"; -App::$strings["Block"] = "Blokkeren"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; -App::$strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!"; -App::$strings["Unignore"] = "Niet meer negeren"; -App::$strings["Ignore"] = "Negeren"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; -App::$strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!"; -App::$strings["Unarchive"] = "Niet meer archiveren"; -App::$strings["Archive"] = "Archiveren"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; -App::$strings["This connection is archived!"] = "Deze connectie is gearchiveerd!"; -App::$strings["Unhide"] = "Niet meer verbergen"; -App::$strings["Hide"] = "Verbergen"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; -App::$strings["This connection is hidden!"] = "Deze connectie is verborgen!"; -App::$strings["Delete this connection"] = "Deze connectie verwijderen"; -App::$strings["Me"] = "Ik"; -App::$strings["Family"] = "Familie"; -App::$strings["Friends"] = "Vrienden"; -App::$strings["Acquaintances"] = "Kennissen"; -App::$strings["All"] = "Alles"; -App::$strings["Approve this connection"] = "Deze connectie accepteren"; -App::$strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; -App::$strings["Set Affinity"] = "Verwantschapsfilter instellen"; -App::$strings["Set Profile"] = "Profiel instellen"; -App::$strings["Set Affinity & Profile"] = "Verwantschapsfilter en profiel instellen"; -App::$strings["none"] = "geen"; -App::$strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; -App::$strings["Connection: %s"] = "Connectie: %s"; -App::$strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; -App::$strings["Connection requests will be approved without your interaction"] = "Connectieverzoeken zullen automatisch worden geaccepteerd"; -App::$strings["This connection's primary address is"] = "Het primaire kanaaladres van deze connectie is"; -App::$strings["Available locations:"] = "Beschikbare locaties:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast."; -App::$strings["Connection Tools"] = "Hulpmiddelen"; -App::$strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; -App::$strings["Rating"] = "Beoordeling"; -App::$strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven"; -App::$strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)"; -App::$strings["Custom Filter"] = "Berichtenfilter"; -App::$strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren"; -App::$strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst"; -App::$strings["This information is public!"] = "Deze informatie is openbaar!"; -App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; -App::$strings["inherited"] = "geërfd"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; -App::$strings["Their Settings"] = "Hun instellingen"; -App::$strings["My Settings"] = "Mijn instellingen"; -App::$strings["Individual Permissions"] = "Individuele permissies"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; -App::$strings["Last update:"] = "Laatste wijziging:"; App::$strings["Public access denied."] = "Openbare toegang geweigerd."; -App::$strings["%d rating"] = array( - 0 => "%d beoordeling", - 1 => "%d beoordelingen", -); -App::$strings["Gender: "] = "Geslacht:"; -App::$strings["Status: "] = "Status: "; -App::$strings["Homepage: "] = "Homepage: "; -App::$strings["Age:"] = "Leeftijd:"; -App::$strings["Location:"] = "Plaats:"; -App::$strings["Description:"] = "Omschrijving:"; -App::$strings["Hometown:"] = "Oorspronkelijk uit:"; -App::$strings["About:"] = "Over:"; -App::$strings["Connect"] = "Verbinden"; -App::$strings["Public Forum:"] = "Openbaar forum:"; -App::$strings["Keywords: "] = "Trefwoorden: "; -App::$strings["Don't suggest"] = "Niet voorstellen"; -App::$strings["Common connections:"] = "Gemeenschappelijke connecties:"; -App::$strings["Global Directory"] = "Volledige kanalengids"; -App::$strings["Local Directory"] = "Lokale kanalengids"; -App::$strings["Find"] = "Vinden"; -App::$strings["Finding:"] = "Gezocht naar:"; -App::$strings["Channel Suggestions"] = "Voorgestelde kanalen"; -App::$strings["next page"] = "volgende pagina"; -App::$strings["previous page"] = "vorige pagina"; -App::$strings["Sort options"] = "Sorteeropties"; -App::$strings["Alphabetic"] = "Alfabetisch"; -App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; -App::$strings["Newest to Oldest"] = "Nieuw naar oud"; -App::$strings["Oldest to Newest"] = "Oud naar nieuw"; -App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; App::$strings["Item not found."] = "Item niet gevonden."; -App::$strings["Item not found"] = "Item niet gevonden"; -App::$strings["Title (optional)"] = "Titel (optioneel)"; -App::$strings["Edit Block"] = "Blok bewerken"; -App::$strings["No channel."] = "Geen kanaal."; -App::$strings["Common connections"] = "Veel voorkomende connecties"; -App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; -App::$strings["Blocked"] = "Geblokkeerd"; -App::$strings["Ignored"] = "Genegeerd"; -App::$strings["Hidden"] = "Verborgen"; -App::$strings["Archived"] = "Gearchiveerd"; -App::$strings["New"] = "Nieuw"; -App::$strings["New Connections"] = "Nieuwe connecties"; +App::$strings["Photos"] = "Foto's"; +App::$strings["Cancel"] = "Annuleren"; +App::$strings["Invalid item."] = "Ongeldig item."; +App::$strings["Channel not found."] = "Kanaal niet gevonden."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Bewaar in map: "; +App::$strings["- select -"] = "- kies map -"; +App::$strings["Save"] = "Opslaan"; +App::$strings["No such group"] = "Collectie niet gevonden"; +App::$strings["No such channel"] = "Niet zo'n kanaal"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Zoekresultaten voor:"; +App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; +App::$strings["Privacy group: "] = "Privacygroep: "; +App::$strings["Invalid connection."] = "Ongeldige connectie."; +App::$strings["Blocked"] = "Geblokkeerd"; +App::$strings["Ignored"] = "Genegeerd"; +App::$strings["Hidden"] = "Verborgen"; +App::$strings["Archived"] = "Gearchiveerd"; +App::$strings["New"] = "Nieuw"; +App::$strings["All"] = "Alles"; +App::$strings["New Connections"] = "Nieuwe connecties"; App::$strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; App::$strings["All Connections"] = "Alle connecties"; App::$strings["Show all connections"] = "Toon alle connecties"; @@ -227,11 +187,13 @@ App::$strings["Connected"] = "Verbonden"; App::$strings["Approve connection"] = "Connectie accepteren"; App::$strings["Approve"] = "Goedkeuren"; App::$strings["Ignore connection"] = "Connectie negeren"; +App::$strings["Ignore"] = "Negeren"; App::$strings["Recent activity"] = "Recente activiteit"; App::$strings["Connections"] = "Connecties"; App::$strings["Search"] = "Zoeken"; App::$strings["Search your connections"] = "Doorzoek jouw connecties"; App::$strings["Connections search"] = "Connecties zoeken"; +App::$strings["Find"] = "Vinden"; App::$strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; App::$strings["Cover Photos"] = "Omslagfoto's"; App::$strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; @@ -254,275 +216,137 @@ App::$strings["select a photo from your photo albums"] = "Kies een foto uit jouw App::$strings["Crop Image"] = "Afbeelding bijsnijden"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; App::$strings["Done Editing"] = "Klaar met bewerken"; -App::$strings["Item is not editable"] = "Item is niet te bewerken"; -App::$strings["Edit post"] = "Bericht bewerken"; -App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; -App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; -App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; -App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; -App::$strings["event"] = "gebeurtenis"; -App::$strings["Edit event title"] = "Titel bewerken"; -App::$strings["Event title"] = "Titel"; -App::$strings["Required"] = "Vereist"; -App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -App::$strings["Edit Category"] = "Categorie"; -App::$strings["Category"] = "Categorie"; -App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; -App::$strings["Start date and time"] = "Begindatum en -tijd"; -App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; -App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; -App::$strings["Finish date and time"] = "Einddatum en -tijd"; -App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; -App::$strings["Edit Description"] = "Omschrijving bewerken"; -App::$strings["Description"] = "Omschrijving"; -App::$strings["Edit Location"] = "Locatie bewerken"; -App::$strings["Location"] = "Locatie"; -App::$strings["Share this event"] = "Deel deze gebeurtenis"; -App::$strings["Preview"] = "Voorvertoning"; -App::$strings["Permission settings"] = "Permissies"; -App::$strings["Advanced Options"] = "Geavanceerde opties"; -App::$strings["Edit event"] = "Gebeurtenis bewerken"; -App::$strings["Delete event"] = "Gebeurtenis verwijderen"; -App::$strings["calendar"] = "agenda"; -App::$strings["Event removed"] = "Gebeurtenis verwijderd"; -App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; -App::$strings["Photos"] = "Foto's"; -App::$strings["Cancel"] = "Annuleren"; +App::$strings["\$Projectname Server - Setup"] = "\$Projectname Hub - Setup"; +App::$strings["Could not connect to database."] = "Could not connect to database."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; +App::$strings["Could not create table."] = "Could not create table."; +App::$strings["Your site database has been installed."] = "Your hub database has been installed."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; +App::$strings["System check"] = "System check"; +App::$strings["Next"] = "Volgende"; +App::$strings["Check again"] = "Check again"; +App::$strings["Database connection"] = "Database connection"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "In order to install \$Projectname we need to know how to connect to your database."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or server administrator if you have questions about these settings."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; +App::$strings["Database Server Name"] = "Database Server Name"; +App::$strings["Default is 127.0.0.1"] = "Default is 127.0.0.1"; +App::$strings["Database Port"] = "Database Port"; +App::$strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; +App::$strings["Database Login Name"] = "Database Login Name"; +App::$strings["Database Login Password"] = "Database Login Password"; +App::$strings["Database Name"] = "Database Name"; +App::$strings["Database Type"] = "Database Type"; +App::$strings["Site administrator email address"] = "Hub administrator email address"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +App::$strings["Website URL"] = "Hub URL"; +App::$strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; +App::$strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; +App::$strings["Basic/Minimal Social Networking"] = "Basic/eenvoudig sociaal netwerk"; +App::$strings["Standard Configuration (default)"] = "Standaard (standaard)"; +App::$strings["Professional"] = "Professioneel "; +App::$strings["Site settings"] = "Hub settings"; +App::$strings["Server Configuration/Role"] = "Configuratietype hub"; +App::$strings["PHP version 5.5 or greater is required."] = "PHP version 5.5 or greater is required."; +App::$strings["PHP version"] = "PHP version"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."; +App::$strings["PHP executable path"] = "PHP executable path"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; +App::$strings["Command line PHP"] = "Command line PHP"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; +App::$strings["This is required for message delivery to work."] = "This is required for message delivery to work."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."; +App::$strings["You can adjust these settings in the servers php.ini."] = "You can adjust these settings in the servers php.ini."; +App::$strings["PHP upload limits"] = "PHP upload limits"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Generate encryption keys"; +App::$strings["libCurl PHP module"] = "libCurl PHP module"; +App::$strings["GD graphics PHP module"] = "GD graphics PHP module"; +App::$strings["OpenSSL PHP module"] = "OpenSSL PHP module"; +App::$strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; +App::$strings["mb_string PHP module"] = "mb_string PHP module"; +App::$strings["xml PHP module"] = "xml PHP module"; +App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; +App::$strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; +App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; +App::$strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: xml PHP module required for DAV but not installed."; +App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."; +App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php is writable"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; +App::$strings["%s is writable"] = "%s is writable"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; +App::$strings["store is writable"] = "store is writable"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; +App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."; +App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."; +App::$strings["SSL certificate validation"] = "SSL certificate validation"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; +App::$strings["Url rewrite is working"] = "Url rewrite is working"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."; +App::$strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; +App::$strings["

    What next

    "] = "

    What next

    "; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; +App::$strings["%d rating"] = array( + 0 => "%d beoordeling", + 1 => "%d beoordelingen", +); +App::$strings["Gender: "] = "Geslacht:"; +App::$strings["Status: "] = "Status: "; +App::$strings["Homepage: "] = "Homepage: "; +App::$strings["Age:"] = "Leeftijd:"; +App::$strings["Location:"] = "Plaats:"; +App::$strings["Description:"] = "Omschrijving:"; +App::$strings["Hometown:"] = "Oorspronkelijk uit:"; +App::$strings["About:"] = "Over:"; +App::$strings["Connect"] = "Verbinden"; +App::$strings["Public Forum:"] = "Openbaar forum:"; +App::$strings["Keywords: "] = "Trefwoorden: "; +App::$strings["Don't suggest"] = "Niet voorstellen"; +App::$strings["Common connections:"] = "Gemeenschappelijke connecties:"; +App::$strings["Global Directory"] = "Volledige kanalengids"; +App::$strings["Local Directory"] = "Lokale kanalengids"; +App::$strings["Finding:"] = "Gezocht naar:"; +App::$strings["Channel Suggestions"] = "Voorgestelde kanalen"; +App::$strings["next page"] = "volgende pagina"; +App::$strings["previous page"] = "vorige pagina"; +App::$strings["Sort options"] = "Sorteeropties"; +App::$strings["Alphabetic"] = "Alfabetisch"; +App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; +App::$strings["Newest to Oldest"] = "Nieuw naar oud"; +App::$strings["Oldest to Newest"] = "Oud naar nieuw"; +App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; App::$strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; App::$strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; -App::$strings["Save to Folder:"] = "Bewaar in map: "; -App::$strings["- select -"] = "- kies map -"; -App::$strings["Save"] = "Opslaan"; -App::$strings["Invalid message"] = "Ongeldig bericht"; -App::$strings["no results"] = "geen resultaten"; -App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; -App::$strings["channel sync processed"] = "kanaalsync verwerkt"; -App::$strings["queued"] = "in wachtrij"; -App::$strings["posted"] = "verstuurd"; -App::$strings["accepted for delivery"] = "geaccepteerd om afgeleverd te worden"; -App::$strings["updated"] = "geüpdatet"; -App::$strings["update ignored"] = "update genegeerd"; -App::$strings["permission denied"] = "toegang geweigerd"; -App::$strings["recipient not found"] = "ontvanger niet gevonden"; -App::$strings["mail recalled"] = "Privébericht ingetrokken"; -App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen"; -App::$strings["mail delivered"] = "privébericht afgeleverd"; +App::$strings["Item not found"] = "Item niet gevonden"; +App::$strings["Block Name"] = "Bloknaam"; +App::$strings["Insert web link"] = "Weblink invoegen"; +App::$strings["Title (optional)"] = "Titel (optioneel)"; +App::$strings["Edit Block"] = "Blok bewerken"; App::$strings["Layout Name"] = "Naam lay-out"; App::$strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; App::$strings["Edit Layout"] = "Lay-out bewerken"; App::$strings["Page link"] = "Paginalink"; App::$strings["Edit Webpage"] = "Webpagina bewerken"; -App::$strings["Channel added."] = "Kanaal toegevoegd."; -App::$strings["network"] = "netwerk"; -App::$strings["RSS"] = "RSS"; -App::$strings["Privacy group created."] = "Privacygroep aangemaakt"; -App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken"; -App::$strings["Privacy group not found."] = "Privacygroep niet gevonden"; -App::$strings["Privacy group updated."] = "Privacygroep bijgewerkt"; -App::$strings["Create a group of channels."] = "Privacygroep met kanalen aanmaken"; -App::$strings["Privacy group name: "] = "Naam privacygroep: "; -App::$strings["Members are visible to other channels"] = "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen"; -App::$strings["Privacy group removed."] = "Privacygroep verwijderd."; -App::$strings["Unable to remove privacy group."] = "Verwijderen privacygroep mislukt"; -App::$strings["Privacy group editor"] = "Privacygroep bewerken"; -App::$strings["Members"] = "Kanalen"; -App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; -App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; -App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; -App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; -App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -App::$strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; -App::$strings["Documentation Search"] = "Zoek documentatie"; -App::$strings["Help:"] = "Hulp:"; -App::$strings["Help"] = "Hulp"; -App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; -App::$strings["Permission Denied."] = "Toegang geweigerd"; -App::$strings["File not found."] = "Bestand niet gevonden."; -App::$strings["Edit file permissions"] = "Bestandsrechten bewerken"; -App::$strings["Set/edit permissions"] = "Rechten instellen/bewerken"; -App::$strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; -App::$strings["Return to file list"] = "Terugkeren naar bestandlijst "; -App::$strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; -App::$strings["Share this file"] = "Dit bestand delen"; -App::$strings["Show URL to this file"] = "Toon URL van dit bestand"; -App::$strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; -App::$strings["Apps"] = "Apps"; -App::$strings["Item not available."] = "Item is niet aanwezig."; -App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; -App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; -App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; -App::$strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter."; -App::$strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; -App::$strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt."; -App::$strings["Import completed."] = "Import voltooid."; -App::$strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; -App::$strings["Import Channel"] = "Kanaal importeren"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."; -App::$strings["File to Upload"] = "Bestand om te uploaden"; -App::$strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; -App::$strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; -App::$strings["Your old login email address"] = "Het e-mailadres van je oude account"; -App::$strings["Your old login password"] = "Wachtwoord van jouw oude account"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; -App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; -App::$strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; -App::$strings["Empty post discarded."] = "Leeg bericht geannuleerd"; -App::$strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; -App::$strings["Duplicate post suppressed."] = "Dubbel bericht tegengehouden."; -App::$strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; -App::$strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; -App::$strings["Layouts"] = "Lay-outs"; -App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; -App::$strings["Layout Description"] = "Lay-out-omschrijving"; -App::$strings["Download PDL file"] = "Download PDL-bestand"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Welkom op %s"; -App::$strings["First Name"] = "Voornaam"; -App::$strings["Last Name"] = "Achternaam"; -App::$strings["Nickname"] = "Bijnaam"; -App::$strings["Full Name"] = "Volledige naam"; -App::$strings["Email"] = "E-mail"; -App::$strings["Profile Photo"] = "Profielfoto"; -App::$strings["Profile Photo 16px"] = "Profielfoto 16px"; -App::$strings["Profile Photo 32px"] = "Profielfoto 32px"; -App::$strings["Profile Photo 48px"] = "Profielfoto 48px"; -App::$strings["Profile Photo 64px"] = "Profielfoto 64px"; -App::$strings["Profile Photo 80px"] = "Profielfoto 80px"; -App::$strings["Profile Photo 128px"] = "Profielfoto 128px"; -App::$strings["Timezone"] = "Tijdzone"; -App::$strings["Homepage URL"] = "URL homepagina"; -App::$strings["Language"] = "Taal"; -App::$strings["Birth Year"] = "Geboortejaar"; -App::$strings["Birth Month"] = "Geboortemaand"; -App::$strings["Birth Day"] = "Geboortedag"; -App::$strings["Birthdate"] = "Geboortedatum"; -App::$strings["Gender"] = "Geslacht"; -App::$strings["Male"] = "Man"; -App::$strings["Female"] = "Vrouw"; -App::$strings["webpage"] = "Webpagina"; -App::$strings["block"] = "blok"; -App::$strings["layout"] = "lay-out"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; -App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; -App::$strings["Like/Dislike"] = "Leuk/niet leuk"; -App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; -App::$strings["Invalid request."] = "Ongeldig verzoek"; -App::$strings["channel"] = "kanaal"; -App::$strings["thing"] = "ding"; -App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; -App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "bericht"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; -App::$strings["Action completed."] = "Actie voltooid"; -App::$strings["Thank you."] = "Bedankt"; -App::$strings["Import completed"] = "Importeren voltooid"; -App::$strings["Import Items"] = "Importeer items"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; -App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; -App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; -App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; -App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; -App::$strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", -); -App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; -App::$strings["Send invitations"] = "Uitnodigingen verzenden"; -App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; -App::$strings["Your message:"] = "Jouw bericht:"; -App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; -App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; -App::$strings["or visit"] = "of bezoek"; -App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; -App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; -App::$strings["Visible to:"] = "Zichtbaar voor:"; -App::$strings["Location not found."] = "Locatie niet gevonden."; -App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; -App::$strings["Syncing locations"] = "Locaties synchronizeren"; -App::$strings["No locations found."] = "Geen locaties gevonden."; -App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; -App::$strings["Address"] = "Kanaaladres"; -App::$strings["Primary"] = "Primair"; -App::$strings["Drop"] = "Verwijderen"; -App::$strings["Sync Now"] = "Nu synchroniseren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; -App::$strings["Hub not found."] = "Hub niet gevonden."; -App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -App::$strings["Messages"] = "Berichten"; -App::$strings["Message recalled."] = "Bericht ingetrokken."; -App::$strings["Conversation removed."] = "Conversatie verwijderd"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; -App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; -App::$strings["Send Private Message"] = "Privébericht versturen"; -App::$strings["To:"] = "Aan:"; -App::$strings["Subject:"] = "Onderwerp:"; -App::$strings["Attach file"] = "Bestand toevoegen"; -App::$strings["Send"] = "Verzenden"; -App::$strings["Set expiration date"] = "Verloopdatum instellen"; -App::$strings["Delete message"] = "Bericht verwijderen"; -App::$strings["Delivery report"] = "Afleveringsrapport"; -App::$strings["Recall message"] = "Bericht intrekken"; -App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; -App::$strings["Delete Conversation"] = "Verwijder conversatie"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -App::$strings["Send Reply"] = "Antwoord versturen"; -App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; -App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; -App::$strings["Channel Manager"] = "Kanaalbeheer"; -App::$strings["Current Channel"] = "Huidig kanaal"; -App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; -App::$strings["Default Channel"] = "Standaardkanaal"; -App::$strings["Make Default"] = "Als standaard instellen"; -App::$strings["%d new messages"] = "%d nieuwe berichten"; -App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; -App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; -App::$strings["No valid account found."] = "Geen geldige account gevonden."; -App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; -App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; -App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -App::$strings["Password Reset"] = "Wachtwoord vergeten?"; -App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; -App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; -App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; -App::$strings["click here to login"] = "klik dan hier om in te loggen"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; -App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; -App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; -App::$strings["Email Address"] = "E-mailadres"; -App::$strings["Reset"] = "Opnieuw instellen"; App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; App::$strings["Menu Name"] = "Menunaam"; @@ -533,6 +357,9 @@ App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; App::$strings["Menus"] = "Menu's"; +App::$strings["Drop"] = "Verwijderen"; +App::$strings["Created"] = "Aangemaakt"; +App::$strings["Edited"] = "Bewerkt"; App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; App::$strings["Delete this menu"] = "Menu verwijderen"; App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; @@ -547,1384 +374,1160 @@ App::$strings["Menu title"] = "Titel van menu"; App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; App::$strings["Not found."] = "Niet gevonden."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; -App::$strings["Mood"] = "Stemming"; -App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; -App::$strings["Profile Match"] = "Profielovereenkomst"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; -App::$strings["is interested in:"] = "is geïnteresseerd in:"; -App::$strings["No matches"] = "Geen overeenkomsten"; -App::$strings["No such group"] = "Collectie niet gevonden"; -App::$strings["No such channel"] = "Niet zo'n kanaal"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Zoekresultaten voor:"; -App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; -App::$strings["Privacy group: "] = "Privacygroep: "; -App::$strings["Invalid connection."] = "Ongeldige connectie."; -App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; -App::$strings["System Notifications"] = "Systeemnotificaties"; -App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; -App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; -App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; -App::$strings["Menu Item Permissions"] = "Permissies menu-item"; -App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -App::$strings["Link Name"] = "Linknaam"; -App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; -App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; -App::$strings["Open link in new window"] = "Open link in nieuw venster"; -App::$strings["Order in list"] = "Volgorde in lijst"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; -App::$strings["Submit and finish"] = "Opslaan en afsluiten"; -App::$strings["Submit and continue"] = "Opslaan en doorgaan"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Linkdoel"; -App::$strings["Edit menu"] = "Menu bewerken"; -App::$strings["Edit element"] = "Onderdeel bewerken"; -App::$strings["Drop element"] = "Onderdeel verwijderen"; -App::$strings["New element"] = "Nieuw element"; -App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; -App::$strings["Add menu element"] = "Menu-element toevoegen"; -App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; -App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; -App::$strings["Menu item not found."] = "Menu-item niet gevonden."; -App::$strings["Menu item deleted."] = "Menu-item verwijderd."; -App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; -App::$strings["Edit Menu Element"] = "Menu-element bewerken"; -App::$strings["Link text"] = "Linktekst"; -App::$strings["Name or caption"] = "Naam"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; -App::$strings["Choose a short nickname"] = "Korte bijnaam"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; -App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; -App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; -App::$strings["Create Channel"] = "Kanaal aanmaken"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; -App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; -App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; -App::$strings["Discard"] = "Annuleren"; -App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; -App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; -App::$strings["Profile Photos"] = "Profielfoto's"; -App::$strings["Album not found."] = "Album niet gevonden."; -App::$strings["Delete Album"] = "Verwijder album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder."; -App::$strings["Delete Photo"] = "Verwijder foto"; -App::$strings["No photos selected"] = "Geen foto's geselecteerd"; -App::$strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; -App::$strings["Upload Photos"] = "Foto's uploaden"; -App::$strings["Enter an album name"] = "Vul een albumnaam in"; -App::$strings["or select an existing album (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -App::$strings["Create a status post for this upload"] = "Plaats een bericht voor deze upload."; -App::$strings["Caption (optional):"] = "Bijschrift (optioneel):"; -App::$strings["Description (optional):"] = "Omschrijving (optioneel):"; -App::$strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; -App::$strings["Contact Photos"] = "Connectiefoto's"; -App::$strings["Show Newest First"] = "Nieuwste eerst weergeven"; -App::$strings["Show Oldest First"] = "Oudste eerst weergeven"; -App::$strings["View Photo"] = "Foto weergeven"; -App::$strings["Edit Album"] = "Album bewerken"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; -App::$strings["Photo not available"] = "Foto niet aanwezig"; -App::$strings["Use as profile photo"] = "Als profielfoto gebruiken"; -App::$strings["Use as cover photo"] = "Als omslagfoto gebruiken"; -App::$strings["Private Photo"] = "Privéfoto"; -App::$strings["View Full Size"] = "Volledige grootte weergeven"; -App::$strings["Remove"] = "Verwijderen"; -App::$strings["Edit photo"] = "Foto bewerken"; -App::$strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; -App::$strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; -App::$strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; -App::$strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -App::$strings["Caption"] = "Bijschrift"; -App::$strings["Add a Tag"] = "Tag toevoegen"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; -App::$strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; -App::$strings["I like this (toggle)"] = "Vind ik leuk"; -App::$strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -App::$strings["Please wait"] = "Even wachten"; -App::$strings["This is you"] = "Dit ben jij"; -App::$strings["Comment"] = "Reactie"; -App::$strings["__ctx:title__ Likes"] = "vinden dit leuk"; -App::$strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; -App::$strings["__ctx:title__ Agree"] = "eens"; -App::$strings["__ctx:title__ Disagree"] = "oneens"; -App::$strings["__ctx:title__ Abstain"] = "onthoudingen"; -App::$strings["__ctx:title__ Attending"] = "aanwezig"; -App::$strings["__ctx:title__ Not attending"] = "niet aanwezig"; -App::$strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; -App::$strings["View all"] = "Toon alles"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "vindt dit niet leuk", - 1 => "vinden dit niet leuk", -); -App::$strings["Photo Tools"] = "Hulpmiddelen"; -App::$strings["In This Photo:"] = "Op deze foto:"; -App::$strings["Map"] = "Kaart"; -App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk"; -App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; -App::$strings["Close"] = "Sluiten"; -App::$strings["View Album"] = "Album weergeven"; -App::$strings["Recent Photos"] = "Recente foto's"; -App::$strings["sent you a private message"] = "stuurde jou een privébericht"; -App::$strings["added your channel"] = "voegde jouw kanaal toe"; -App::$strings["g A l F d"] = "G:i, l d F"; -App::$strings["[today]"] = "[vandaag]"; -App::$strings["posted an event"] = "plaatste een gebeurtenis"; -App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -App::$strings["Post successful."] = "Verzenden bericht geslaagd."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; -App::$strings["Login failed."] = "Inloggen mislukt."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; -App::$strings["Configuration Editor"] = "Configuratiebewerker"; -App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; +App::$strings["App installed."] = "App geïnstalleerd"; +App::$strings["Malformed app."] = "Misvormde app."; +App::$strings["Embed code"] = "Insluitcode"; +App::$strings["Edit App"] = "App bewerken"; +App::$strings["Create App"] = "App maken"; +App::$strings["Name of app"] = "Naam van app"; +App::$strings["Required"] = "Vereist"; +App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; +App::$strings["Description"] = "Omschrijving"; +App::$strings["Photo icon URL"] = "URL van pictogram"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; +App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +App::$strings["Version ID"] = "Versie-ID"; +App::$strings["Price of app"] = "Prijs van de app"; +App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +App::$strings["Documentation Search"] = "Zoek documentatie"; +App::$strings["Help:"] = "Hulp:"; +App::$strings["Help"] = "Hulp"; +App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; +App::$strings["Item not available."] = "Item is niet aanwezig."; App::$strings["Layout updated."] = "Lay-out bijgewerkt."; App::$strings["Edit System Page Description"] = "Systeempagina's bewerken"; App::$strings["Layout not found."] = "Lay-out niet gevonden."; App::$strings["Module Name:"] = "Modulenaam:"; App::$strings["Layout Help"] = "Lay-out-hulp"; -App::$strings["Poke"] = "Aanstoten"; -App::$strings["Poke somebody"] = "Iemand aanstoten"; -App::$strings["Poke/Prod"] = "Aanstoten/porren"; -App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; -App::$strings["Recipient"] = "Ontvanger"; -App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -App::$strings["Make this post private"] = "Maak dit bericht privé"; -App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; -App::$strings["Profile not found."] = "Profiel niet gevonden."; -App::$strings["Profile deleted."] = "Profiel verwijderd."; -App::$strings["Profile-"] = "Profiel-"; -App::$strings["New profile created."] = "Nieuw profiel aangemaakt."; -App::$strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; -App::$strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; -App::$strings["Profile Name is required."] = "Profielnaam is vereist"; -App::$strings["Marital Status"] = "Huwelijke status"; -App::$strings["Romantic Partner"] = "Romantische partner"; -App::$strings["Likes"] = "Houdt van"; -App::$strings["Dislikes"] = "Houdt niet van"; -App::$strings["Work/Employment"] = "Werk/arbeid"; -App::$strings["Religion"] = "Religie"; -App::$strings["Political Views"] = "Politieke overtuigingen"; -App::$strings["Sexual Preference"] = "Seksuele voorkeur"; -App::$strings["Homepage"] = "Homepage"; -App::$strings["Interests"] = "Interesses"; -App::$strings["Profile updated."] = "Profiel bijgewerkt"; -App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; -App::$strings["Edit Profile Details"] = "Profiel bewerken"; -App::$strings["View this profile"] = "Profiel weergeven"; -App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; -App::$strings["Profile Tools"] = "Hulpmiddelen"; -App::$strings["Change cover photo"] = "Omslagfoto wijzigen"; -App::$strings["Change profile photo"] = "Profielfoto veranderen"; -App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; -App::$strings["Clone this profile"] = "Dit profiel klonen"; -App::$strings["Delete this profile"] = "Dit profiel verwijderen"; -App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen"; -App::$strings["Personal"] = "Persoonlijk"; -App::$strings["Relation"] = "Relatie"; -App::$strings["Miscellaneous"] = "Diversen"; -App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren"; -App::$strings["Export profile to file"] = "Profiel naar bestand exporteren"; -App::$strings["Your gender"] = "Jouw geslacht"; -App::$strings["Marital status"] = "Burgerlijke staat"; -App::$strings["Sexual preference"] = "Seksuele voorkeur"; -App::$strings["Profile name"] = "Profielnaam"; -App::$strings["This is your default profile."] = "Dit is jouw standaardprofiel"; -App::$strings["Your full name"] = "Jouw volledige naam"; -App::$strings["Title/Description"] = "Titel/omschrijving"; -App::$strings["Street address"] = "Straat en huisnummer"; -App::$strings["Locality/City"] = "Woonplaats"; -App::$strings["Region/State"] = "Provincie/gewest/deelstaat"; -App::$strings["Postal/Zip code"] = "Postcode"; -App::$strings["Country"] = "Land"; -App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; -App::$strings["Since (date)"] = "Sinds (datum)"; -App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf"; -App::$strings["Hometown"] = "Oorspronkelijk uit"; -App::$strings["Political views"] = "Politieke overtuigingen"; -App::$strings["Religious views"] = "Religieuze overtuigingen"; -App::$strings["Keywords used in directory listings"] = "Trefwoorden voor in de kanalengids"; -App::$strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; -App::$strings["Musical interests"] = "Muzikale interesses"; -App::$strings["Books, literature"] = "Boeken/literatuur"; -App::$strings["Television"] = "Televisie"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/cultuur/entertainment"; -App::$strings["Hobbies/Interests"] = "Hobby's/interesses"; -App::$strings["Love/Romance"] = "Liefde/romantiek"; -App::$strings["School/Education"] = "School/opleiding"; -App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken"; -App::$strings["My other channels"] = "Mijn andere kanalen"; -App::$strings["Profile Image"] = "Profielfoto"; -App::$strings["Edit Profiles"] = "Bewerk profielen"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; -App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; -App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; -App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; -App::$strings["Profile"] = "Profiel"; -App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; -App::$strings["Visible To"] = "Zichtbaar voor"; -App::$strings["Public Hubs"] = "Openbare hubs"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Toegangs-
     type"; -App::$strings["Registration Policy"] = "Registratie-
     beleid"; -App::$strings["Stats"] = "Stats"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Beoordelingen"; -App::$strings["Rate"] = "Beoordeel"; -App::$strings["Website:"] = "Website:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; -App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; -App::$strings["No ratings"] = "Geen beoordelingen"; -App::$strings["Rating: "] = "Beoordeling: "; -App::$strings["Website: "] = "Website: "; -App::$strings["Description: "] = "Omschrijving: "; -App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; -App::$strings["# Accounts"] = "# accounts"; -App::$strings["# blocked accounts"] = "# geblokkeerde accounts"; -App::$strings["# expired accounts"] = "# verlopen accounts"; -App::$strings["# expiring accounts"] = "# accounts die nog moeten verlopen"; -App::$strings["# Channels"] = "# Kanalen"; -App::$strings["# primary"] = "# primair"; -App::$strings["# clones"] = "# klonen"; -App::$strings["Message queues"] = "Berichtenwachtrij"; -App::$strings["Your software should be updated"] = "Jouw software moet worden bijgewerkt "; -App::$strings["Administration"] = "Beheer"; -App::$strings["Summary"] = "Samenvatting"; -App::$strings["Registered accounts"] = "Geregistreerde accounts"; -App::$strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; -App::$strings["Registered channels"] = "Geregistreerde kanalen"; -App::$strings["Active plugins"] = "Ingeschakelde plugins"; -App::$strings["Version"] = "Versie"; -App::$strings["Repository version (master)"] = "Versie repository (master)"; -App::$strings["Repository version (dev)"] = "Versie repository (dev)"; -App::$strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; -App::$strings["Default"] = "Standaard"; +App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; +App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Welkom op %s"; +App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +App::$strings["Visible to:"] = "Zichtbaar voor:"; +App::$strings["Permission Denied."] = "Toegang geweigerd"; +App::$strings["File not found."] = "Bestand niet gevonden."; +App::$strings["Edit file permissions"] = "Bestandsrechten bewerken"; +App::$strings["Permissions"] = "Permissies"; +App::$strings["Set/edit permissions"] = "Rechten instellen/bewerken"; +App::$strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; +App::$strings["Return to file list"] = "Terugkeren naar bestandlijst "; +App::$strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; +App::$strings["Share this file"] = "Dit bestand delen"; +App::$strings["Show URL to this file"] = "Toon URL van dit bestand"; +App::$strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; +App::$strings["Name is required"] = "Naam is vereist"; +App::$strings["Key and Secret are required"] = "Key en secret zijn vereist"; +App::$strings["Update"] = "Bijwerken"; +App::$strings["This channel is limited to %d tokens"] = "Dit kanaal heeft een limiet van %d tokens"; +App::$strings["Name and Password are required."] = "Naam en wachtwoord zijn vereist"; +App::$strings["Token saved."] = "Token opgeslagen."; +App::$strings["Not valid email."] = "Geen geldig e-mailadres."; +App::$strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; +App::$strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; +App::$strings["Password verification failed."] = "Wachtwoordverificatie mislukt"; +App::$strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; +App::$strings["Password changed."] = "Wachtwoord veranderd."; +App::$strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; +App::$strings["Friends"] = "Vrienden"; +App::$strings["Settings updated."] = "Instellingen bijgewerkt."; +App::$strings["Add application"] = "Applicatie toevoegen"; +App::$strings["Name of application"] = "Naam van applicatie"; +App::$strings["Consumer Key"] = "Consumer key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; +App::$strings["Consumer Secret"] = "Consumer secret"; +App::$strings["Redirect"] = "Redirect/doorverwijzing"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; +App::$strings["Icon url"] = "Pictogram-URL"; +App::$strings["Optional"] = "Optioneel"; +App::$strings["Application not found."] = "Applicatie niet gevonden."; +App::$strings["Connected Apps"] = "Verbonden applicaties"; +App::$strings["Client key starts with"] = "Client key begint met"; +App::$strings["No name"] = "Geen naam"; +App::$strings["Remove authorization"] = "Autorisatie verwijderen"; +App::$strings["No feature settings configured"] = "Geen plugin-instellingen aanwezig"; +App::$strings["Feature/Addon Settings"] = "Plugin-instellingen"; +App::$strings["Account Settings"] = "Account-instellingen"; +App::$strings["Current Password"] = "Huidig wachtwoord"; +App::$strings["Enter New Password"] = "Nieuw wachtwoord invoeren"; +App::$strings["Confirm New Password"] = "Nieuw wachtwoord bevestigen"; +App::$strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; +App::$strings["Email Address:"] = "E-mailadres:"; +App::$strings["Remove Account"] = "Account verwijderen"; +App::$strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot privéinhoud."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:"; +App::$strings["Guest Access Tokens"] = "Gasttoegang"; +App::$strings["Login Name"] = "Inlognaam"; +App::$strings["Login Password"] = "Wachtwoord:"; +App::$strings["Expires (yyyy-mm-dd)"] = "Geldig t/m (yyyy-mm-dd)"; +App::$strings["Their Settings"] = "Hun instellingen"; +App::$strings["My Settings"] = "Mijn instellingen"; +App::$strings["inherited"] = "geërfd"; +App::$strings["Individual Permissions"] = "Individuele permissies"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen."; +App::$strings["Off"] = "Uit"; +App::$strings["On"] = "Aan"; +App::$strings["Additional Features"] = "Extra functies"; +App::$strings["Connector Settings"] = "Instellingen externe koppelingen"; +App::$strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; +App::$strings["%s - (Experimental)"] = "%s - (experimenteel)"; App::$strings["mobile"] = "mobiel"; -App::$strings["experimental"] = "experimenteel"; -App::$strings["unsupported"] = "Niet ondersteund"; -App::$strings["Yes - with approval"] = "Ja - met goedkeuring"; -App::$strings["My site is not a public server"] = "Mijn \$Projectname-hub is niet openbaar"; -App::$strings["My site has paid access only"] = "Mijn \$Projectname-hub kent alleen betaalde toegang"; -App::$strings["My site has free access only"] = "Mijn \$Projectname-hub kent alleen gratis toegang"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mijn \$Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; -App::$strings["Site"] = "Hub-instellingen"; -App::$strings["Registration"] = "Registratie"; -App::$strings["File upload"] = "Bestand uploaden"; -App::$strings["Policies"] = "Beleid"; -App::$strings["Advanced"] = "Geavanceerd"; -App::$strings["Site name"] = "Naam van deze \$Projectname-hub"; -App::$strings["Banner/Logo"] = "Banner/logo"; -App::$strings["Administrator Information"] = "Informatie over de beheerder van deze hub"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden."; -App::$strings["System language"] = "Standaardtaal"; -App::$strings["System theme"] = "Standaardthema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaardthema voor \$Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen"; -App::$strings["Mobile system theme"] = "Standaardthema voor mobiel"; -App::$strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; -App::$strings["Allow Feeds as Connections"] = "Sta feeds toe als connecties"; -App::$strings["(Heavy system resource usage)"] = "(sterk negatieve invloed op systeembronnen hub)"; -App::$strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend."; -App::$strings["Does this site allow new member registration?"] = "Staat deze hub nieuwe accounts toe?"; -App::$strings["Invitation only"] = "Alleen op uitnodiging"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze \$Projectname-hub aan? Kies wat het meest in de buurt komt."; -App::$strings["Register text"] = "Tekst tijdens registratie"; -App::$strings["Will be displayed prominently on the registration page."] = "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)"; -App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken."; -App::$strings["Preserve site homepage URL"] = "Behoudt de URL van de hub (/)"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)"; -App::$strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; -App::$strings["Allowed friend domains"] = "Toegestane domeinen"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze \$Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; -App::$strings["Allowed email domains"] = "Toegestane e-maildomeinen"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten."; -App::$strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. "; -App::$strings["Verify Email Addresses"] = "E-mailadres verifieren"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)."; -App::$strings["Force publish"] = "Dwing kanaalvermelding af"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld."; -App::$strings["Import Public Streams"] = "Openbare streams importeren"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd."; -App::$strings["Login on Homepage"] = "Inlogformulier op de homepagina"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. "; -App::$strings["Enable context help"] = "Schakel contextuele hulp in"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt."; -App::$strings["Directory Server URL"] = "Server-URL voor de kanalengids"; -App::$strings["Default directory server"] = "Standaardserver voor de kanalengids"; -App::$strings["Proxy user"] = "Gebruikersnaam proxy"; -App::$strings["Proxy URL"] = "Proxy-URL"; -App::$strings["Network timeout"] = "Netwerktimeout"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)"; -App::$strings["Delivery interval"] = "Afleveringsinterval"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers."; -App::$strings["Deliveries per process"] = "Leveringen per serverproces"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5"; -App::$strings["Poll interval"] = "Poll-interval"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken."; -App::$strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd."; -App::$strings["0 for no expiration of imported content"] = "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud."; -App::$strings["Off"] = "Uit"; -App::$strings["On"] = "Aan"; -App::$strings["Lock feature %s"] = " Vergrendel de functie '%s'"; -App::$strings["Manage Additional Features"] = "Beheer - Extra functies"; -App::$strings["No server found"] = "Geen hub gevonden"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "voor kanaal"; -App::$strings["on server"] = "op hub"; -App::$strings["Server"] = "Hubbeheer"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:"; -App::$strings["https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "] = "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd."; -App::$strings["Security"] = "Beveiliging"; -App::$strings["Block public"] = "Openbare toegang blokkeren"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd."; -App::$strings["Set \"Transport Security\" HTTP header"] = "\"Transport Security\" HTTP-header inschakelen"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = " \"Content Security Policy\" HTTP-header inschakelen"; -App::$strings["Allow communications only from these sites"] = "Alleen communicatie met deze hubs toestaan"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan"; -App::$strings["Block communications from these sites"] = "Communicatie met deze hubs blokkeren"; -App::$strings["Allow communications only from these channels"] = "Sta alleen communicatie toe met deze kanalen"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan"; -App::$strings["Block communications from these channels"] = "Communicatie met deze kanalen blokkeren"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan"; -App::$strings["One site per line. By default embedded content is filtered."] = "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd."; -App::$strings["Block embedded HTML from these domains"] = "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren"; -App::$strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; -App::$strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; -App::$strings["Update %s was successfully applied."] = "Update %s was geslaagd."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; -App::$strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; -App::$strings["No failed updates."] = "Geen mislukte updates."; -App::$strings["Failed Updates"] = "Mislukte updates"; -App::$strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; -App::$strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; -App::$strings["Queue Statistics"] = "Wachtrij-statistieken"; -App::$strings["Total Entries"] = "Aantal vermeldingen"; -App::$strings["Priority"] = "Prioriteit"; -App::$strings["Destination URL"] = "Doel-URL"; -App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markeren"; -App::$strings["Empty queue for this hub"] = "Berichtenwachtrij voor deze hub legen"; -App::$strings["Last known contact"] = "Voor het laatst contact"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s account geblokkeerd/gedeblokkeerd", - 1 => "%s accounts geblokkeerd/gedeblokkeerd", -); -App::$strings["%s account deleted"] = array( - 0 => "%s account verwijderd", - 1 => "%s accounts verwijderd", -); -App::$strings["Account not found"] = "Account niet gevonden"; -App::$strings["Account '%s' deleted"] = "Account '%s' verwijderd"; -App::$strings["Account '%s' blocked"] = "Account '%s' geblokkeerd"; -App::$strings["Account '%s' unblocked"] = "Account '%s' gedeblokkeerd"; -App::$strings["Accounts"] = "Accounts"; -App::$strings["select all"] = "alles selecteren"; -App::$strings["Registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; -App::$strings["Request date"] = "Tijd/datum verzoek"; -App::$strings["No registrations."] = "Geen verzoeken."; -App::$strings["Deny"] = "Afkeuren"; -App::$strings["All Channels"] = "Alle kanalen"; -App::$strings["Register date"] = "Geregistreerd"; -App::$strings["Last login"] = "Laatste keer ingelogd"; -App::$strings["Expires"] = "Verloopt"; -App::$strings["Service Class"] = "Abonnementen"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s kanaal gecensureerd/ongecensureerd", - 1 => "%s kanalen gecensureerd/ongecensureerd", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "Scripts toegestaan/niet toegestaan voor %s kanaal", - 1 => "Scripts toegestaan/niet toegestaan voor %s kanalen", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s kanaal verwijderd", - 1 => "%s kanalen verwijderd", -); -App::$strings["Channel not found"] = "Kanaal niet gevonden"; -App::$strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; -App::$strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; -App::$strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; -App::$strings["Channel '%s' code allowed"] = "Scripts toegestaan voor kanaal '%s'"; -App::$strings["Channel '%s' code disallowed"] = "Scripts niet toegestaan voor kanaal '%s'"; -App::$strings["Channels"] = "Kanalen"; -App::$strings["Censor"] = "Censureren"; -App::$strings["Uncensor"] = "Niet censureren"; -App::$strings["Allow Code"] = "Scripts toestaan"; -App::$strings["Disallow Code"] = "Scripts niet toestaan"; -App::$strings["Channel"] = "Kanaal"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["Plugin %s disabled."] = "Plugin %s uitgeschakeld."; -App::$strings["Plugin %s enabled."] = "Plugin %s ingeschakeld"; -App::$strings["Disable"] = "Uitschakelen"; -App::$strings["Enable"] = "Inschakelen"; -App::$strings["Plugins"] = "Plugins"; -App::$strings["Toggle"] = "Omschakelen"; -App::$strings["Settings"] = "Instellingen"; -App::$strings["Author: "] = "Auteur: "; -App::$strings["Maintainer: "] = "Beheerder: "; -App::$strings["Minimum project version: "] = "Minimum versie Hubzilla: "; -App::$strings["Maximum project version: "] = "Maximum versie Hubzilla:"; -App::$strings["Minimum PHP version: "] = "Minimum versie PHP: "; -App::$strings["Requires: "] = "Vereist: "; -App::$strings["Disabled - version incompatibility"] = "Uitgeschakeld - versie is incompatibel"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Vul de openbare Git-URL in van de plugin-repository."; -App::$strings["Plugin repo git URL"] = "Git-URL plugin-repository"; -App::$strings["Custom repo name"] = "Handmatige repository-naam"; -App::$strings["(optional)"] = "(optioneel)"; -App::$strings["Download Plugin Repo"] = "Plugin-repository downloaden"; -App::$strings["Install new repo"] = "Nieuwe repository installeren"; -App::$strings["Install"] = "Installeren"; -App::$strings["Manage Repos"] = "Repositories beheren"; -App::$strings["Installed Plugin Repositories"] = "Toegevoegde plugin-repositories"; -App::$strings["Install a New Plugin Repository"] = "Nieuwe plugin-repository toevoegen"; -App::$strings["Update"] = "Bijwerken"; -App::$strings["Switch branch"] = "Branch veranderen"; -App::$strings["No themes found."] = "Geen thema's gevonden"; -App::$strings["Screenshot"] = "Schermafdruk"; -App::$strings["Themes"] = "Thema's"; -App::$strings["[Experimental]"] = "[Experimenteel]"; -App::$strings["[Unsupported]"] = "[Niet ondersteund]"; -App::$strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; -App::$strings["Logs"] = "Logboeken"; -App::$strings["Clear"] = "Leegmaken"; -App::$strings["Debugging"] = "Debuggen"; -App::$strings["Log file"] = "Logbestand"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je \$Projectname-installatie."; -App::$strings["Log level"] = "Logniveau"; -App::$strings["New Profile Field"] = "Nieuw profielveld"; -App::$strings["Field nickname"] = "Bijnaam voor veld"; -App::$strings["System name of field"] = "Systeemnaam voor veld"; -App::$strings["Input type"] = "Invoertype"; -App::$strings["Field Name"] = "Veldnaam"; -App::$strings["Label on profile pages"] = "Tekstlabel voor op profielpagina's"; -App::$strings["Help text"] = "Helptekst"; -App::$strings["Additional info (optional)"] = "Extra informatie (optioneel)"; -App::$strings["Field definition not found"] = "Velddefinitie niet gevonden"; -App::$strings["Edit Profile Field"] = "Profielveld bewerken"; -App::$strings["Profile Fields"] = "Profielvelden"; -App::$strings["Basic Profile Fields"] = "Standaard profielvelden"; -App::$strings["Advanced Profile Fields"] = "Geavanceerde profielvelden"; -App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaard velden)"; -App::$strings["All available fields"] = "Alle beschikbare velden"; -App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden"; -App::$strings["Create Custom Field"] = "Extra velden aanmaken"; -App::$strings["App installed."] = "App geïnstalleerd"; -App::$strings["Malformed app."] = "Misvormde app."; -App::$strings["Embed code"] = "Insluitcode"; -App::$strings["Edit App"] = "App bewerken"; -App::$strings["Create App"] = "App maken"; -App::$strings["Name of app"] = "Naam van app"; -App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; -App::$strings["Photo icon URL"] = "URL van pictogram"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; -App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Version ID"] = "Versie-ID"; -App::$strings["Price of app"] = "Prijs van de app"; -App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; -App::$strings["Select a bookmark folder"] = "Kies een bladwijzermap"; -App::$strings["Save Bookmark"] = "Bladwijzer opslaan"; -App::$strings["URL of bookmark"] = "URL van bladwijzer"; -App::$strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; -App::$strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; -App::$strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze \$Projectname-hub."; -App::$strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; -App::$strings["Registration on this hub is disabled."] = "Registreren van nieuwe accounts is op deze hub uitgeschakeld."; -App::$strings["Registration on this hub is by approval only."] = "Registraties op deze hub moeten eerst worden goedgekeurd."; -App::$strings["Register at another affiliated hub."] = "Registreer op een andere hub."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze \$Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; -App::$strings["Terms of Service"] = "Gebruiksvoorwaarden"; -App::$strings["I accept the %s for this website"] = "Ik accepteer de %s van deze \$Projectname-hub"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ik ben 13 jaar of ouder en accepteer de %s van deze \$Projectname-hub"; -App::$strings["Your email address"] = "Jouw e-mailadres"; -App::$strings["Choose a password"] = "Geef een wachtwoord op"; -App::$strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; -App::$strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; -App::$strings["no"] = "Nee"; -App::$strings["yes"] = "Ja"; -App::$strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; -App::$strings["Register"] = "Registreren"; -App::$strings["Proceed to create your first channel"] = "Volgende stap: aanmaken van jouw eerste kanaal"; -App::$strings["Please login."] = "Inloggen."; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; -App::$strings["Remove This Account"] = "Verwijder dit account"; -App::$strings["WARNING: "] = "WAARSCHUWING: "; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Dit account en al zijn kanalen worden volledig uit het \$Projectname-netwerk verwijderd."; -App::$strings["This action is permanent and can not be undone!"] = "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!"; -App::$strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het \$Projectname-netwerk verwijderen"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het \$Projectname-netwerk verwijderd"; -App::$strings["Remove Account"] = "Account verwijderen"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; -App::$strings["Remove This Channel"] = "Verwijder dit kanaal"; -App::$strings["This channel will be completely removed from the network. "] = "Dit kanaal wordt volledig uit het \$Projectname-netwerk verwijderd."; -App::$strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd"; -App::$strings["Remove Channel"] = "Kanaal verwijderen"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; -App::$strings["The error message was:"] = "Het foutbericht was:"; -App::$strings["Authentication failed."] = "Authenticatie mislukt."; -App::$strings["Remote Authentication"] = "Authenticatie op afstand"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; -App::$strings["Authenticate"] = "Authenticeren"; -App::$strings["Items tagged with: %s"] = "Items getagd met %s"; -App::$strings["Search results for: %s"] = "Zoekresultaten voor %s"; -App::$strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; -App::$strings["Name is required"] = "Naam is vereist"; -App::$strings["Key and Secret are required"] = "Key en secret zijn vereist"; -App::$strings["Not valid email."] = "Geen geldig e-mailadres."; -App::$strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; -App::$strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; -App::$strings["Password verification failed."] = "Wachtwoordverificatie mislukt"; -App::$strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; -App::$strings["Password changed."] = "Wachtwoord veranderd."; -App::$strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; -App::$strings["Settings updated."] = "Instellingen bijgewerkt."; -App::$strings["Add application"] = "Applicatie toevoegen"; -App::$strings["Name of application"] = "Naam van applicatie"; -App::$strings["Consumer Key"] = "Consumer key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; -App::$strings["Consumer Secret"] = "Consumer secret"; -App::$strings["Redirect"] = "Redirect/doorverwijzing"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; -App::$strings["Icon url"] = "Pictogram-URL"; -App::$strings["Optional"] = "Optioneel"; -App::$strings["Application not found."] = "Applicatie niet gevonden."; -App::$strings["Connected Apps"] = "Verbonden applicaties"; -App::$strings["Client key starts with"] = "Client key begint met"; -App::$strings["No name"] = "Geen naam"; -App::$strings["Remove authorization"] = "Autorisatie verwijderen"; -App::$strings["No feature settings configured"] = "Geen plugin-instellingen aanwezig"; -App::$strings["Feature/Addon Settings"] = "Plugin-instellingen"; -App::$strings["Account Settings"] = "Account-instellingen"; -App::$strings["Current Password"] = "Huidig wachtwoord"; -App::$strings["Enter New Password"] = "Nieuw wachtwoord invoeren"; -App::$strings["Confirm New Password"] = "Nieuw wachtwoord bevestigen"; -App::$strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; -App::$strings["Email Address:"] = "E-mailadres:"; -App::$strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen"; -App::$strings["Additional Features"] = "Extra functies"; -App::$strings["Connector Settings"] = "Instellingen externe koppelingen"; -App::$strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; -App::$strings["%s - (Experimental)"] = "%s - (experimenteel)"; -App::$strings["Display Settings"] = "Weergave-instellingen"; -App::$strings["Theme Settings"] = "Thema-instellingen"; -App::$strings["Custom Theme Settings"] = "Handmatige thema-instellingen"; -App::$strings["Content Settings"] = "Inhoudsinstellingen"; -App::$strings["Display Theme:"] = "Gebruik thema:"; -App::$strings["Mobile Theme:"] = "Mobiel thema:"; -App::$strings["Preload images before rendering the page"] = "Afbeeldingen laden voordat de pagina wordt weergegeven"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven"; -App::$strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; -App::$strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; -App::$strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; -App::$strings["Show emoticons (smilies) as images"] = "Toon emoticons (smilies) als afbeeldingen"; -App::$strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; -App::$strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; -App::$strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; -App::$strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; -App::$strings["Use blog/list mode on grid page"] = "Gebruik blog/lijst-modus op gridpagina"; -App::$strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; -App::$strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; -App::$strings["Grid page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op gridpagina (in pixels)"; -App::$strings["Nobody except yourself"] = "Niemand, behalve jezelf"; -App::$strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; -App::$strings["Approved connections"] = "Geaccepteerde connecties"; -App::$strings["Any connections"] = "Alle connecties"; -App::$strings["Anybody on this website"] = "Iedereen op deze hub"; -App::$strings["Anybody in this network"] = "Iedereen in dit netwerk"; -App::$strings["Anybody authenticated"] = "Geauthenticeerd"; -App::$strings["Anybody on the internet"] = "Iedereen op het internet"; -App::$strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; -App::$strings["Your channel address is"] = "Jouw kanaaladres is"; -App::$strings["Channel Settings"] = "Kanaal-instellingen"; -App::$strings["Basic Settings"] = "Basis-instellingen"; -App::$strings["Full Name:"] = "Volledige naam:"; -App::$strings["Your Timezone:"] = "Jouw tijdzone:"; -App::$strings["Default Post Location:"] = "Standaardlocatie bericht:"; -App::$strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; -App::$strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; -App::$strings["Adult Content"] = "Inhoud voor volwassenen"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; -App::$strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; -App::$strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; -App::$strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op \$Projectname aanwezig bent"; -App::$strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)"; -App::$strings["Private - default private, never open or public"] = "Privé (standaard privé en nooit openbaar)"; -App::$strings["Blocked - default blocked to/from everybody"] = "Geblokkeerd (standaard geblokkeerd naar/van iedereen)"; -App::$strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"; -App::$strings["Advanced Privacy Settings"] = "Geavanceerde privacy-instellingen"; -App::$strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"; -App::$strings["0 or blank to use the website limit."] = "0 of leeg om het standaard aantal dagen van deze hub te gebruiken."; -App::$strings["This website expires after %d days."] = "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen."; -App::$strings["This website does not expire imported content."] = "Deze hub laat de inhoud van andere kanalen niet verlopen."; -App::$strings["The website limit takes precedence if lower than your limit."] = "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang."; -App::$strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; -App::$strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; -App::$strings["Default Post and Publish Permissions"] = "Standaard permissies voor nieuwe berichten en publicaties"; -App::$strings["Use my default audience setting for the type of object published"] = "Gebruik mijn standaard privacy-instelling voor dit type publicatie"; -App::$strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; -App::$strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; -App::$strings["Notification Settings"] = "Notificatie-instellingen"; -App::$strings["By default post a status message when:"] = "Plaats automatisch een bericht wanneer:"; -App::$strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; -App::$strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; -App::$strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; -App::$strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; -App::$strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; -App::$strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; -App::$strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; -App::$strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; -App::$strings["You receive a private message"] = "Je een privé-bericht ontvangt"; -App::$strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; -App::$strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; -App::$strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; -App::$strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; -App::$strings["Unseen grid activity"] = "Niet bekeken grid-activiteit"; -App::$strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; -App::$strings["Unseen private messages"] = "Niet bekeken privéberichten"; -App::$strings["Recommended"] = "Aanbevolen"; -App::$strings["Upcoming events"] = "Aankomende gebeurtenissen"; -App::$strings["Events today"] = "Gebeurtenissen van vandaag"; -App::$strings["Upcoming birthdays"] = "Aankomende verjaardagen"; -App::$strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; -App::$strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; -App::$strings["System info messages"] = "Systeemmededelingen"; -App::$strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; -App::$strings["New connections"] = "Nieuwe connecties"; -App::$strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"; -App::$strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; -App::$strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; -App::$strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; -App::$strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; -App::$strings["Miscellaneous Settings"] = "Diverse instellingen"; -App::$strings["Default photo upload folder"] = "Standaard fotoalbum voor uploads"; -App::$strings["%Y - current year, %m - current month"] = "%Y - dit jaar, %m - deze maand"; -App::$strings["Default file upload folder"] = "Standaard bestandsmap voor uploads"; -App::$strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; -App::$strings["Remove this channel."] = "Verwijder dit kanaal."; -App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-service voor Firefox Share"; -App::$strings["Start calendar week on monday"] = "Begin in de agenda de week op maandag"; -App::$strings["\$Projectname Server - Setup"] = "\$Projectname Hub - Setup"; -App::$strings["Could not connect to database."] = "Could not connect to database."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; -App::$strings["Could not create table."] = "Could not create table."; -App::$strings["Your site database has been installed."] = "Your hub database has been installed."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; -App::$strings["System check"] = "System check"; -App::$strings["Check again"] = "Check again"; -App::$strings["Database connection"] = "Database connection"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "In order to install \$Projectname we need to know how to connect to your database."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or server administrator if you have questions about these settings."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; -App::$strings["Database Server Name"] = "Database Server Name"; -App::$strings["Default is 127.0.0.1"] = "Default is 127.0.0.1"; -App::$strings["Database Port"] = "Database Port"; -App::$strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; -App::$strings["Database Login Name"] = "Database Login Name"; -App::$strings["Database Login Password"] = "Database Login Password"; -App::$strings["Database Name"] = "Database Name"; -App::$strings["Database Type"] = "Database Type"; -App::$strings["Site administrator email address"] = "Hub administrator email address"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; -App::$strings["Website URL"] = "Hub URL"; -App::$strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; -App::$strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; -App::$strings["Site settings"] = "Hub settings"; -App::$strings["Enable \$Projectname advanced features?"] = "Enable \$Projectname advanced features?"; -App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Some advanced features, while useful - may be best suited for technically proficient audiences"; -App::$strings["PHP version 5.5 or greater is required."] = "PHP version 5.5 or greater is required."; -App::$strings["PHP version"] = "PHP version"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."; -App::$strings["PHP executable path"] = "PHP executable path"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; -App::$strings["Command line PHP"] = "Command line PHP"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; -App::$strings["This is required for message delivery to work."] = "This is required for message delivery to work."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."; -App::$strings["You can adjust these settings in the servers php.ini."] = "You can adjust these settings in the servers php.ini."; -App::$strings["PHP upload limits"] = "PHP upload limits"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Generate encryption keys"; -App::$strings["libCurl PHP module"] = "libCurl PHP module"; -App::$strings["GD graphics PHP module"] = "GD graphics PHP module"; -App::$strings["OpenSSL PHP module"] = "OpenSSL PHP module"; -App::$strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; -App::$strings["mb_string PHP module"] = "mb_string PHP module"; -App::$strings["mcrypt PHP module"] = "mcrypt PHP module"; -App::$strings["xml PHP module"] = "xml PHP module"; -App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; -App::$strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: xml PHP module required for DAV but not installed."; -App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."; -App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php is writable"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; -App::$strings["%s is writable"] = "%s is writable"; -App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; -App::$strings["store is writable"] = "store is writable"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; -App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."; -App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; -App::$strings["SSL certificate validation"] = "SSL certificate validation"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; -App::$strings["Url rewrite is working"] = "Url rewrite is working"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."; -App::$strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; -App::$strings["

    What next

    "] = "

    What next

    "; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; -App::$strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; -App::$strings["NEW"] = "NIEUW"; -App::$strings["Remove all files"] = "Verwijder alle bestanden"; -App::$strings["Remove this file"] = "Verwijder dit bestand"; -App::$strings["Version %s"] = "Versie %s"; -App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; -App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; -App::$strings["Tag: "] = "Tag: "; -App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; -App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; -App::$strings["Running at web location"] = "Draaiend op weblocatie"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; -App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; -App::$strings["\$projectname issues"] = "\$projectname-issues"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; -App::$strings["Site Administrators"] = "Hubbeheerders: "; -App::$strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; -App::$strings["Source created."] = "Bron aangemaakt."; -App::$strings["Source updated."] = "Bron aangemaakt."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Kanaalbronnen"; -App::$strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; -App::$strings["New Source"] = "Nieuwe bron"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; -App::$strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; -App::$strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; -App::$strings["Channel Name"] = "Kanaalnaam"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)"; -App::$strings["Source not found."] = "Bron niet gevonden"; -App::$strings["Edit Source"] = "Bron bewerken"; -App::$strings["Delete Source"] = "Bron verwijderen"; -App::$strings["Source removed"] = "Bron verwijderd"; -App::$strings["Unable to remove source."] = "Verwijderen bron mislukt."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s niet meer"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; -App::$strings["Ignore/Hide"] = "Negeren/Verbergen"; -App::$strings["post"] = "bericht"; -App::$strings["comment"] = "reactie"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; -App::$strings["Tag removed"] = "Tag verwijderd"; -App::$strings["Remove Item Tag"] = "Verwijder item-tag"; -App::$strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; -App::$strings["Thing updated"] = "Ding bijgewerkt"; -App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; -App::$strings["Thing added"] = "Ding toegevoegd"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Ding weergeven"; -App::$strings["item not found."] = "Item niet gevonden"; -App::$strings["Edit Thing"] = "Ding bewerken"; -App::$strings["Select a profile"] = "Kies een profiel"; -App::$strings["Post an activity"] = "Plaats een bericht"; -App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; -App::$strings["Name of thing e.g. something"] = "Naam van ding"; -App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; -App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; -App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; -App::$strings["Export Channel"] = "Kanaal exporteren"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; -App::$strings["Export Content"] = "Inhoud exporteren"; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; -App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; -App::$strings["No connections."] = "Geen connecties."; -App::$strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; -App::$strings["View Connections"] = "Connecties weergeven"; -App::$strings["Source of Item"] = "Bron van item"; -App::$strings["Webpages"] = "Webpagina's"; -App::$strings["Actions"] = "Acties"; -App::$strings["Page Link"] = "Paginalink"; -App::$strings["Page Title"] = "Paginatitel"; -App::$strings["Xchan Lookup"] = "Xchan opzoeken"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; -App::$strings["Site Admin"] = "Hubbeheerder"; -App::$strings["Bug Report"] = "Bugrapport"; -App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; -App::$strings["My Chatrooms"] = "Mijn chatkanalen"; -App::$strings["Firefox Share"] = "Firefox Share"; -App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; -App::$strings["Suggest Channels"] = "Kanalen voorstellen"; -App::$strings["Login"] = "Inloggen"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Jouw kanaal"; -App::$strings["Events"] = "Agenda"; -App::$strings["Directory"] = "Kanalengids"; -App::$strings["Mail"] = "Privéberichten"; -App::$strings["Chat"] = "Chatten"; -App::$strings["Probe"] = "Onderzoeken"; -App::$strings["Suggest"] = "Voorstellen"; -App::$strings["Random Channel"] = "Willekeurig kanaal"; -App::$strings["Invite"] = "Uitnodigen "; -App::$strings["Features"] = "Extra functies"; -App::$strings["Post"] = "Bericht"; -App::$strings["Purchase"] = "Aanschaffen"; -App::$strings["Missing room name"] = "Naam chatkanaal ontbreekt"; -App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; -App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; -App::$strings["Room not found."] = "Chatkanaal niet gevonden"; -App::$strings["Room is full"] = "Chatkanaal is vol"; -App::$strings["\$Projectname Notification"] = "\$Projectname-notificatie"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Bedankt,"; -App::$strings["%s Administrator"] = "Beheerder %s"; -App::$strings["%s "] = "%s "; -App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; -App::$strings["a private message"] = "een privébericht"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notificatie] %s heeft je genoemd"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notificatie] %1\$s heeft je aangestoten"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notificatie] %s heeft jouw bericht getagd"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notificatie] Connectieverzoek ontvangen"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; -App::$strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; -App::$strings["Name:"] = "Naam:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; -App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; -App::$strings["created a new post"] = "maakte een nieuw bericht aan"; -App::$strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; -App::$strings["Private Message"] = "Niet voor iedereen zichtbaar"; -App::$strings["Select"] = "Kies"; -App::$strings["Save to Folder"] = "In map opslaan"; -App::$strings["I will attend"] = "Aanwezig"; -App::$strings["I will not attend"] = "Niet aanwezig"; -App::$strings["I might attend"] = "Mogelijk aanwezig"; -App::$strings["I agree"] = "Eens"; -App::$strings["I disagree"] = "Oneens"; -App::$strings["I abstain"] = "Onthouding"; -App::$strings["Add Star"] = "Ster toevoegen"; -App::$strings["Remove Star"] = "Ster verwijderen"; -App::$strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; -App::$strings["starred"] = "met ster"; -App::$strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; -App::$strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; -App::$strings["Add Tag"] = "Tag toevoegen"; -App::$strings["like"] = "vind dit leuk"; -App::$strings["dislike"] = "vind dit niet leuk"; -App::$strings["Share This"] = "Delen"; -App::$strings["share"] = "delen"; -App::$strings["Delivery Report"] = "Afleveringsrapport"; -App::$strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties weergeven", -); -App::$strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; -App::$strings["to"] = "aan"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; -App::$strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; -App::$strings["from %s"] = "van %s"; -App::$strings["last edited: %s"] = "laatst bewerkt: %s"; -App::$strings["Expires: %s"] = "Verloopt: %s"; -App::$strings["Save Bookmarks"] = "Bladwijzers opslaan"; -App::$strings["Add to Calendar"] = "Aan agenda toevoegen"; -App::$strings["Mark all seen"] = "Markeer alles als bekeken"; -App::$strings["[+] show all"] = "[+] alle"; -App::$strings["Bold"] = "Vet"; -App::$strings["Italic"] = "Cursief"; -App::$strings["Underline"] = "Onderstrepen"; -App::$strings["Quote"] = "Citeren"; -App::$strings["Code"] = "Broncode"; -App::$strings["Image"] = "Afbeelding"; -App::$strings["Insert Link"] = "Link invoegen"; -App::$strings["Video"] = "Video"; -App::$strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; -App::$strings["Categories"] = "Categorieën"; -App::$strings["Tags"] = "Tags"; -App::$strings["Keywords"] = "Trefwoorden"; -App::$strings["have"] = "heb"; -App::$strings["has"] = "heeft"; -App::$strings["want"] = "wil"; -App::$strings["wants"] = "wil"; -App::$strings["likes"] = "vindt dit leuk"; -App::$strings["dislikes"] = "vindt dit niet leuk"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Start:"; -App::$strings["Finishes:"] = "Einde:"; -App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -App::$strings["Not specified"] = "Niet aangegeven"; -App::$strings["Needs Action"] = "Actie vereist"; -App::$strings["Completed"] = "Voltooid"; -App::$strings["In Process"] = "In behandeling"; -App::$strings["Cancelled"] = "Geannuleerd"; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; -App::$strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; -App::$strings["(Unknown)"] = "(Onbekend)"; -App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; -App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; -App::$strings["Privacy group: %s"] = "Privacygroep: %s"; -App::$strings["Connection not found."] = "Connectie niet gevonden."; -App::$strings["profile photo"] = "profielfoto"; -App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; -App::$strings["[no subject]"] = "[geen onderwerp]"; -App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; -App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; -App::$strings["prev"] = "vorige"; -App::$strings["first"] = "eerste"; -App::$strings["last"] = "laatste"; -App::$strings["next"] = "volgende"; -App::$strings["older"] = "ouder"; -App::$strings["newer"] = "nieuwer"; -App::$strings["No connections"] = "Geen connecties"; -App::$strings["View all %s connections"] = "Toon alle %s connecties"; -App::$strings["poke"] = "aanstoten"; -App::$strings["poked"] = "aangestoten"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "gepingd"; -App::$strings["prod"] = "por"; -App::$strings["prodded"] = "gepord"; -App::$strings["slap"] = "slaan"; -App::$strings["slapped"] = "sloeg"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "gefingerd"; -App::$strings["rebuff"] = "afpoeieren"; -App::$strings["rebuffed"] = "afgepoeierd"; -App::$strings["happy"] = "gelukkig"; -App::$strings["sad"] = "bedroefd"; -App::$strings["mellow"] = "mellow"; -App::$strings["tired"] = "moe"; -App::$strings["perky"] = "parmantig"; -App::$strings["angry"] = "boos"; -App::$strings["stupefied"] = "verbijsterd"; -App::$strings["puzzled"] = "verward"; -App::$strings["interested"] = "geïnteresseerd"; -App::$strings["bitter"] = "verbitterd"; -App::$strings["cheerful"] = "vrolijk"; -App::$strings["alive"] = "levendig"; -App::$strings["annoyed"] = "geërgerd"; -App::$strings["anxious"] = "bezorgd"; -App::$strings["cranky"] = "humeurig"; -App::$strings["disturbed"] = "verontrust"; -App::$strings["frustrated"] = "gefrustreerd "; -App::$strings["depressed"] = "gedeprimeerd"; -App::$strings["motivated"] = "gemotiveerd"; -App::$strings["relaxed"] = "ontspannen"; -App::$strings["surprised"] = "verrast"; -App::$strings["Monday"] = "maandag"; -App::$strings["Tuesday"] = "dinsdag"; -App::$strings["Wednesday"] = "woensdag"; -App::$strings["Thursday"] = "donderdag"; -App::$strings["Friday"] = "vrijdag"; -App::$strings["Saturday"] = "zaterdag"; -App::$strings["Sunday"] = "zondag"; -App::$strings["January"] = "januari"; -App::$strings["February"] = "februari"; -App::$strings["March"] = "maart"; -App::$strings["April"] = "april"; -App::$strings["May"] = "mei"; -App::$strings["June"] = "juni"; -App::$strings["July"] = "juli"; -App::$strings["August"] = "augustus"; -App::$strings["September"] = "september"; -App::$strings["October"] = "oktober"; -App::$strings["November"] = "november"; -App::$strings["December"] = "december"; -App::$strings["Unknown Attachment"] = "Onbekende bijlage"; -App::$strings["unknown"] = "onbekend"; -App::$strings["remove category"] = "categorie verwijderen"; -App::$strings["remove from file"] = "uit map verwijderen"; -App::$strings["default"] = "standaard"; -App::$strings["Page layout"] = "Pagina-lay-out"; -App::$strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs"; -App::$strings["Page content type"] = "Opmaaktype pagina"; -App::$strings["Select an alternate language"] = "Kies een andere taal"; -App::$strings["activity"] = "activiteit"; -App::$strings["Design Tools"] = "Ontwerp-hulpmiddelen"; -App::$strings["Pages"] = "Pagina's"; -App::$strings["System"] = "Systeem"; -App::$strings["New App"] = "Nieuwe app"; -App::$strings["Suggestions"] = "Voorgestelde kanalen"; -App::$strings["See more..."] = "Meer..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; -App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; -App::$strings["Enter channel address"] = "Vul kanaaladres in"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; -App::$strings["Notes"] = "Aantekeningen"; -App::$strings["Remove term"] = "Verwijder zoekterm"; -App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -App::$strings["add"] = "toevoegen"; -App::$strings["Saved Folders"] = "Bewaarde mappen"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archieven"; -App::$strings["Refresh"] = "Vernieuwen"; -App::$strings["Account settings"] = "Account"; -App::$strings["Channel settings"] = "Kanaal"; -App::$strings["Additional features"] = "Extra functies"; -App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; -App::$strings["Display settings"] = "Weergave"; -App::$strings["Manage locations"] = "Locaties beheren"; -App::$strings["Export channel"] = "Kanaal exporteren"; -App::$strings["Connected apps"] = "Verbonden applicaties"; -App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; -App::$strings["Private Mail Menu"] = "Privéberichten"; -App::$strings["Combined View"] = "Gecombineerd postvak"; -App::$strings["Inbox"] = "Postvak IN"; -App::$strings["Outbox"] = "Postvak UIT"; -App::$strings["New Message"] = "Nieuw bericht"; -App::$strings["Conversations"] = "Conversaties"; -App::$strings["Received Messages"] = "Ontvangen berichten"; -App::$strings["Sent Messages"] = "Verzonden berichten"; -App::$strings["No messages."] = "Geen berichten"; -App::$strings["Delete conversation"] = "Verwijder conversatie"; -App::$strings["Events Menu"] = "Agenda-menu"; -App::$strings["Day View"] = "Dag tonen"; -App::$strings["Week View"] = "Week tonen"; -App::$strings["Month View"] = "Maand tonen"; -App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; -App::$strings["Export Calendar"] = "Exporteren"; -App::$strings["Import Calendar"] = "Importeren"; -App::$strings["Chatrooms"] = "Chatkanalen"; -App::$strings["Overview"] = "Overzicht"; -App::$strings["Chat Members"] = "Chatleden"; -App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; -App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -App::$strings["photo/image"] = "foto/afbeelding"; -App::$strings["Click to show more"] = "Klik voor meer"; -App::$strings["Rating Tools"] = "Beoordelingen"; -App::$strings["Rate Me"] = "Beoordeel mij"; -App::$strings["View Ratings"] = "Bekijk beoordelingen"; -App::$strings["Forums"] = "Forums"; -App::$strings["Tasks"] = "Taken"; -App::$strings["Documentation"] = "Documentatie"; -App::$strings["Project/Site Information"] = "Project- en hub-informatie"; -App::$strings["For Members"] = "Voor leden"; -App::$strings["For Administrators"] = "Voor beheerders"; -App::$strings["For Developers"] = "Voor ontwikkelaars"; -App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; -App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; -App::$strings["DB updates"] = "Database-updates"; -App::$strings["Admin"] = "Beheer"; -App::$strings["Plugin Features"] = "Plugin-opties"; -App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; -App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; -App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; -App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; -App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; -App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; -App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; -App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -App::$strings["Public Timeline"] = "Openbare tijdlijn"; -App::$strings["Image/photo"] = "Afbeelding/foto"; -App::$strings["Encrypted content"] = "Versleutelde inhoud"; -App::$strings["Install %s element: "] = "Installeer %s-element: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; -App::$strings["$1 wrote:"] = "$1 schreef:"; -App::$strings["Directory Options"] = "Opties kanalengids"; -App::$strings["Safe Mode"] = "Veilig zoeken"; -App::$strings["Public Forums Only"] = "Alleen openbare forums"; -App::$strings["This Website Only"] = "Alleen deze hub"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; -App::$strings["Logout"] = "Uitloggen"; -App::$strings["End this session"] = "Beëindig deze sessie"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Jouw kanaal"; -App::$strings["Your profile page"] = "Jouw profielpagina"; -App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -App::$strings["Edit Profile"] = "Profiel bewerken"; -App::$strings["Edit your profile"] = "Jouw profiel bewerken"; -App::$strings["Your photos"] = "Jouw foto's"; -App::$strings["Your files"] = "Jouw bestanden"; -App::$strings["Your chatrooms"] = "Jouw chatkanalen"; -App::$strings["Bookmarks"] = "Bladwijzers"; -App::$strings["Your bookmarks"] = "Jouw bladwijzers"; -App::$strings["Your webpages"] = "Jouw webpagina's"; -App::$strings["Sign in"] = "Inloggen"; -App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; -App::$strings["Remote authentication"] = "Authenticatie op afstand"; -App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Maak een account aan"; -App::$strings["Help and documentation"] = "Hulp en documentatie"; -App::$strings["Applications, utilities, links, games"] = "Apps"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; -App::$strings["Channel Directory"] = "Kanalengids"; -App::$strings["Your grid"] = "Jouw grid"; -App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; -App::$strings["Channel home"] = "Jouw kanaal"; -App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; -App::$strings["Notices"] = "Notificaties"; -App::$strings["Notifications"] = "Notificaties"; -App::$strings["See all notifications"] = "Alle notificaties weergeven"; -App::$strings["Private mail"] = "Privéberichten"; -App::$strings["See all private messages"] = "Alle privéberichten weergeven"; -App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; -App::$strings["Event Calendar"] = "Agenda"; -App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; -App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; -App::$strings["Manage Your Channels"] = "Beheer je kanalen"; -App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -App::$strings["Loading..."] = "Aan het laden..."; -App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; -App::$strings["Please wait..."] = "Wachten aub..."; -App::$strings["New window"] = "Nieuw venster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; -App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; -App::$strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", +App::$strings["Display Settings"] = "Weergave-instellingen"; +App::$strings["Theme Settings"] = "Thema-instellingen"; +App::$strings["Custom Theme Settings"] = "Handmatige thema-instellingen"; +App::$strings["Content Settings"] = "Inhoudsinstellingen"; +App::$strings["Display Theme:"] = "Gebruik thema:"; +App::$strings["Select scheme"] = "Kies schema van thema"; +App::$strings["Mobile Theme:"] = "Mobiel thema:"; +App::$strings["Preload images before rendering the page"] = "Afbeeldingen laden voordat de pagina wordt weergegeven"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven"; +App::$strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; +App::$strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; +App::$strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; +App::$strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; +App::$strings["Show emoticons (smilies) as images"] = "Toon emoticons (smilies) als afbeeldingen"; +App::$strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; +App::$strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; +App::$strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; +App::$strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; +App::$strings["Use blog/list mode on grid page"] = "Gebruik blog/lijst-modus op gridpagina"; +App::$strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; +App::$strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; +App::$strings["Grid page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op gridpagina (in pixels)"; +App::$strings["Nobody except yourself"] = "Niemand, behalve jezelf"; +App::$strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; +App::$strings["Approved connections"] = "Geaccepteerde connecties"; +App::$strings["Any connections"] = "Alle connecties"; +App::$strings["Anybody on this website"] = "Iedereen op deze hub"; +App::$strings["Anybody in this network"] = "Iedereen in dit netwerk"; +App::$strings["Anybody authenticated"] = "Geauthenticeerd"; +App::$strings["Anybody on the internet"] = "Iedereen op het internet"; +App::$strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; +App::$strings["Your channel address is"] = "Jouw kanaaladres is"; +App::$strings["Channel Settings"] = "Kanaal-instellingen"; +App::$strings["Basic Settings"] = "Basis-instellingen"; +App::$strings["Full Name:"] = "Volledige naam:"; +App::$strings["Your Timezone:"] = "Jouw tijdzone:"; +App::$strings["Default Post Location:"] = "Standaardlocatie bericht:"; +App::$strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; +App::$strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; +App::$strings["Adult Content"] = "Inhoud voor volwassenen"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; +App::$strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; +App::$strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; +App::$strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op \$Projectname aanwezig bent"; +App::$strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)"; +App::$strings["Private - default private, never open or public"] = "Privé (standaard privé en nooit openbaar)"; +App::$strings["Blocked - default blocked to/from everybody"] = "Geblokkeerd (standaard geblokkeerd naar/van iedereen)"; +App::$strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"; +App::$strings["Advanced Privacy Settings"] = "Geavanceerde privacy-instellingen"; +App::$strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"; +App::$strings["0 or blank to use the website limit."] = "0 of leeg om het standaard aantal dagen van deze hub te gebruiken."; +App::$strings["This website expires after %d days."] = "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen."; +App::$strings["This website does not expire imported content."] = "Deze hub laat de inhoud van andere kanalen niet verlopen."; +App::$strings["The website limit takes precedence if lower than your limit."] = "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang."; +App::$strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; +App::$strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; +App::$strings["Default Post and Publish Permissions"] = "Standaard permissies voor nieuwe berichten en publicaties"; +App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +App::$strings["Use my default audience setting for the type of object published"] = "Gebruik mijn standaard privacy-instelling voor dit type publicatie"; +App::$strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; +App::$strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; +App::$strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; +App::$strings["Notification Settings"] = "Notificatie-instellingen"; +App::$strings["By default post a status message when:"] = "Plaats automatisch een bericht wanneer:"; +App::$strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; +App::$strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; +App::$strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; +App::$strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; +App::$strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; +App::$strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; +App::$strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; +App::$strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; +App::$strings["You receive a private message"] = "Je een privé-bericht ontvangt"; +App::$strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; +App::$strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; +App::$strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; +App::$strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; +App::$strings["Unseen grid activity"] = "Niet bekeken grid-activiteit"; +App::$strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; +App::$strings["Unseen private messages"] = "Niet bekeken privéberichten"; +App::$strings["Recommended"] = "Aanbevolen"; +App::$strings["Upcoming events"] = "Aankomende gebeurtenissen"; +App::$strings["Events today"] = "Gebeurtenissen van vandaag"; +App::$strings["Upcoming birthdays"] = "Aankomende verjaardagen"; +App::$strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; +App::$strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; +App::$strings["System info messages"] = "Systeemmededelingen"; +App::$strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; +App::$strings["New connections"] = "Nieuwe connecties"; +App::$strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; +App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"; +App::$strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; +App::$strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; +App::$strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; +App::$strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; +App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; +App::$strings["Miscellaneous Settings"] = "Diverse instellingen"; +App::$strings["Default photo upload folder"] = "Standaard fotoalbum voor uploads"; +App::$strings["%Y - current year, %m - current month"] = "%Y - dit jaar, %m - deze maand"; +App::$strings["Default file upload folder"] = "Standaard bestandsmap voor uploads"; +App::$strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; +App::$strings["Remove Channel"] = "Kanaal verwijderen"; +App::$strings["Remove this channel."] = "Verwijder dit kanaal."; +App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-service voor Firefox Share"; +App::$strings["Start calendar week on monday"] = "Begin in de agenda de week op maandag"; +App::$strings["network"] = "netwerk"; +App::$strings["RSS"] = "RSS"; +App::$strings["Privacy group created."] = "Privacygroep aangemaakt"; +App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken"; +App::$strings["Privacy group not found."] = "Privacygroep niet gevonden"; +App::$strings["Privacy group updated."] = "Privacygroep bijgewerkt"; +App::$strings["Create a group of channels."] = "Privacygroep met kanalen aanmaken"; +App::$strings["Privacy group name: "] = "Naam privacygroep: "; +App::$strings["Members are visible to other channels"] = "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen"; +App::$strings["Privacy group removed."] = "Privacygroep verwijderd."; +App::$strings["Unable to remove privacy group."] = "Verwijderen privacygroep mislukt"; +App::$strings["Privacy group editor"] = "Privacygroep bewerken"; +App::$strings["Members"] = "Kanalen"; +App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; +App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; +App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; +App::$strings["Profile Photos"] = "Profielfoto's"; +App::$strings["Album not found."] = "Album niet gevonden."; +App::$strings["Delete Album"] = "Verwijder album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder."; +App::$strings["Delete Photo"] = "Verwijder foto"; +App::$strings["No photos selected"] = "Geen foto's geselecteerd"; +App::$strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; +App::$strings["Upload Photos"] = "Foto's uploaden"; +App::$strings["Enter an album name"] = "Vul een albumnaam in"; +App::$strings["or select an existing album (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +App::$strings["Create a status post for this upload"] = "Plaats een bericht voor deze upload."; +App::$strings["Caption (optional):"] = "Bijschrift (optioneel):"; +App::$strings["Description (optional):"] = "Omschrijving (optioneel):"; +App::$strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; +App::$strings["Contact Photos"] = "Connectiefoto's"; +App::$strings["Show Newest First"] = "Nieuwste eerst weergeven"; +App::$strings["Show Oldest First"] = "Oudste eerst weergeven"; +App::$strings["View Photo"] = "Foto weergeven"; +App::$strings["Edit Album"] = "Album bewerken"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; +App::$strings["Photo not available"] = "Foto niet aanwezig"; +App::$strings["Use as profile photo"] = "Als profielfoto gebruiken"; +App::$strings["Use as cover photo"] = "Als omslagfoto gebruiken"; +App::$strings["Private Photo"] = "Privéfoto"; +App::$strings["Previous"] = "Vorige"; +App::$strings["View Full Size"] = "Volledige grootte weergeven"; +App::$strings["Remove"] = "Verwijderen"; +App::$strings["Edit photo"] = "Foto bewerken"; +App::$strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; +App::$strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; +App::$strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; +App::$strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +App::$strings["Caption"] = "Bijschrift"; +App::$strings["Add a Tag"] = "Tag toevoegen"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; +App::$strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; +App::$strings["I like this (toggle)"] = "Vind ik leuk"; +App::$strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +App::$strings["Share"] = "Delen"; +App::$strings["Please wait"] = "Even wachten"; +App::$strings["This is you"] = "Dit ben jij"; +App::$strings["Comment"] = "Reactie"; +App::$strings["Preview"] = "Voorvertoning"; +App::$strings["__ctx:title__ Likes"] = "vinden dit leuk"; +App::$strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; +App::$strings["__ctx:title__ Agree"] = "eens"; +App::$strings["__ctx:title__ Disagree"] = "oneens"; +App::$strings["__ctx:title__ Abstain"] = "onthoudingen"; +App::$strings["__ctx:title__ Attending"] = "aanwezig"; +App::$strings["__ctx:title__ Not attending"] = "niet aanwezig"; +App::$strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; +App::$strings["View all"] = "Toon alles"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "vindt dit niet leuk", + 1 => "vinden dit niet leuk", +); +App::$strings["Photo Tools"] = "Hulpmiddelen"; +App::$strings["In This Photo:"] = "Op deze foto:"; +App::$strings["Map"] = "Kaart"; +App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk"; +App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; +App::$strings["Close"] = "Sluiten"; +App::$strings["View Album"] = "Album weergeven"; +App::$strings["Recent Photos"] = "Recente foto's"; +App::$strings["webpage"] = "Webpagina"; +App::$strings["block"] = "blok"; +App::$strings["layout"] = "lay-out"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; +App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; +App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; +App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; +App::$strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter."; +App::$strings["Import completed"] = "Importeren voltooid"; +App::$strings["Import Items"] = "Importeer items"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; +App::$strings["File to Upload"] = "Bestand om te uploaden"; +App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; +App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; +App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; +App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; +App::$strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; +App::$strings["Send invitations"] = "Uitnodigingen verzenden"; +App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; +App::$strings["Your message:"] = "Jouw bericht:"; +App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; +App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; +App::$strings["or visit"] = "of bezoek"; +App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; +App::$strings["Location not found."] = "Locatie niet gevonden."; +App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; +App::$strings["Syncing locations"] = "Locaties synchronizeren"; +App::$strings["No locations found."] = "Geen locaties gevonden."; +App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +App::$strings["Address"] = "Kanaaladres"; +App::$strings["Primary"] = "Primair"; +App::$strings["Sync Now"] = "Nu synchroniseren"; +App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; +App::$strings["Hub not found."] = "Hub niet gevonden."; +App::$strings["Like/Dislike"] = "Leuk/niet leuk"; +App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; +App::$strings["Invalid request."] = "Ongeldig verzoek"; +App::$strings["channel"] = "kanaal"; +App::$strings["thing"] = "ding"; +App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; +App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "bericht"; +App::$strings["event"] = "gebeurtenis"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; +App::$strings["Action completed."] = "Actie voltooid"; +App::$strings["Thank you."] = "Bedankt"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; +App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; +App::$strings["Create New"] = "Nieuwe aanmaken"; +App::$strings["Channel Manager"] = "Kanaalbeheer"; +App::$strings["Current Channel"] = "Huidig kanaal"; +App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; +App::$strings["Default Channel"] = "Standaardkanaal"; +App::$strings["Make Default"] = "Als standaard instellen"; +App::$strings["%d new messages"] = "%d nieuwe berichten"; +App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; +App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; +App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; +App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; +App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; +App::$strings["Menu Item Permissions"] = "Permissies menu-item"; +App::$strings["Link Name"] = "Linknaam"; +App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; +App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; +App::$strings["Open link in new window"] = "Open link in nieuw venster"; +App::$strings["Order in list"] = "Volgorde in lijst"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; +App::$strings["Submit and finish"] = "Opslaan en afsluiten"; +App::$strings["Submit and continue"] = "Opslaan en doorgaan"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Linkdoel"; +App::$strings["Edit menu"] = "Menu bewerken"; +App::$strings["Edit element"] = "Onderdeel bewerken"; +App::$strings["Drop element"] = "Onderdeel verwijderen"; +App::$strings["New element"] = "Nieuw element"; +App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; +App::$strings["Add menu element"] = "Menu-element toevoegen"; +App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; +App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; +App::$strings["Menu item not found."] = "Menu-item niet gevonden."; +App::$strings["Menu item deleted."] = "Menu-item verwijderd."; +App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; +App::$strings["Edit Menu Element"] = "Menu-element bewerken"; +App::$strings["Link text"] = "Linktekst"; +App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; +App::$strings["# Accounts"] = "# accounts"; +App::$strings["# blocked accounts"] = "# geblokkeerde accounts"; +App::$strings["# expired accounts"] = "# verlopen accounts"; +App::$strings["# expiring accounts"] = "# accounts die nog moeten verlopen"; +App::$strings["# Channels"] = "# Kanalen"; +App::$strings["# primary"] = "# primair"; +App::$strings["# clones"] = "# klonen"; +App::$strings["Message queues"] = "Berichtenwachtrij"; +App::$strings["Your software should be updated"] = "Jouw software moet worden bijgewerkt "; +App::$strings["Administration"] = "Beheer"; +App::$strings["Summary"] = "Samenvatting"; +App::$strings["Registered accounts"] = "Geregistreerde accounts"; +App::$strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; +App::$strings["Registered channels"] = "Geregistreerde kanalen"; +App::$strings["Active plugins"] = "Ingeschakelde plugins"; +App::$strings["Version"] = "Versie"; +App::$strings["Repository version (master)"] = "Versie repository (master)"; +App::$strings["Repository version (dev)"] = "Versie repository (dev)"; +App::$strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; +App::$strings["Default"] = "Standaard"; +App::$strings["experimental"] = "experimenteel"; +App::$strings["unsupported"] = "Niet ondersteund"; +App::$strings["Yes - with approval"] = "Ja - met goedkeuring"; +App::$strings["My site is not a public server"] = "Mijn \$Projectname-hub is niet openbaar"; +App::$strings["My site has paid access only"] = "Mijn \$Projectname-hub kent alleen betaalde toegang"; +App::$strings["My site has free access only"] = "Mijn \$Projectname-hub kent alleen gratis toegang"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mijn \$Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; +App::$strings["Site"] = "Hub-instellingen"; +App::$strings["File upload"] = "Bestand uploaden"; +App::$strings["Policies"] = "Beleid"; +App::$strings["Advanced"] = "Geavanceerd"; +App::$strings["Site name"] = "Naam van deze \$Projectname-hub"; +App::$strings["Banner/Logo"] = "Banner/logo"; +App::$strings["Administrator Information"] = "Informatie over de beheerder"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden."; +App::$strings["System language"] = "Standaardtaal"; +App::$strings["System theme"] = "Standaardthema"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaardthema voor \$Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen"; +App::$strings["Mobile system theme"] = "Standaardthema voor mobiel"; +App::$strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; +App::$strings["Allow Feeds as Connections"] = "Sta feeds toe als connecties"; +App::$strings["(Heavy system resource usage)"] = "(sterk negatieve invloed op systeembronnen hub)"; +App::$strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend."; +App::$strings["Does this site allow new member registration?"] = "Staat deze hub nieuwe accounts toe?"; +App::$strings["Invitation only"] = "Alleen op uitnodiging"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze \$Projectname-hub aan? Kies wat het meest in de buurt komt."; +App::$strings["Register text"] = "Tekst tijdens registratie"; +App::$strings["Will be displayed prominently on the registration page."] = "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)"; +App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken."; +App::$strings["Preserve site homepage URL"] = "Behoudt de URL van de hub (/)"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)"; +App::$strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; +App::$strings["Allowed friend domains"] = "Toegestane domeinen"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze \$Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; +App::$strings["Allowed email domains"] = "Toegestane e-maildomeinen"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten."; +App::$strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. "; +App::$strings["Verify Email Addresses"] = "E-mailadres verifieren"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)."; +App::$strings["Force publish"] = "Dwing kanaalvermelding af"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld."; +App::$strings["Import Public Streams"] = "Openbare streams importeren"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd."; +App::$strings["Login on Homepage"] = "Inlogformulier op de homepagina"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. "; +App::$strings["Enable context help"] = "Schakel contextuele hulp in"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt."; +App::$strings["Directory Server URL"] = "Server-URL voor de kanalengids"; +App::$strings["Default directory server"] = "Standaardserver voor de kanalengids"; +App::$strings["Proxy user"] = "Gebruikersnaam proxy"; +App::$strings["Proxy URL"] = "Proxy-URL"; +App::$strings["Network timeout"] = "Netwerktimeout"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)"; +App::$strings["Delivery interval"] = "Afleveringsinterval"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers."; +App::$strings["Deliveries per process"] = "Leveringen per serverproces"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5"; +App::$strings["Poll interval"] = "Poll-interval"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken."; +App::$strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd."; +App::$strings["0 for no expiration of imported content"] = "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud."; +App::$strings["Lock feature %s"] = " Vergrendel de functie '%s'"; +App::$strings["Manage Additional Features"] = "Beheer - Extra functies"; +App::$strings["No server found"] = "Geen hub gevonden"; +App::$strings["ID"] = "ID"; +App::$strings["for channel"] = "voor kanaal"; +App::$strings["on server"] = "op hub"; +App::$strings["Server"] = "Hubbeheer"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:"; +App::$strings["https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "] = "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd."; +App::$strings["Security"] = "Beveiliging"; +App::$strings["Block public"] = "Openbare toegang blokkeren"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd."; +App::$strings["Set \"Transport Security\" HTTP header"] = "\"Transport Security\" HTTP-header inschakelen"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = " \"Content Security Policy\" HTTP-header inschakelen"; +App::$strings["Allow communications only from these sites"] = "Alleen communicatie met deze hubs toestaan"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan"; +App::$strings["Block communications from these sites"] = "Communicatie met deze hubs blokkeren"; +App::$strings["Allow communications only from these channels"] = "Sta alleen communicatie toe met deze kanalen"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan"; +App::$strings["Block communications from these channels"] = "Communicatie met deze kanalen blokkeren"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan"; +App::$strings["One site per line. By default embedded content is filtered."] = "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd."; +App::$strings["Block embedded HTML from these domains"] = "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren"; +App::$strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; +App::$strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; +App::$strings["Update %s was successfully applied."] = "Update %s was geslaagd."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; +App::$strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; +App::$strings["No failed updates."] = "Geen mislukte updates."; +App::$strings["Failed Updates"] = "Mislukte updates"; +App::$strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; +App::$strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; +App::$strings["Queue Statistics"] = "Wachtrij-statistieken"; +App::$strings["Total Entries"] = "Aantal vermeldingen"; +App::$strings["Priority"] = "Prioriteit"; +App::$strings["Destination URL"] = "Doel-URL"; +App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markeren"; +App::$strings["Empty queue for this hub"] = "Berichtenwachtrij voor deze hub legen"; +App::$strings["Last known contact"] = "Voor het laatst contact"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s account geblokkeerd/gedeblokkeerd", + 1 => "%s accounts geblokkeerd/gedeblokkeerd", ); -App::$strings["Find Channels"] = "Kanalen vinden"; -App::$strings["Enter name or interest"] = "Vul naam of interesse in"; -App::$strings["Connect/Follow"] = "Verbinden/volgen"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; -App::$strings["Random Profile"] = "Willekeurig profiel"; -App::$strings["Invite Friends"] = "Vrienden uitnodigen"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemeenschappelijke connectie", - 1 => "%d gemeenschappelijke connecties", +App::$strings["%s account deleted"] = array( + 0 => "%s account verwijderd", + 1 => "%s accounts verwijderd", ); -App::$strings["show more"] = "meer connecties weergeven"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; -App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -App::$strings["Categories:"] = "Categorieën:"; -App::$strings["Filed under:"] = "Bewaard onder:"; -App::$strings["View in context"] = "In context bekijken"; -App::$strings["remove"] = "verwijderen"; -App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; -App::$strings["View Source"] = "Bron weergeven"; -App::$strings["Follow Thread"] = "Conversatie volgen"; -App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; -App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; -App::$strings["Edit Connection"] = "Connectie bewerken"; -App::$strings["Message"] = "Bericht"; -App::$strings["%s likes this."] = "%s vindt dit leuk."; -App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d persoon vindt dit leuk.", - 1 => "%2\$d personen vinden dit leuk.", +App::$strings["Account not found"] = "Account niet gevonden"; +App::$strings["Account '%s' deleted"] = "Account '%s' verwijderd"; +App::$strings["Account '%s' blocked"] = "Account '%s' geblokkeerd"; +App::$strings["Account '%s' unblocked"] = "Account '%s' gedeblokkeerd"; +App::$strings["Accounts"] = "Accounts"; +App::$strings["select all"] = "alles selecteren"; +App::$strings["Registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; +App::$strings["Request date"] = "Tijd/datum verzoek"; +App::$strings["Email"] = "E-mail"; +App::$strings["No registrations."] = "Geen verzoeken."; +App::$strings["Deny"] = "Afkeuren"; +App::$strings["Block"] = "Blokkeren"; +App::$strings["Unblock"] = "Deblokkeren"; +App::$strings["All Channels"] = "Alle kanalen"; +App::$strings["Register date"] = "Geregistreerd"; +App::$strings["Last login"] = "Laatste keer ingelogd"; +App::$strings["Expires"] = "Verloopt"; +App::$strings["Service Class"] = "Abonnementen"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s kanaal gecensureerd/ongecensureerd", + 1 => "%s kanalen gecensureerd/ongecensureerd", ); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d persoon vindt dit niet leuk.", - 1 => "%2\$d personen vinden dit niet leuk.", +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "Scripts toegestaan/niet toegestaan voor %s kanaal", + 1 => "Scripts toegestaan/niet toegestaan voor %s kanalen", ); -App::$strings["and"] = "en"; -App::$strings[", and %d other people"] = array( - 0 => ", en %d ander persoon", - 1 => ", en %d andere personen", +App::$strings["%s channel deleted"] = array( + 0 => "%s kanaal verwijderd", + 1 => "%s kanalen verwijderd", ); -App::$strings["%s like this."] = "%s vinden dit leuk."; -App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; -App::$strings["Set your location"] = "Locatie instellen"; -App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; -App::$strings["Tag term:"] = "Tag:"; -App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; -App::$strings["Page link name"] = "Linknaam pagina"; -App::$strings["Post as"] = "Bericht plaatsen als"; -App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Set publish date"] = "Publicatiedatum instellen"; +App::$strings["Channel not found"] = "Kanaal niet gevonden"; +App::$strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; +App::$strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; +App::$strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; +App::$strings["Channel '%s' code allowed"] = "Scripts toegestaan voor kanaal '%s'"; +App::$strings["Channel '%s' code disallowed"] = "Scripts niet toegestaan voor kanaal '%s'"; +App::$strings["Channels"] = "Kanalen"; +App::$strings["Censor"] = "Censureren"; +App::$strings["Uncensor"] = "Niet censureren"; +App::$strings["Allow Code"] = "Scripts toestaan"; +App::$strings["Disallow Code"] = "Scripts niet toestaan"; +App::$strings["Channel"] = "Kanaal"; +App::$strings["UID"] = "UID"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["Plugin %s disabled."] = "Plugin %s uitgeschakeld."; +App::$strings["Plugin %s enabled."] = "Plugin %s ingeschakeld"; +App::$strings["Disable"] = "Uitschakelen"; +App::$strings["Enable"] = "Inschakelen"; +App::$strings["Plugins"] = "Plugins"; +App::$strings["Toggle"] = "Omschakelen"; +App::$strings["Settings"] = "Instellingen"; +App::$strings["Author: "] = "Auteur: "; +App::$strings["Maintainer: "] = "Beheerder: "; +App::$strings["Minimum project version: "] = "Minimum versie Hubzilla: "; +App::$strings["Maximum project version: "] = "Maximum versie Hubzilla:"; +App::$strings["Minimum PHP version: "] = "Minimum versie PHP: "; +App::$strings["Compatible Server Roles: "] = "Werkt met configuratietypes: "; +App::$strings["Requires: "] = "Vereist: "; +App::$strings["Disabled - version incompatibility"] = "Uitgeschakeld - versie is incompatibel"; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Vul de openbare Git-URL in van de plugin-repository."; +App::$strings["Plugin repo git URL"] = "Git-URL plugin-repository"; +App::$strings["Custom repo name"] = "Handmatige repository-naam"; +App::$strings["(optional)"] = "(optioneel)"; +App::$strings["Download Plugin Repo"] = "Plugin-repository downloaden"; +App::$strings["Install new repo"] = "Nieuwe repository installeren"; +App::$strings["Install"] = "Installeren"; +App::$strings["Manage Repos"] = "Repositories beheren"; +App::$strings["Installed Plugin Repositories"] = "Toegevoegde plugin-repositories"; +App::$strings["Install a New Plugin Repository"] = "Nieuwe plugin-repository toevoegen"; +App::$strings["Switch branch"] = "Branch veranderen"; +App::$strings["No themes found."] = "Geen thema's gevonden"; +App::$strings["Screenshot"] = "Schermafdruk"; +App::$strings["Themes"] = "Thema's"; +App::$strings["[Experimental]"] = "[Experimenteel]"; +App::$strings["[Unsupported]"] = "[Niet ondersteund]"; +App::$strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; +App::$strings["Logs"] = "Logboeken"; +App::$strings["Clear"] = "Leegmaken"; +App::$strings["Debugging"] = "Debuggen"; +App::$strings["Log file"] = "Logbestand"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je \$Projectname-installatie."; +App::$strings["Log level"] = "Logniveau"; +App::$strings["New Profile Field"] = "Nieuw profielveld"; +App::$strings["Field nickname"] = "Bijnaam voor veld"; +App::$strings["System name of field"] = "Systeemnaam voor veld"; +App::$strings["Input type"] = "Invoertype"; +App::$strings["Field Name"] = "Veldnaam"; +App::$strings["Label on profile pages"] = "Tekstlabel voor op profielpagina's"; +App::$strings["Help text"] = "Helptekst"; +App::$strings["Additional info (optional)"] = "Extra informatie (optioneel)"; +App::$strings["Field definition not found"] = "Velddefinitie niet gevonden"; +App::$strings["Edit Profile Field"] = "Profielveld bewerken"; +App::$strings["Profile Fields"] = "Profielvelden"; +App::$strings["Basic Profile Fields"] = "Standaard profielvelden"; +App::$strings["Advanced Profile Fields"] = "Geavanceerde profielvelden"; +App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaard velden)"; +App::$strings["All available fields"] = "Alle beschikbare velden"; +App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden"; +App::$strings["Create Custom Field"] = "Extra velden aanmaken"; +App::$strings["No valid account found."] = "Geen geldige account gevonden."; +App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; +App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; +App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; +App::$strings["Password Reset"] = "Wachtwoord vergeten?"; +App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; +App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; +App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; +App::$strings["click here to login"] = "klik dan hier om in te loggen"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; +App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; +App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; +App::$strings["Email Address"] = "E-mailadres"; +App::$strings["Reset"] = "Opnieuw instellen"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; +App::$strings["Mood"] = "Stemming"; +App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +App::$strings["Profile not found."] = "Profiel niet gevonden."; +App::$strings["Profile deleted."] = "Profiel verwijderd."; +App::$strings["Profile-"] = "Profiel-"; +App::$strings["New profile created."] = "Nieuw profiel aangemaakt."; +App::$strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; +App::$strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; +App::$strings["Profile Name is required."] = "Profielnaam is vereist"; +App::$strings["Marital Status"] = "Huwelijke status"; +App::$strings["Romantic Partner"] = "Romantische partner"; +App::$strings["Likes"] = "Houdt van"; +App::$strings["Dislikes"] = "Houdt niet van"; +App::$strings["Work/Employment"] = "Werk/arbeid"; +App::$strings["Religion"] = "Religie"; +App::$strings["Political Views"] = "Politieke overtuigingen"; +App::$strings["Gender"] = "Geslacht"; +App::$strings["Sexual Preference"] = "Seksuele voorkeur"; +App::$strings["Homepage"] = "Homepage"; +App::$strings["Interests"] = "Interesses"; +App::$strings["Profile updated."] = "Profiel bijgewerkt"; +App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; +App::$strings["Edit Profile Details"] = "Profiel bewerken"; +App::$strings["View this profile"] = "Profiel weergeven"; +App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; +App::$strings["Profile Tools"] = "Hulpmiddelen"; +App::$strings["Change cover photo"] = "Omslagfoto wijzigen"; +App::$strings["Change profile photo"] = "Profielfoto veranderen"; +App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; +App::$strings["Clone this profile"] = "Dit profiel klonen"; +App::$strings["Delete this profile"] = "Dit profiel verwijderen"; +App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen"; +App::$strings["Personal"] = "Persoonlijk"; +App::$strings["Relation"] = "Relatie"; +App::$strings["Miscellaneous"] = "Diversen"; +App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren"; +App::$strings["Export profile to file"] = "Profiel naar bestand exporteren"; +App::$strings["Your gender"] = "Jouw geslacht"; +App::$strings["Marital status"] = "Burgerlijke staat"; +App::$strings["Sexual preference"] = "Seksuele voorkeur"; +App::$strings["Profile name"] = "Profielnaam"; +App::$strings["This is your default profile."] = "Dit is jouw standaardprofiel"; +App::$strings["Your full name"] = "Jouw volledige naam"; +App::$strings["Title/Description"] = "Titel/omschrijving"; +App::$strings["Street address"] = "Straat en huisnummer"; +App::$strings["Locality/City"] = "Woonplaats"; +App::$strings["Region/State"] = "Provincie/gewest/deelstaat"; +App::$strings["Postal/Zip code"] = "Postcode"; +App::$strings["Country"] = "Land"; +App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; +App::$strings["Since (date)"] = "Sinds (datum)"; +App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf"; +App::$strings["Homepage URL"] = "URL homepagina"; +App::$strings["Hometown"] = "Oorspronkelijk uit"; +App::$strings["Political views"] = "Politieke overtuigingen"; +App::$strings["Religious views"] = "Religieuze overtuigingen"; +App::$strings["Keywords used in directory listings"] = "Trefwoorden voor in de kanalengids"; +App::$strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; +App::$strings["Musical interests"] = "Muzikale interesses"; +App::$strings["Books, literature"] = "Boeken/literatuur"; +App::$strings["Television"] = "Televisie"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/cultuur/entertainment"; +App::$strings["Hobbies/Interests"] = "Hobby's/interesses"; +App::$strings["Love/Romance"] = "Liefde/romantiek"; +App::$strings["School/Education"] = "School/opleiding"; +App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken"; +App::$strings["My other channels"] = "Mijn andere kanalen"; +App::$strings["Profile Image"] = "Profielfoto"; +App::$strings["Edit Profiles"] = "Bewerk profielen"; +App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; +App::$strings["System Notifications"] = "Systeemnotificaties"; +App::$strings["Profile Match"] = "Profielovereenkomst"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; +App::$strings["is interested in:"] = "is geïnteresseerd in:"; +App::$strings["No matches"] = "Geen overeenkomsten"; +App::$strings["Import Webpage Elements"] = "Webpagina-elementen importeren"; +App::$strings["Import selected"] = "Importbestand geselecteerd"; +App::$strings["Webpages"] = "Webpagina's"; +App::$strings["Actions"] = "Acties"; +App::$strings["Page Link"] = "Paginalink"; +App::$strings["Page Title"] = "Paginatitel"; +App::$strings["Invalid file type."] = "Ongeldig bestandsformaat"; +App::$strings["Error opening zip file"] = "Fout met openen zipbestand"; +App::$strings["Invalid folder path."] = "Ongeldige maplocatie"; +App::$strings["No webpage elements detected."] = "Geen webpagina-elementen gedecteerd"; +App::$strings["Import complete."] = "Importeren voltooid."; +App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; +App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; +App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; +App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; +App::$strings["Edit event title"] = "Titel bewerken"; +App::$strings["Event title"] = "Titel"; +App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +App::$strings["Edit Category"] = "Categorie"; +App::$strings["Category"] = "Categorie"; +App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; +App::$strings["Start date and time"] = "Begindatum en -tijd"; +App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; +App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; +App::$strings["Finish date and time"] = "Einddatum en -tijd"; +App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; +App::$strings["Edit Description"] = "Omschrijving bewerken"; +App::$strings["Edit Location"] = "Locatie bewerken"; +App::$strings["Share this event"] = "Deel deze gebeurtenis"; +App::$strings["Permission settings"] = "Permissies"; +App::$strings["Advanced Options"] = "Geavanceerde opties"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Edit event"] = "Gebeurtenis bewerken"; +App::$strings["Delete event"] = "Gebeurtenis verwijderen"; +App::$strings["Link to Source"] = "Originele locatie"; +App::$strings["calendar"] = "agenda"; +App::$strings["Edit Event"] = "Gebeurtenis bewerken"; +App::$strings["Create Event"] = "Gebeurtenis aanmaken"; +App::$strings["Export"] = "Exporteren"; +App::$strings["Month"] = "Maand"; +App::$strings["Week"] = "Week"; +App::$strings["Day"] = "Dag"; +App::$strings["Today"] = "Vandaag"; +App::$strings["Event removed"] = "Gebeurtenis verwijderd"; +App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; +App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; +App::$strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; +App::$strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt."; +App::$strings["Import completed."] = "Import voltooid."; +App::$strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; +App::$strings["Import Channel"] = "Kanaal importeren"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."; +App::$strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; +App::$strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; +App::$strings["Your old login email address"] = "Het e-mailadres van je oude account"; +App::$strings["Your old login password"] = "Wachtwoord van jouw oude account"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; +App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; +App::$strings["Create Channel"] = "Kanaal aanmaken"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; +App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; +App::$strings["sent you a private message"] = "stuurde jou een privébericht"; +App::$strings["added your channel"] = "voegde jouw kanaal toe"; +App::$strings["g A l F d"] = "G:i, l d F"; +App::$strings["[today]"] = "[vandaag]"; +App::$strings["posted an event"] = "plaatste een gebeurtenis"; +App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +App::$strings["Discard"] = "Annuleren"; +App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +App::$strings["Poke"] = "Aanstoten"; +App::$strings["Poke somebody"] = "Iemand aanstoten"; +App::$strings["Poke/Prod"] = "Aanstoten/porren"; +App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; +App::$strings["Recipient"] = "Ontvanger"; +App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +App::$strings["Make this post private"] = "Maak dit bericht privé"; +App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +App::$strings["Post successful."] = "Verzenden bericht geslaagd."; +App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; +App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; +App::$strings["Profile"] = "Profiel"; +App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; +App::$strings["Visible To"] = "Zichtbaar voor"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; +App::$strings["Configuration Editor"] = "Configuratiebewerker"; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; +App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; +App::$strings["Posts and comments"] = "Berichten en reacties"; +App::$strings["Only posts"] = "Alleen berichten"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +App::$strings["Version %s"] = "Versie %s"; +App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; +App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; +App::$strings["Tag: "] = "Tag: "; +App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; +App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; +App::$strings["Running at web location"] = "Draaiend op weblocatie"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; +App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; +App::$strings["\$projectname issues"] = "\$projectname-issues"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; +App::$strings["Site Administrators"] = "Hubbeheerders: "; +App::$strings["Blocks"] = "Blokken"; +App::$strings["Block Title"] = "Bloktitel"; +App::$strings["Layouts"] = "Lay-outs"; +App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; +App::$strings["Layout Description"] = "Lay-out-omschrijving"; +App::$strings["Download PDL file"] = "Download PDL-bestand"; +App::$strings["No ratings"] = "Geen beoordelingen"; +App::$strings["Rating: "] = "Beoordeling: "; +App::$strings["Website: "] = "Website: "; +App::$strings["Description: "] = "Omschrijving: "; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; +App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; +App::$strings["Permissions denied."] = "Permissies niet toegestaan"; +App::$strings["Import"] = "Importeren"; +App::$strings["No channel."] = "Geen kanaal."; +App::$strings["Common connections"] = "Veel voorkomende connecties"; +App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +App::$strings["Messages"] = "Berichten"; +App::$strings["Message recalled."] = "Bericht ingetrokken."; +App::$strings["Conversation removed."] = "Conversatie verwijderd"; +App::$strings["Please enter a link URL:"] = "Vul een URL in:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; +App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; +App::$strings["Send Private Message"] = "Privébericht versturen"; +App::$strings["To:"] = "Aan:"; +App::$strings["Subject:"] = "Onderwerp:"; +App::$strings["Attach file"] = "Bestand toevoegen"; +App::$strings["Send"] = "Verzenden"; +App::$strings["Set expiration date"] = "Verloopdatum instellen"; +App::$strings["Encrypt text"] = "Tekst versleutelen"; +App::$strings["Delete message"] = "Bericht verwijderen"; +App::$strings["Delivery report"] = "Afleveringsrapport"; +App::$strings["Recall message"] = "Bericht intrekken"; +App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; +App::$strings["Delete Conversation"] = "Verwijder conversatie"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +App::$strings["Send Reply"] = "Antwoord versturen"; +App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; +App::$strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; +App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; +App::$strings["Connection updated."] = "Connectie bijgewerkt."; +App::$strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; +App::$strings["is now connected to"] = "is nu verbonden met"; +App::$strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; +App::$strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; +App::$strings["Connection has been removed."] = "Connectie is verwijderd"; +App::$strings["View Profile"] = "Profiel weergeven"; +App::$strings["View %s's profile"] = "Profiel van %s weergeven"; +App::$strings["Refresh Permissions"] = "Permissies vernieuwen"; +App::$strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; +App::$strings["Recent Activity"] = "Recente activiteit/berichten"; +App::$strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; +App::$strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!"; +App::$strings["Unignore"] = "Niet meer negeren"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; +App::$strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!"; +App::$strings["Unarchive"] = "Niet meer archiveren"; +App::$strings["Archive"] = "Archiveren"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; +App::$strings["This connection is archived!"] = "Deze connectie is gearchiveerd!"; +App::$strings["Unhide"] = "Niet meer verbergen"; +App::$strings["Hide"] = "Verbergen"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; +App::$strings["This connection is hidden!"] = "Deze connectie is verborgen!"; +App::$strings["Delete this connection"] = "Deze connectie verwijderen"; +App::$strings["Me"] = "Ik"; +App::$strings["Family"] = "Familie"; +App::$strings["Acquaintances"] = "Kennissen"; +App::$strings["Approve this connection"] = "Deze connectie accepteren"; +App::$strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; +App::$strings["Set Affinity"] = "Verwantschapsfilter instellen"; +App::$strings["Set Profile"] = "Profiel instellen"; +App::$strings["Set Affinity & Profile"] = "Verwantschapsfilter en profiel instellen"; +App::$strings["none"] = "geen"; +App::$strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; +App::$strings["Connection: %s"] = "Connectie: %s"; +App::$strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; +App::$strings["Connection requests will be approved without your interaction"] = "Connectieverzoeken zullen automatisch worden geaccepteerd"; +App::$strings["This connection's primary address is"] = "Het primaire kanaaladres van deze connectie is"; +App::$strings["Available locations:"] = "Beschikbare locaties:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast."; +App::$strings["Connection Tools"] = "Hulpmiddelen"; +App::$strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; +App::$strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven"; +App::$strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)"; +App::$strings["Custom Filter"] = "Berichtenfilter"; +App::$strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren"; +App::$strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst"; +App::$strings["This information is public!"] = "Deze informatie is openbaar!"; +App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; +App::$strings["Last update:"] = "Laatste wijziging:"; +App::$strings["Apps"] = "Apps"; +App::$strings["Continue"] = "Ga verder"; +App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; +App::$strings["Select a bookmark folder"] = "Kies een bladwijzermap"; +App::$strings["Save Bookmark"] = "Bladwijzer opslaan"; +App::$strings["URL of bookmark"] = "URL van bladwijzer"; +App::$strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; +App::$strings["Authentication failed."] = "Authenticatie mislukt."; +App::$strings["Remote Authentication"] = "Authenticatie op afstand"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; +App::$strings["Authenticate"] = "Authenticeren"; +App::$strings["Please login."] = "Inloggen."; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; +App::$strings["Remove This Account"] = "Verwijder dit account"; +App::$strings["WARNING: "] = "WAARSCHUWING: "; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Dit account en al zijn kanalen worden volledig uit het \$Projectname-netwerk verwijderd."; +App::$strings["This action is permanent and can not be undone!"] = "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!"; +App::$strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het \$Projectname-netwerk verwijderen"; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het \$Projectname-netwerk verwijderd"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; +App::$strings["Remove This Channel"] = "Verwijder dit kanaal"; +App::$strings["This channel will be completely removed from the network. "] = "Dit kanaal wordt volledig uit het \$Projectname-netwerk verwijderd."; +App::$strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd"; +App::$strings["Export Channel"] = "Kanaal exporteren"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; +App::$strings["Export Content"] = "Inhoud exporteren"; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; +App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; +App::$strings["Item is not editable"] = "Item is niet te bewerken"; +App::$strings["Edit post"] = "Bericht bewerken"; +App::$strings["Items tagged with: %s"] = "Items getagd met %s"; +App::$strings["Search results for: %s"] = "Zoekresultaten voor %s"; +App::$strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; +App::$strings["Thing updated"] = "Ding bijgewerkt"; +App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; +App::$strings["Thing added"] = "Ding toegevoegd"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Ding weergeven"; +App::$strings["item not found."] = "Item niet gevonden"; +App::$strings["Edit Thing"] = "Ding bewerken"; +App::$strings["Select a profile"] = "Kies een profiel"; +App::$strings["Post an activity"] = "Plaats een bericht"; +App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; +App::$strings["Name of thing e.g. something"] = "Naam van ding"; +App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; +App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; +App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; +App::$strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; +App::$strings["Empty post discarded."] = "Leeg bericht geannuleerd"; +App::$strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; +App::$strings["Duplicate post suppressed."] = "Dubbel bericht tegengehouden."; +App::$strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; +App::$strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; +App::$strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; +App::$strings["NEW"] = "NIEUW"; +App::$strings["Remove all files"] = "Verwijder alle bestanden"; +App::$strings["Remove this file"] = "Verwijder dit bestand"; +App::$strings["Not found"] = "Niet gevonden"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Zandbak"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\""; +App::$strings["Revision Comparison"] = "Revisies vergelijken"; +App::$strings["Revert"] = "Ongedaan maken"; +App::$strings["Enter the name of your new wiki:"] = "Vul de naam in van jouw nieuwe wiki:"; +App::$strings["Enter the name of the new page:"] = "Vul de naam in van de nieuwe pagina:"; +App::$strings["Enter the new name:"] = "Vul de nieuwe naam in:"; +App::$strings["Embed image from photo albums"] = "Afbeelding uit een fotoalbum invoegen"; +App::$strings["Embed an image from your albums"] = "Afbeelding uit jouw albums invoegen"; App::$strings["OK"] = "OK"; -App::$strings["Discover"] = "Ontdekken"; -App::$strings["Imported public streams"] = "Openbare streams importeren"; -App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; -App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; -App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; -App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -App::$strings["Starred"] = "Met ster"; -App::$strings["Favourite Posts"] = "Favoriete berichten"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; -App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; -App::$strings["About"] = "Over"; -App::$strings["Profile Details"] = "Profiel"; -App::$strings["Photo Albums"] = "Fotoalbums"; -App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; -App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; -App::$strings["Manage Webpages"] = "Webpagina's beheren"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "aanwezig", - 1 => "aanwezig", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "niet aanwezig", - 1 => "niet aanwezig", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "nog niet beslist", - 1 => "nog niet beslist", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "eens", - 1 => "eens", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "oneens", - 1 => "oneens", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "onthouding", - 1 => "onthoudingen", -); -App::$strings["Frequently"] = "Regelmatig"; -App::$strings["Hourly"] = "Elk uur"; -App::$strings["Twice daily"] = "Twee keer per dag"; -App::$strings["Daily"] = "Dagelijks"; -App::$strings["Weekly"] = "Wekelijks"; -App::$strings["Monthly"] = "Maandelijks"; -App::$strings["Currently Male"] = "Momenteel man"; -App::$strings["Currently Female"] = "Momenteel vrouw"; -App::$strings["Mostly Male"] = "Voornamelijk man"; -App::$strings["Mostly Female"] = "Voornamelijk vrouw"; -App::$strings["Transgender"] = "Transgender"; -App::$strings["Intersex"] = "Interseksueel"; -App::$strings["Transsexual"] = "Transseksueel"; -App::$strings["Hermaphrodite"] = "Hermafrodiet"; -App::$strings["Neuter"] = "Genderneutraal"; -App::$strings["Non-specific"] = "Niet gespecificeerd"; -App::$strings["Other"] = "Anders"; -App::$strings["Undecided"] = "Nog niet beslist"; -App::$strings["Males"] = "Mannen"; -App::$strings["Females"] = "Vrouwen"; -App::$strings["Gay"] = "Homoseksueel"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Geen voorkeur"; -App::$strings["Bisexual"] = "Biseksueel"; -App::$strings["Autosexual"] = "Autoseksueel"; -App::$strings["Abstinent"] = "Seksuele onthouding"; -App::$strings["Virgin"] = "Maagd"; -App::$strings["Deviant"] = "Afwijkend"; -App::$strings["Fetish"] = "Fetisj"; -App::$strings["Oodles"] = "Veel"; -App::$strings["Nonsexual"] = "Aseksueel"; -App::$strings["Single"] = "Alleen"; -App::$strings["Lonely"] = "Eenzaam"; -App::$strings["Available"] = "Beschikbaar"; -App::$strings["Unavailable"] = "Niet beschikbaar"; -App::$strings["Has crush"] = "Heeft een oogje op iemand"; -App::$strings["Infatuated"] = "Smoorverliefd"; -App::$strings["Dating"] = "Aan het daten"; -App::$strings["Unfaithful"] = "Ontrouw"; -App::$strings["Sex Addict"] = "Seksverslaafd"; -App::$strings["Friends/Benefits"] = "Vriendschap plus"; -App::$strings["Casual"] = "Ongebonden/vluchtig"; -App::$strings["Engaged"] = "Verloofd"; -App::$strings["Married"] = "Getrouwd"; -App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -App::$strings["Partners"] = "Partners"; -App::$strings["Cohabiting"] = "Samenwonend"; -App::$strings["Common law"] = "Common-law-huwelijk"; -App::$strings["Happy"] = "Gelukkig"; -App::$strings["Not looking"] = "Niet op zoek"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Verraden"; -App::$strings["Separated"] = "Uit elkaar"; -App::$strings["Unstable"] = "Onstabiel"; -App::$strings["Divorced"] = "Gescheiden"; -App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -App::$strings["Widowed"] = "Weduwnaar/weduwe"; -App::$strings["Uncertain"] = "Onzeker"; -App::$strings["It's complicated"] = "Het is ingewikkeld"; -App::$strings["Don't care"] = "Maakt mij niks uit"; -App::$strings["Ask me"] = "Vraag het me"; +App::$strings["Choose images to embed"] = "Kies afbeeldingen om in te voegen"; +App::$strings["Choose an album"] = "Kies een album"; +App::$strings["Choose a different album..."] = "Kies een ander album..."; +App::$strings["Error getting album list"] = "Fout met ophalen albumlijst"; +App::$strings["Error getting photo link"] = "Fout met ophalen fotolink"; +App::$strings["Error getting album"] = "Fout met ophalen album"; +App::$strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; +App::$strings["Source created."] = "Bron aangemaakt."; +App::$strings["Source updated."] = "Bron aangemaakt."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Kanaalbronnen"; +App::$strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; +App::$strings["New Source"] = "Nieuwe bron"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; +App::$strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; +App::$strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; +App::$strings["Channel Name"] = "Kanaalnaam"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)"; +App::$strings["Source not found."] = "Bron niet gevonden"; +App::$strings["Edit Source"] = "Bron bewerken"; +App::$strings["Delete Source"] = "Bron verwijderen"; +App::$strings["Source removed"] = "Bron verwijderd"; +App::$strings["Unable to remove source."] = "Verwijderen bron mislukt."; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s niet meer"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; +App::$strings["Ignore/Hide"] = "Negeren/Verbergen"; +App::$strings["post"] = "bericht"; +App::$strings["comment"] = "reactie"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; +App::$strings["Tag removed"] = "Tag verwijderd"; +App::$strings["Remove Item Tag"] = "Verwijder item-tag"; +App::$strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; +App::$strings["Channel added."] = "Kanaal toegevoegd."; +App::$strings["No connections."] = "Geen connecties."; +App::$strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; +App::$strings["View Connections"] = "Connecties weergeven"; +App::$strings["Source of Item"] = "Bron van item"; +App::$strings["Room not found"] = "Chatkanaal niet gevonden"; +App::$strings["Leave Room"] = "Chatkanaal verlaten"; +App::$strings["Delete Room"] = "Chatkanaal verwijderen"; +App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; +App::$strings["I am online"] = "Ik ben online"; +App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; +App::$strings["Feature disabled."] = "Functie uitgeschakeld."; +App::$strings["New Chatroom"] = "Nieuw chatkanaal"; +App::$strings["Chatroom name"] = "Naam chatkanaal"; +App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; +App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; +App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; +App::$strings["Expiration"] = "Verloopt na"; +App::$strings["min"] = "min"; +App::$strings["Xchan Lookup"] = "Xchan opzoeken"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; +App::$strings["Missing room name"] = "Naam chatkanaal ontbreekt"; +App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; +App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; +App::$strings["Room not found."] = "Chatkanaal niet gevonden"; +App::$strings["Room is full"] = "Chatkanaal is vol"; +App::$strings["\$Projectname Notification"] = "\$Projectname-notificatie"; +App::$strings["\$projectname"] = "\$projectname"; +App::$strings["Thank You,"] = "Bedankt,"; +App::$strings["%s Administrator"] = "Beheerder %s"; +App::$strings["%s "] = "%s "; +App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s"; +App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; +App::$strings["a private message"] = "een privébericht"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; +App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; +App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; +App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; +App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; +App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; +App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notificatie] %s heeft je genoemd"; +App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; +App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notificatie] %1\$s heeft je aangestoten"; +App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; +App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notificatie] %s heeft jouw bericht getagd"; +App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; +App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; +App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notificatie] Connectieverzoek ontvangen"; +App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; +App::$strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; +App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen"; +App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; +App::$strings["Name:"] = "Naam:"; +App::$strings["Photo:"] = "Foto:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; +App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; +App::$strings["created a new post"] = "maakte een nieuw bericht aan"; +App::$strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; +App::$strings["Site Admin"] = "Hubbeheerder"; +App::$strings["Bug Report"] = "Bugrapport"; +App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; +App::$strings["My Chatrooms"] = "Mijn chatkanalen"; +App::$strings["Firefox Share"] = "Firefox Share"; +App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; +App::$strings["Suggest Channels"] = "Kanalen voorstellen"; +App::$strings["Login"] = "Inloggen"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Jouw kanaal"; +App::$strings["Events"] = "Agenda"; +App::$strings["Directory"] = "Kanalengids"; +App::$strings["Mail"] = "Privéberichten"; +App::$strings["Chat"] = "Chatten"; +App::$strings["Probe"] = "Onderzoeken"; +App::$strings["Suggest"] = "Voorstellen"; +App::$strings["Random Channel"] = "Willekeurig kanaal"; +App::$strings["Invite"] = "Uitnodigen "; +App::$strings["Features"] = "Extra functies"; +App::$strings["Language"] = "Taal"; +App::$strings["Post"] = "Bericht"; +App::$strings["Profile Photo"] = "Profielfoto"; +App::$strings["Purchase"] = "Aanschaffen"; App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; App::$strings["Only me"] = "Alleen ik"; App::$strings["Public"] = "Openbaar"; @@ -1939,39 +1542,247 @@ App::$strings["This is your default setting for who can view your default channe App::$strings["This is your default setting for who can view your connections"] = "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken"; App::$strings["This is your default setting for who can view your file storage and photos"] = "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken"; App::$strings["This is your default setting for the audience of your webpages"] = "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken"; -App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; -App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; -App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; -App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; -App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; -App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; -App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; -App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; -App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +App::$strings["Private Message"] = "Niet voor iedereen zichtbaar"; +App::$strings["Select"] = "Kies"; +App::$strings["Save to Folder"] = "In map opslaan"; +App::$strings["I will attend"] = "Aanwezig"; +App::$strings["I will not attend"] = "Niet aanwezig"; +App::$strings["I might attend"] = "Mogelijk aanwezig"; +App::$strings["I agree"] = "Eens"; +App::$strings["I disagree"] = "Oneens"; +App::$strings["I abstain"] = "Onthouding"; +App::$strings["Add Star"] = "Ster toevoegen"; +App::$strings["Remove Star"] = "Ster verwijderen"; +App::$strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; +App::$strings["starred"] = "met ster"; +App::$strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; +App::$strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; +App::$strings["Add Tag"] = "Tag toevoegen"; +App::$strings["like"] = "vind dit leuk"; +App::$strings["dislike"] = "vind dit niet leuk"; +App::$strings["Share This"] = "Delen"; +App::$strings["share"] = "delen"; +App::$strings["Delivery Report"] = "Afleveringsrapport"; +App::$strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties weergeven", +); +App::$strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; +App::$strings["to"] = "aan"; +App::$strings["via"] = "via"; +App::$strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; +App::$strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; +App::$strings["from %s"] = "van %s"; +App::$strings["last edited: %s"] = "laatst bewerkt: %s"; +App::$strings["Expires: %s"] = "Verloopt: %s"; +App::$strings["Save Bookmarks"] = "Bladwijzers opslaan"; +App::$strings["Add to Calendar"] = "Aan agenda toevoegen"; +App::$strings["Mark all seen"] = "Markeer alles als bekeken"; +App::$strings["%s show all"] = "%s alle"; +App::$strings["Bold"] = "Vet"; +App::$strings["Italic"] = "Cursief"; +App::$strings["Underline"] = "Onderstrepen"; +App::$strings["Quote"] = "Citeren"; +App::$strings["Code"] = "Broncode"; +App::$strings["Image"] = "Afbeelding"; +App::$strings["Insert Link"] = "Link invoegen"; +App::$strings["Video"] = "Video"; +App::$strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; +App::$strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; +App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; +App::$strings["view full size"] = "volledige grootte tonen"; App::$strings["Administrator"] = "Beheerder"; -App::$strings["your registration password"] = "jouw registratiewachtwoord"; -App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; -App::$strings["Account approved."] = "Account goedgekeurd"; -App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -App::$strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; -App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; -App::$strings["Item was not found."] = "Item niet gevonden"; -App::$strings["No source file."] = "Geen bronbestand."; -App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -App::$strings["Path not available."] = "Pad niet beschikbaar."; -App::$strings["Empty pathname"] = "Padnaam leeg"; -App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -App::$strings["Path not found."] = "Pad niet gevonden"; -App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -App::$strings["database storage failed."] = "opslag in database mislukt."; -App::$strings["Empty path"] = "Ontbrekend bestandspad"; +App::$strings["No Subject"] = "Geen onderwerp"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; +App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; +App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; +App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; +App::$strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; +App::$strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +App::$strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; +App::$strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; +App::$strings["Can write to my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; +App::$strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; +App::$strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; +App::$strings["(Unknown)"] = "(Onbekend)"; +App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; +App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; +App::$strings["Privacy group: %s"] = "Privacygroep: %s"; +App::$strings["Connection not found."] = "Connectie niet gevonden."; +App::$strings["profile photo"] = "profielfoto"; +App::$strings["prev"] = "vorige"; +App::$strings["first"] = "eerste"; +App::$strings["last"] = "laatste"; +App::$strings["next"] = "volgende"; +App::$strings["older"] = "ouder"; +App::$strings["newer"] = "nieuwer"; +App::$strings["No connections"] = "Geen connecties"; +App::$strings["View all %s connections"] = "Toon alle %s connecties"; +App::$strings["poke"] = "aanstoten"; +App::$strings["poked"] = "aangestoten"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "gepingd"; +App::$strings["prod"] = "por"; +App::$strings["prodded"] = "gepord"; +App::$strings["slap"] = "slaan"; +App::$strings["slapped"] = "sloeg"; +App::$strings["finger"] = "finger"; +App::$strings["fingered"] = "gefingerd"; +App::$strings["rebuff"] = "afpoeieren"; +App::$strings["rebuffed"] = "afgepoeierd"; +App::$strings["happy"] = "gelukkig"; +App::$strings["sad"] = "bedroefd"; +App::$strings["mellow"] = "mellow"; +App::$strings["tired"] = "moe"; +App::$strings["perky"] = "parmantig"; +App::$strings["angry"] = "boos"; +App::$strings["stupefied"] = "verbijsterd"; +App::$strings["puzzled"] = "verward"; +App::$strings["interested"] = "geïnteresseerd"; +App::$strings["bitter"] = "verbitterd"; +App::$strings["cheerful"] = "vrolijk"; +App::$strings["alive"] = "levendig"; +App::$strings["annoyed"] = "geërgerd"; +App::$strings["anxious"] = "bezorgd"; +App::$strings["cranky"] = "humeurig"; +App::$strings["disturbed"] = "verontrust"; +App::$strings["frustrated"] = "gefrustreerd "; +App::$strings["depressed"] = "gedeprimeerd"; +App::$strings["motivated"] = "gemotiveerd"; +App::$strings["relaxed"] = "ontspannen"; +App::$strings["surprised"] = "verrast"; +App::$strings["Monday"] = "maandag"; +App::$strings["Tuesday"] = "dinsdag"; +App::$strings["Wednesday"] = "woensdag"; +App::$strings["Thursday"] = "donderdag"; +App::$strings["Friday"] = "vrijdag"; +App::$strings["Saturday"] = "zaterdag"; +App::$strings["Sunday"] = "zondag"; +App::$strings["January"] = "januari"; +App::$strings["February"] = "februari"; +App::$strings["March"] = "maart"; +App::$strings["April"] = "april"; +App::$strings["May"] = "mei"; +App::$strings["June"] = "juni"; +App::$strings["July"] = "juli"; +App::$strings["August"] = "augustus"; +App::$strings["September"] = "september"; +App::$strings["October"] = "oktober"; +App::$strings["November"] = "november"; +App::$strings["December"] = "december"; +App::$strings["Unknown Attachment"] = "Onbekende bijlage"; +App::$strings["unknown"] = "onbekend"; +App::$strings["remove category"] = "categorie verwijderen"; +App::$strings["remove from file"] = "uit map verwijderen"; +App::$strings["default"] = "standaard"; +App::$strings["Page layout"] = "Pagina-lay-out"; +App::$strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs"; +App::$strings["Page content type"] = "Opmaaktype pagina"; +App::$strings["Select an alternate language"] = "Kies een andere taal"; +App::$strings["activity"] = "activiteit"; +App::$strings["Design Tools"] = "Ontwerp-hulpmiddelen"; +App::$strings["Pages"] = "Pagina's"; +App::$strings["Import website..."] = "Website importeren..."; +App::$strings["Select folder to import"] = "Kies een map om te importeren"; +App::$strings["Import from a zipped folder:"] = "Vanuit een zipbestand importeren:"; +App::$strings["Import from cloud files:"] = "Vanuit de cloud importeren:"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/maplocatie"; +App::$strings["Enter path to website files"] = "Voer de locatie in van de websitebestanden"; +App::$strings["Select folder"] = "Kies een map"; +App::$strings["Categories"] = "Categorieën"; +App::$strings["System"] = "Systeem"; +App::$strings["New App"] = "Nieuwe app"; +App::$strings["Suggestions"] = "Voorgestelde kanalen"; +App::$strings["See more..."] = "Meer..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; +App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; +App::$strings["Enter channel address"] = "Vul kanaaladres in"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; +App::$strings["Notes"] = "Aantekeningen"; +App::$strings["Remove term"] = "Verwijder zoekterm"; +App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +App::$strings["add"] = "toevoegen"; +App::$strings["Saved Folders"] = "Bewaarde mappen"; +App::$strings["Everything"] = "Alles"; +App::$strings["Archives"] = "Archieven"; +App::$strings["Refresh"] = "Vernieuwen"; +App::$strings["Account settings"] = "Account"; +App::$strings["Channel settings"] = "Kanaal"; +App::$strings["Additional features"] = "Extra functies"; +App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; +App::$strings["Display settings"] = "Weergave"; +App::$strings["Manage locations"] = "Locaties beheren"; +App::$strings["Export channel"] = "Kanaal exporteren"; +App::$strings["Connected apps"] = "Verbonden applicaties"; +App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +App::$strings["Private Mail Menu"] = "Privéberichten"; +App::$strings["Combined View"] = "Gecombineerd postvak"; +App::$strings["Inbox"] = "Postvak IN"; +App::$strings["Outbox"] = "Postvak UIT"; +App::$strings["New Message"] = "Nieuw bericht"; +App::$strings["Conversations"] = "Conversaties"; +App::$strings["Received Messages"] = "Ontvangen berichten"; +App::$strings["Sent Messages"] = "Verzonden berichten"; +App::$strings["No messages."] = "Geen berichten"; +App::$strings["Delete conversation"] = "Verwijder conversatie"; +App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; +App::$strings["Export Calendar"] = "Exporteren"; +App::$strings["Import Calendar"] = "Importeren"; +App::$strings["Chatrooms"] = "Chatkanalen"; +App::$strings["Overview"] = "Overzicht"; +App::$strings["Chat Members"] = "Chatleden"; +App::$strings["Wiki List"] = "Wiki's"; +App::$strings["Wiki Pages"] = "Wikipagina's"; +App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; +App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; +App::$strings["photo/image"] = "foto/afbeelding"; +App::$strings["Click to show more"] = "Klik voor meer"; +App::$strings["Rating Tools"] = "Beoordelingen"; +App::$strings["Rate Me"] = "Beoordeel mij"; +App::$strings["View Ratings"] = "Bekijk beoordelingen"; +App::$strings["Forums"] = "Forums"; +App::$strings["Tasks"] = "Taken"; +App::$strings["Documentation"] = "Documentatie"; +App::$strings["Project/Site Information"] = "Project- en hub-informatie"; +App::$strings["For Members"] = "Voor leden"; +App::$strings["For Administrators"] = "Voor beheerders"; +App::$strings["For Developers"] = "Voor ontwikkelaars"; +App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; +App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; +App::$strings["DB updates"] = "Database-updates"; +App::$strings["Admin"] = "Beheer"; +App::$strings["Plugin Features"] = "Plugin-opties"; +App::$strings["New window"] = "Nieuw venster"; +App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; +App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; +App::$strings["Who can see this?"] = "Wie kan dit zien?"; +App::$strings["Custom selection"] = "Handmatige selectie"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; +App::$strings["Show"] = "Tonen"; +App::$strings["Don't show"] = "Niet tonen"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien."; +App::$strings["Public Timeline"] = "Openbare tijdlijn"; App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; App::$strings["Empty name"] = "Ontbrekende naam"; App::$strings["Name too long"] = "Naam te lang"; @@ -1983,6 +1794,7 @@ App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangema App::$strings["Default Profile"] = "Standaardprofiel"; App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; +App::$strings["Edit Profile"] = "Profiel bewerken"; App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; App::$strings["Gender:"] = "Geslacht:"; App::$strings["Status:"] = "Status:"; @@ -2010,85 +1822,6 @@ App::$strings["Love/Romance:"] = "Liefde/romantiek:"; App::$strings["Work/employment:"] = "Werk/beroep:"; App::$strings["School/education:"] = "School/opleiding:"; App::$strings["Like this thing"] = "Vind dit ding leuk"; -App::$strings["General Features"] = "Algemene functies"; -App::$strings["Content Expiration"] = "Inhoud laten verlopen"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; -App::$strings["Multiple Profiles"] = "Meerdere profielen"; -App::$strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -App::$strings["Advanced Profiles"] = "Geavanceerde profielen"; -App::$strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; -App::$strings["Profile Import/Export"] = "Profiel importen/exporteren"; -App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; -App::$strings["Web Pages"] = "Webpagina's"; -App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; -App::$strings["Hide Rating"] = "Beoordelingen verbergen"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. "; -App::$strings["Private Notes"] = "Privé-aantekeningen"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)"; -App::$strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; -App::$strings["Photo Location"] = "Fotolocatie"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."; -App::$strings["Access Controlled Chatrooms"] = "Chatkanalen met toegangscontrole "; -App::$strings["Provide chatrooms and chat services with access control."] = "Chatkanalen en chatdiensten met toegangscontrole aanbieden."; -App::$strings["Smart Birthdays"] = "Slimme verjaardagen"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn."; -App::$strings["Expert Mode"] = "Expertmodus"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; -App::$strings["Premium Channel"] = "Premiumkanaal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; -App::$strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -App::$strings["Large Photos"] = "Grote foto's"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."; -App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; -App::$strings["Even More Encryption"] = "Extra encryptie"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; -App::$strings["Enable Voting Tools"] = "Peilingen inschakelen"; -App::$strings["Provide a class of post which others can vote on"] = "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."; -App::$strings["Delayed Posting"] = "Berichten uitstellen"; -App::$strings["Allow posts to be published at a later date"] = "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."; -App::$strings["Suppress Duplicate Posts/Comments"] = "Dubbele berichten/reacties tegenhouden"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "; -App::$strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; -App::$strings["Search by Date"] = "Zoek op datum"; -App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; -App::$strings["Privacy Groups"] = "Privacygroepen"; -App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen"; -App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -App::$strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -App::$strings["Network New Tab"] = "Nieuwe netwerktab"; -App::$strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; -App::$strings["Affinity Tool"] = "Verwantschapsfilter"; -App::$strings["Filter stream activity by depth of relationships"] = "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"; -App::$strings["Connection Filtering"] = "Berichtenfilters"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; -App::$strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; -App::$strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; -App::$strings["Community Tagging"] = "Taggen door anderen"; -App::$strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; -App::$strings["Post Categories"] = "Categorieën berichten"; -App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -App::$strings["Emoji Reactions"] = "Emoji-reacties"; -App::$strings["Add emoji reaction ability to posts"] = "Emoji-reacties in berichten toestaan"; -App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; -App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; -App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; -App::$strings["Star Posts"] = "Geef berichten een ster"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; -App::$strings["Tag Cloud"] = "Tagwolk"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; -App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; -App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; -App::$strings["Who can see this?"] = "Wie kan dit zien?"; -App::$strings["Custom selection"] = "Handmatige selectie"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; -App::$strings["Show"] = "Tonen"; -App::$strings["Don't show"] = "Niet tonen"; -App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien."; -App::$strings["Logged out."] = "Uitgelogd."; -App::$strings["Failed authentication"] = "Mislukte authenticatie"; App::$strings["Birthday"] = "Verjaardag of geboortedatum"; App::$strings["Age: "] = "Leeftijd:"; App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; @@ -2125,16 +1858,192 @@ App::$strings["__ctx:relative_date__ second"] = array( ); App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; +App::$strings["Frequently"] = "Regelmatig"; +App::$strings["Hourly"] = "Elk uur"; +App::$strings["Twice daily"] = "Twee keer per dag"; +App::$strings["Daily"] = "Dagelijks"; +App::$strings["Weekly"] = "Wekelijks"; +App::$strings["Monthly"] = "Maandelijks"; +App::$strings["Male"] = "Man"; +App::$strings["Female"] = "Vrouw"; +App::$strings["Currently Male"] = "Momenteel man"; +App::$strings["Currently Female"] = "Momenteel vrouw"; +App::$strings["Mostly Male"] = "Voornamelijk man"; +App::$strings["Mostly Female"] = "Voornamelijk vrouw"; +App::$strings["Transgender"] = "Transgender"; +App::$strings["Intersex"] = "Interseksueel"; +App::$strings["Transsexual"] = "Transseksueel"; +App::$strings["Hermaphrodite"] = "Hermafrodiet"; +App::$strings["Neuter"] = "Genderneutraal"; +App::$strings["Non-specific"] = "Niet gespecificeerd"; +App::$strings["Undecided"] = "Nog niet beslist"; +App::$strings["Males"] = "Mannen"; +App::$strings["Females"] = "Vrouwen"; +App::$strings["Gay"] = "Homoseksueel"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Geen voorkeur"; +App::$strings["Bisexual"] = "Biseksueel"; +App::$strings["Autosexual"] = "Autoseksueel"; +App::$strings["Abstinent"] = "Seksuele onthouding"; +App::$strings["Virgin"] = "Maagd"; +App::$strings["Deviant"] = "Afwijkend"; +App::$strings["Fetish"] = "Fetisj"; +App::$strings["Oodles"] = "Veel"; +App::$strings["Nonsexual"] = "Aseksueel"; +App::$strings["Single"] = "Alleen"; +App::$strings["Lonely"] = "Eenzaam"; +App::$strings["Available"] = "Beschikbaar"; +App::$strings["Unavailable"] = "Niet beschikbaar"; +App::$strings["Has crush"] = "Heeft een oogje op iemand"; +App::$strings["Infatuated"] = "Smoorverliefd"; +App::$strings["Dating"] = "Aan het daten"; +App::$strings["Unfaithful"] = "Ontrouw"; +App::$strings["Sex Addict"] = "Seksverslaafd"; +App::$strings["Friends/Benefits"] = "Vriendschap plus"; +App::$strings["Casual"] = "Ongebonden/vluchtig"; +App::$strings["Engaged"] = "Verloofd"; +App::$strings["Married"] = "Getrouwd"; +App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +App::$strings["Partners"] = "Partners"; +App::$strings["Cohabiting"] = "Samenwonend"; +App::$strings["Common law"] = "Common-law-huwelijk"; +App::$strings["Happy"] = "Gelukkig"; +App::$strings["Not looking"] = "Niet op zoek"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Verraden"; +App::$strings["Separated"] = "Uit elkaar"; +App::$strings["Unstable"] = "Onstabiel"; +App::$strings["Divorced"] = "Gescheiden"; +App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +App::$strings["Widowed"] = "Weduwnaar/weduwe"; +App::$strings["Uncertain"] = "Onzeker"; +App::$strings["It's complicated"] = "Het is ingewikkeld"; +App::$strings["Don't care"] = "Maakt mij niks uit"; +App::$strings["Ask me"] = "Vraag het me"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; +App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; +App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; +App::$strings["a new photo"] = "een nieuwe foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; +App::$strings["Photo Albums"] = "Fotoalbums"; +App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +App::$strings["guest:"] = "gast:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; +App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +App::$strings["Categories:"] = "Categorieën:"; +App::$strings["Filed under:"] = "Bewaard onder:"; +App::$strings["View in context"] = "In context bekijken"; +App::$strings["remove"] = "verwijderen"; +App::$strings["Loading..."] = "Aan het laden..."; +App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; +App::$strings["View Source"] = "Bron weergeven"; +App::$strings["Follow Thread"] = "Conversatie volgen"; +App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; +App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; +App::$strings["Edit Connection"] = "Connectie bewerken"; +App::$strings["Message"] = "Bericht"; +App::$strings["%s likes this."] = "%s vindt dit leuk."; +App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d persoon vindt dit leuk.", + 1 => "%2\$d personen vinden dit leuk.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d persoon vindt dit niet leuk.", + 1 => "%2\$d personen vinden dit niet leuk.", +); +App::$strings["and"] = "en"; +App::$strings[", and %d other people"] = array( + 0 => ", en %d ander persoon", + 1 => ", en %d andere personen", +); +App::$strings["%s like this."] = "%s vinden dit leuk."; +App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; +App::$strings["Set your location"] = "Locatie instellen"; +App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; +App::$strings["Tag term:"] = "Tag:"; +App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; +App::$strings["Comments enabled"] = "Reacties ingeschakeld"; +App::$strings["Comments disabled"] = "Reacties uitgeschakeld"; +App::$strings["Page link name"] = "Linknaam pagina"; +App::$strings["Post as"] = "Bericht plaatsen als"; +App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; +App::$strings["Disable comments"] = "Reacties uitschakelen"; +App::$strings["Toggle comments"] = "Reacties in- of uitschakelen"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; +App::$strings["Set publish date"] = "Publicatiedatum instellen"; +App::$strings["Discover"] = "Ontdekken"; +App::$strings["Imported public streams"] = "Openbare streams importeren"; +App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; +App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; +App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; +App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +App::$strings["Starred"] = "Met ster"; +App::$strings["Favourite Posts"] = "Favoriete berichten"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; +App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; +App::$strings["About"] = "Over"; +App::$strings["Profile Details"] = "Profiel"; +App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; +App::$strings["Bookmarks"] = "Bladwijzers"; +App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; +App::$strings["Manage Webpages"] = "Webpagina's beheren"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "aanwezig", + 1 => "aanwezig", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "niet aanwezig", + 1 => "niet aanwezig", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "nog niet beslist", + 1 => "nog niet beslist", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "eens", + 1 => "eens", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "oneens", + 1 => "oneens", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "onthouding", + 1 => "onthoudingen", +); +App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; App::$strings["Add new connections to this privacy group"] = "Voeg nieuwe connecties aan deze privacygroep toe"; App::$strings["edit"] = "bewerken"; +App::$strings["Privacy Groups"] = "Privacygroepen"; App::$strings["Edit group"] = "Privacygroep bewerken"; App::$strings["Add privacy group"] = "Privacygroep toevoegen"; App::$strings["Channels not in any privacy group"] = "Kanalen die zich in geen enkele privacygroep bevinden"; +App::$strings["New Page"] = "Nieuwe pagina"; +App::$strings["Title"] = "Titel"; +App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["Starts:"] = "Start:"; +App::$strings["Finishes:"] = "Einde:"; +App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +App::$strings["Not specified"] = "Niet aangegeven"; +App::$strings["Needs Action"] = "Actie vereist"; +App::$strings["Completed"] = "Voltooid"; +App::$strings["In Process"] = "In behandeling"; +App::$strings["Cancelled"] = "Geannuleerd"; +App::$strings["Attachments:"] = "Bijlagen:"; +App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; App::$strings["Delete this item?"] = "Dit item verwijderen?"; -App::$strings["[-] show less"] = "[-] minder reacties weergeven"; -App::$strings["[+] expand"] = "[+] uitklappen"; -App::$strings["[-] collapse"] = "[-] inklappen"; +App::$strings["%s show less"] = "%s minder reacties weergeven"; +App::$strings["%s expand"] = "%s uitklappen"; +App::$strings["%s collapse"] = "%s inklappen"; App::$strings["Password too short"] = "Wachtwoord te kort"; App::$strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; App::$strings["everybody"] = "iedereen"; @@ -2189,75 +2098,209 @@ App::$strings["__ctx:calendar__ month"] = "maand"; App::$strings["__ctx:calendar__ week"] = "week"; App::$strings["__ctx:calendar__ day"] = "dag"; App::$strings["__ctx:calendar__ All day"] = "hele dag"; -App::$strings["view full size"] = "volledige grootte tonen"; -App::$strings["No Subject"] = "Geen onderwerp"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; -App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; -App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; -App::$strings["a new photo"] = "een nieuwe foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; -App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -App::$strings["Invalid data packet"] = "Datapakket ongeldig"; -App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; -App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; -App::$strings["invalid target signature"] = "ongeldig doelkenmerk"; -App::$strings["New Page"] = "Nieuwe pagina"; -App::$strings["Title"] = "Titel"; -App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; -App::$strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; -App::$strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; -App::$strings["Can view my file storage and photos"] = "Kan mijn foto's en andere bestanden bekijken"; -App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; -App::$strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; -App::$strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; -App::$strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; -App::$strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; -App::$strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; -App::$strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; -App::$strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; -App::$strings["Can write to my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; -App::$strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; -App::$strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; -App::$strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; -App::$strings["Social Networking"] = "Sociaal netwerk"; -App::$strings["Social - Mostly Public"] = "Sociaal - Vrijwel alles openbaar"; -App::$strings["Social - Restricted"] = "Sociaal - Beperkt zichtbaar"; -App::$strings["Social - Private"] = "Sociaal - Verborgen kanaal"; -App::$strings["Community Forum"] = "Groepsforum"; -App::$strings["Forum - Mostly Public"] = "Forum - Vrijwel alles openbaar"; -App::$strings["Forum - Restricted"] = "Forum - Beperkt zichtbaar"; -App::$strings["Forum - Private"] = "Forum - Verborgen kanaal"; -App::$strings["Feed Republish"] = "Feed herpubliceren"; -App::$strings["Feed - Mostly Public"] = "Feed - Vrijwel alles openbaar"; -App::$strings["Feed - Restricted"] = "Feed - Beperkt zichtbaar"; -App::$strings["Special Purpose"] = "Speciaal doel"; -App::$strings["Special - Celebrity/Soapbox"] = "Speciaal - Beroemdheid/alleen volgen"; -App::$strings["Special - Group Repository"] = "Speciaal - Groepsopslag"; -App::$strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; +App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; +App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; +App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; +App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; +App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; +App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; +App::$strings["Item was not found."] = "Item niet gevonden"; +App::$strings["No source file."] = "Geen bronbestand."; +App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +App::$strings["Path not available."] = "Locatie niet beschikbaar."; +App::$strings["Empty pathname"] = "Ontbrekende locatienaam"; +App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of locatie"; +App::$strings["Path not found."] = "Locatie niet gevonden"; +App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +App::$strings["database storage failed."] = "opslag in database mislukt."; +App::$strings["Empty path"] = "Ontbrekende locatie"; +App::$strings["Logged out."] = "Uitgelogd."; +App::$strings["Failed authentication"] = "Mislukte authenticatie"; +App::$strings["Login failed."] = "Inloggen mislukt."; App::$strings[" and "] = " en "; App::$strings["public profile"] = "openbaar profiel"; App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; -App::$strings["Attachments:"] = "Bijlagen:"; -App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; +App::$strings["Invalid data packet"] = "Datapakket ongeldig"; +App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; +App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; +App::$strings["invalid target signature"] = "ongeldig doelkenmerk"; +App::$strings["General Features"] = "Algemene functies"; +App::$strings["Content Expiration"] = "Inhoud laten verlopen"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; +App::$strings["Multiple Profiles"] = "Meerdere profielen"; +App::$strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +App::$strings["Advanced Profiles"] = "Geavanceerde profielen"; +App::$strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; +App::$strings["Profile Import/Export"] = "Profiel importen/exporteren"; +App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; +App::$strings["Web Pages"] = "Webpagina's"; +App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; +App::$strings["Provide a wiki for your channel"] = "Voeg een wiki aan jouw kanaal toe"; +App::$strings["Private Notes"] = "Privé-aantekeningen"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)"; +App::$strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; +App::$strings["Photo Location"] = "Fotolocatie"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."; +App::$strings["Access Controlled Chatrooms"] = "Chatkanalen met toegangscontrole "; +App::$strings["Provide chatrooms and chat services with access control."] = "Chatkanalen en chatdiensten met toegangscontrole aanbieden."; +App::$strings["Smart Birthdays"] = "Slimme verjaardagen"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn."; +App::$strings["Expert Mode"] = "Expertmodus"; +App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; +App::$strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +App::$strings["Large Photos"] = "Grote foto's"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."; +App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; +App::$strings["Even More Encryption"] = "Extra encryptie"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; +App::$strings["Enable Voting Tools"] = "Peilingen inschakelen"; +App::$strings["Provide a class of post which others can vote on"] = "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."; +App::$strings["Disable Comments"] = "Reacties uitschakelen"; +App::$strings["Provide the option to disable comments for a post"] = "Maak het mogelijk dat reacties op een bericht kunnen worden uitgeschakeld"; +App::$strings["Delayed Posting"] = "Berichten uitstellen"; +App::$strings["Allow posts to be published at a later date"] = "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."; +App::$strings["Suppress Duplicate Posts/Comments"] = "Dubbele berichten/reacties tegenhouden"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "; +App::$strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; +App::$strings["Search by Date"] = "Zoek op datum"; +App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; +App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen"; +App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +App::$strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +App::$strings["Network New Tab"] = "Nieuwe netwerktab"; +App::$strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; +App::$strings["Affinity Tool"] = "Verwantschapsfilter"; +App::$strings["Filter stream activity by depth of relationships"] = "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"; +App::$strings["Connection Filtering"] = "Berichtenfilters"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; +App::$strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; +App::$strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; +App::$strings["Community Tagging"] = "Taggen door anderen"; +App::$strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; +App::$strings["Post Categories"] = "Categorieën berichten"; +App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +App::$strings["Emoji Reactions"] = "Emoji-reacties"; +App::$strings["Add emoji reaction ability to posts"] = "Emoji-reacties in berichten toestaan"; +App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; +App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; +App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; +App::$strings["Star Posts"] = "Geef berichten een ster"; +App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; +App::$strings["Tag Cloud"] = "Tagwolk"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; +App::$strings["Premium Channel"] = "Premiumkanaal"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; +App::$strings["Tags"] = "Tags"; +App::$strings["Keywords"] = "Trefwoorden"; +App::$strings["have"] = "heb"; +App::$strings["has"] = "heeft"; +App::$strings["want"] = "wil"; +App::$strings["wants"] = "wil"; +App::$strings["likes"] = "vindt dit leuk"; +App::$strings["dislikes"] = "vindt dit niet leuk"; +App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; +App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; +App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; +App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; +App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; +App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +App::$strings["your registration password"] = "jouw registratiewachtwoord"; +App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; +App::$strings["Account approved."] = "Account goedgekeurd"; +App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; +App::$strings["Image/photo"] = "Afbeelding/foto"; +App::$strings["Encrypted content"] = "Versleutelde inhoud"; +App::$strings["Install %s element: "] = "Installeer %s-element: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["$1 wrote:"] = "$1 schreef:"; +App::$strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +App::$strings["Find Channels"] = "Kanalen vinden"; +App::$strings["Enter name or interest"] = "Vul naam of interesse in"; +App::$strings["Connect/Follow"] = "Verbinden/volgen"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; +App::$strings["Random Profile"] = "Willekeurig profiel"; +App::$strings["Invite Friends"] = "Vrienden uitnodigen"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; +App::$strings["%d connection in common"] = array( + 0 => "%d gemeenschappelijke connectie", + 1 => "%d gemeenschappelijke connecties", +); +App::$strings["show more"] = "meer connecties weergeven"; +App::$strings["Directory Options"] = "Opties kanalengids"; +App::$strings["Safe Mode"] = "Veilig zoeken"; +App::$strings["Public Forums Only"] = "Alleen openbare forums"; +App::$strings["This Website Only"] = "Alleen deze hub"; +App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; +App::$strings["[no subject]"] = "[geen onderwerp]"; +App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; +App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; +App::$strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; +App::$strings["Logout"] = "Uitloggen"; +App::$strings["End this session"] = "Beëindig deze sessie"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Jouw kanaal"; +App::$strings["Your profile page"] = "Jouw profielpagina"; +App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +App::$strings["Edit your profile"] = "Jouw profiel bewerken"; +App::$strings["Your photos"] = "Jouw foto's"; +App::$strings["Your files"] = "Jouw bestanden"; +App::$strings["Your chatrooms"] = "Jouw chatkanalen"; +App::$strings["Your bookmarks"] = "Jouw bladwijzers"; +App::$strings["Your webpages"] = "Jouw webpagina's"; +App::$strings["Your wiki"] = "Jouw wiki"; +App::$strings["Sign in"] = "Inloggen"; +App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; +App::$strings["Remote authentication"] = "Authenticatie op afstand"; +App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Maak een account aan"; +App::$strings["Help and documentation"] = "Hulp en documentatie"; +App::$strings["Applications, utilities, links, games"] = "Apps"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; +App::$strings["Channel Directory"] = "Kanalengids"; +App::$strings["Your grid"] = "Jouw grid"; +App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; +App::$strings["Channel home"] = "Jouw kanaal"; +App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +App::$strings["Notices"] = "Notificaties"; +App::$strings["Notifications"] = "Notificaties"; +App::$strings["See all notifications"] = "Alle notificaties weergeven"; +App::$strings["Private mail"] = "Privéberichten"; +App::$strings["See all private messages"] = "Alle privéberichten weergeven"; +App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +App::$strings["Event Calendar"] = "Agenda"; +App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; +App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; +App::$strings["Manage Your Channels"] = "Beheer je kanalen"; +App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; +App::$strings["Please wait..."] = "Wachten aub..."; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla-standaard)"; App::$strings["Theme settings"] = "Thema-instellingen"; -App::$strings["Select scheme"] = "Kies schema van thema"; App::$strings["Narrow navbar"] = "Smalle navigatiebalk"; App::$strings["Navigation bar background color"] = "Achtergrondkleur navigatiebalk"; App::$strings["Navigation bar gradient top color"] = "Bovenste gradiëntkleur navigatiebalk"; @@ -2294,6 +2337,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; App::$strings["Update Error at %s"] = "Update-fout op %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla"; +App::$strings["Login/Email"] = "E-mailadres of inlognaam"; App::$strings["Password"] = "Wachtwoord"; App::$strings["Remember me"] = "Aangemeld blijven"; App::$strings["Forgot your password?"] = "Wachtwoord vergeten?"; -- cgit v1.2.3 From ea0be8ea1a22abfdedae0d0c47677a9de44e08c0 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 31 Aug 2016 17:49:22 -0700 Subject: provide techlevels in the pro server role. Should have no visible effect on other roles. --- Zotlabs/Lib/ThreadItem.php | 3 ++- Zotlabs/Module/Settings.php | 23 +++++++++++++++++++++-- Zotlabs/Render/SmartyTemplate.php | 1 + boot.php | 2 +- include/account.php | 27 +++++++++++++++++++++++++++ include/bbcode.php | 3 +-- include/conversation.php | 4 +++- include/features.php | 6 +++--- include/nav.php | 1 + include/widgets.php | 15 ++++++--------- install/update.php | 9 ++++++++- view/tpl/settings_account.tpl | 7 +++++++ 12 files changed, 81 insertions(+), 20 deletions(-) diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index eee3b2a4f..f50b9680e 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -246,10 +246,11 @@ class ThreadItem { } $server_role = get_config('system','server_role'); + $has_bookmarks = false; if(is_array($item['term'])) { foreach($item['term'] as $t) { - if(($server_role != 'basic') && ($t['ttype'] == TERM_BOOKMARK)) + if((get_account_techlevel() > 0) && ($t['ttype'] == TERM_BOOKMARK)) $has_bookmarks = true; } } diff --git a/Zotlabs/Module/Settings.php b/Zotlabs/Module/Settings.php index bd16b930e..81c24e02b 100644 --- a/Zotlabs/Module/Settings.php +++ b/Zotlabs/Module/Settings.php @@ -306,6 +306,8 @@ class Settings extends \Zotlabs\Web\Controller { $errs = array(); $email = ((x($_POST,'email')) ? trim(notags($_POST['email'])) : ''); + $techlevel = ((array_key_exists('techlevel',$_POST)) ? intval($_POST['techlevel']) : 0); + $account = \App::get_account(); if($email != $account['account_email']) { if(! valid_email($email)) @@ -324,6 +326,13 @@ class Settings extends \Zotlabs\Web\Controller { $errs[] = t('System failure storing new email. Please try again.'); } } + if($techlevel != $account['account_level']) { + $r = q("update account set account_level = %d where account_id = %d", + intval($techlevel), + intval($account['account_id']) + ); + info( t('Technical skill level updated') . EOL); + } if($errs) { foreach($errs as $err) @@ -783,8 +792,17 @@ class Settings extends \Zotlabs\Web\Controller { call_hooks('account_settings', $account_settings); $email = \App::$account['account_email']; - - + + $techlevels = [ + '0' => t('Beginner/Basic'), + '1' => t('Novice - not skilled but willing to learn'), + '2' => t('Intermediate - somewhat comfortable'), + '3' => t('Advanced - very comfortable'), + '4' => t('Expert - I can write computer code'), + '5' => t('Wizard - I probably know more than you do') + ]; + + $tpl = get_markup_template("settings_account.tpl"); $o .= replace_macros($tpl, array( '$form_security_token' => get_form_security_token("settings_account"), @@ -792,6 +810,7 @@ class Settings extends \Zotlabs\Web\Controller { '$origpass' => array('origpass', t('Current Password'), ' ',''), '$password1'=> array('npassword', t('Enter New Password'), '', ''), '$password2'=> array('confirm', t('Confirm New Password'), '', t('Leave password fields blank unless changing')), + '$techlevel' => [ 'techlevel', t('Your technical skill level'), \App::$account['account_level'], t('Used to provide a member experience matched to your comfort level'), $techlevels ], '$submit' => t('Submit'), '$email' => array('email', t('Email Address:'), $email, ''), '$removeme' => t('Remove Account'), diff --git a/Zotlabs/Render/SmartyTemplate.php b/Zotlabs/Render/SmartyTemplate.php index 7abe0731c..ffe58e286 100755 --- a/Zotlabs/Render/SmartyTemplate.php +++ b/Zotlabs/Render/SmartyTemplate.php @@ -35,6 +35,7 @@ class SmartyTemplate implements TemplateEngine { $r['$z_baseurl'] = z_root(); $r['$z_server_role'] = \Zotlabs\Lib\System::get_server_role(); + $r['$z_techlevel'] = get_account_techlevel(); if(gettype($s) === 'string') { $template = $s; diff --git a/boot.php b/boot.php index dc1d08aff..ea3522dc7 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' ); define ( 'STD_VERSION', '1.13' ); define ( 'ZOT_REVISION', '1.1' ); -define ( 'DB_UPDATE_VERSION', 1181 ); +define ( 'DB_UPDATE_VERSION', 1182 ); /** diff --git a/include/account.php b/include/account.php index 5c44f13ca..c11f1668b 100644 --- a/include/account.php +++ b/include/account.php @@ -14,6 +14,13 @@ require_once('include/crypto.php'); require_once('include/channel.php'); +function get_account_by_id($account_id) { + $r = q("select * from account where account_id = %d", + intval($account_id) + ); + return (($r) ? $r[0] : false); +} + function check_account_email($email) { $result = array('error' => false, 'message' => ''); @@ -751,3 +758,23 @@ function upgrade_bool_message($bbcode = false) { $x = upgrade_link($bbcode); return t('This action is not available under your subscription plan.') . (($x) ? ' ' . $x : '') ; } + + +function get_account_techlevel($account_id = 0) { + + $role = \Zotlabs\Lib\System::get_server_role(); + if($role == 'basic') + return 0; + if($role == 'standard') + return 5; + + if(! $account_id) { + $x = \App::get_account(); + } + else { + $x = get_account_by_id($account_id); + } + + return (($x) ? intval($x['account_level']) : 0); + +} \ No newline at end of file diff --git a/include/bbcode.php b/include/bbcode.php index 2d86bd263..9c65afc59 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -666,8 +666,7 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true, $cache = false) $Text = preg_replace("/\[zrl\=([$URLSearchString]*)\](.*?)\[\/zrl\]/ism", '$2', $Text); } - // Remove bookmarks from UNO - if (get_config('system','server_role') === 'basic') + if (get_account_techlevel() > 2) $Text = str_replace('#^', '', $Text); // Perform MAIL Search diff --git a/include/conversation.php b/include/conversation.php index 2e056b620..a56a765be 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1621,6 +1621,8 @@ function profile_tabs($a, $is_owner = false, $nickname = null){ $uid = ((App::$profile['profile_uid']) ? App::$profile['profile_uid'] : local_channel()); + $account_id = ((App::$profile['profile_uid']) ? App::$profile['channel_account_id'] : App::get_account_id()); + if($uid == local_channel()) { $cal_link = ''; @@ -1723,7 +1725,7 @@ function profile_tabs($a, $is_owner = false, $nickname = null){ ); } - if(feature_enabled($uid,'wiki') && (get_config('system','server_role') !== 'basic')) { + if(feature_enabled($uid,'wiki') && (get_account_techlevel($account_id) > 3)) { $tabs[] = array( 'label' => t('Wiki'), 'url' => z_root() . '/wiki/' . $nickname, diff --git a/include/features.php b/include/features.php index 4e86b7881..6c5ce147c 100644 --- a/include/features.php +++ b/include/features.php @@ -38,7 +38,7 @@ function get_feature_default($feature) { function get_features($filtered = true) { - $server_role = get_config('system','server_role'); + $server_role = \Zotlabs\Lib\System::get_server_role(); if($server_role === 'basic' && $filtered) return array(); @@ -54,7 +54,7 @@ function get_features($filtered = true) { array('advanced_profiles', t('Advanced Profiles'), t('Additional profile sections and selections'),false,get_config('feature_lock','advanced_profiles')), array('profile_export', t('Profile Import/Export'), t('Save and load profile details across sites/channels'),false,get_config('feature_lock','profile_export')), array('webpages', t('Web Pages'), t('Provide managed web pages on your channel'),false,get_config('feature_lock','webpages')), - array('wiki', t('Wiki'), t('Provide a wiki for your channel'),(($server_role === 'basic') ? false : true),get_config('feature_lock','wiki')), + array('wiki', t('Wiki'), t('Provide a wiki for your channel'),(($server_role === 'basic' || get_account_techlevel() < 3) ? false : true),get_config('feature_lock','wiki')), // array('hide_rating', t('Hide Rating'), t('Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else.'),false,get_config('feature_lock','hide_rating')), array('private_notes', t('Private Notes'), t('Enables a tool to store notes and reminders (note: not encrypted)'),false,get_config('feature_lock','private_notes')), array('nav_channel_select', t('Navigation Channel Select'), t('Change channels directly from within the navigation dropdown menu'),false,get_config('feature_lock','nav_channel_select')), @@ -105,7 +105,7 @@ function get_features($filtered = true) { - if(\Zotlabs\Lib\System::get_server_role() === 'pro') { + if($server_role === 'pro' && get_account_techlevel() > 3) { $arr['general'][] = [ 'premium_channel', t('Premium Channel'), diff --git a/include/nav.php b/include/nav.php index 025da71b3..9b6896d15 100644 --- a/include/nav.php +++ b/include/nav.php @@ -63,6 +63,7 @@ EOT; $server_role = get_config('system','server_role'); $basic = (($server_role === 'basic') ? true : false); + $techlevel = get_account_techlevel(); // nav links: array of array('href', 'text', 'extra css classes', 'title') $nav = Array(); diff --git a/include/widgets.php b/include/widgets.php index 9429df249..16582d084 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -594,14 +594,11 @@ function widget_settings_menu($arr) { ); } - // IF can go away when UNO export and import is fully functional - if(get_config('system','server_role') !== 'basic') { - $tabs[] = array( - 'label' => t('Export channel'), - 'url' => z_root() . '/uexport', - 'selected' => '' - ); - } + $tabs[] = array( + 'label' => t('Export channel'), + 'url' => z_root() . '/uexport', + 'selected' => '' + ); $tabs[] = array( 'label' => t('Connected apps'), @@ -609,7 +606,7 @@ function widget_settings_menu($arr) { 'selected' => ((argv(1) === 'oauth') ? 'active' : ''), ); - if(get_config('system','server_role') !== 'basic') { + if(get_account_techlevel() > 2) { $tabs[] = array( 'label' => t('Guest Access Tokens'), 'url' => z_root() . '/settings/tokens', diff --git a/install/update.php b/install/update.php index 3d0e5b00d..2b3a9b338 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ + {{/if}} +
    -- cgit v1.2.3 From c3fdd00aa458523d24b4b897845243f00a4e1769 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 31 Aug 2016 18:39:50 -0700 Subject: allow public comments (sort of - see the notes) --- include/items.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/include/items.php b/include/items.php index 53a7b7927..9079621a3 100755 --- a/include/items.php +++ b/include/items.php @@ -234,11 +234,10 @@ function can_comment_on_post($observer_xchan, $item) { return true; break; case 'public': - // We don't allow public comments yet, until a policy - // for dealing with anonymous comments is in place with - // a means to moderate comments. Until that time, return - // false. - return false; + // We don't really allow or support public comments yet, but anonymous + // folks won't ever reach this point (as $observer_xchan will be empty). + // This means the viewer has an xchan and we can identify them. + return true; break; case 'any connections': case 'contacts': -- cgit v1.2.3 From d18a8e849e5cd3b34ce53a2ea57a7ec8da86b829 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 31 Aug 2016 19:22:47 -0700 Subject: Do not allow PERMS_PUBLIC as a choice for writable permission limits. Change text of buttons in expert mode for consistency with usage ('Channel Permission Limits' and 'Default Access Control List (ACL)'). --- Zotlabs/Module/Settings.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Settings.php b/Zotlabs/Module/Settings.php index 81c24e02b..847f64da9 100644 --- a/Zotlabs/Module/Settings.php +++ b/Zotlabs/Module/Settings.php @@ -1121,6 +1121,8 @@ class Settings extends \Zotlabs\Web\Controller { foreach($global_perms as $k => $perm) { $options = array(); foreach($perm_opts as $opt) { + if((! strstr($perm,'view')) && $opt[1] == PERMS_PUBLIC) + continue; $options[$opt[1]] = $opt[0]; } $permiss[] = array($k,$perm,$limits[$k],'',$options); @@ -1274,11 +1276,11 @@ class Settings extends \Zotlabs\Web\Controller { '$permiss_arr' => $permiss, '$blocktags' => array('blocktags',t('Allow others to tag your posts'), 1-$blocktags, t('Often used by the community to retro-actively flag inappropriate content'), $yes_no), - '$lbl_p2macro' => t('Advanced Privacy Settings'), + '$lbl_p2macro' => t('Channel Permission Limits'), '$expire' => array('expire',t('Expire other channel content after this many days'),$expire, t('0 or blank to use the website limit.') . ' ' . ((intval($sys_expire)) ? sprintf( t('This website expires after %d days.'),intval($sys_expire)) : t('This website does not expire imported content.')) . ' ' . t('The website limit takes precedence if lower than your limit.')), '$maxreq' => array('maxreq', t('Maximum Friend Requests/Day:'), intval($channel['channel_max_friend_req']) , t('May reduce spam activity')), - '$permissions' => t('Default Post and Publish Permissions'), + '$permissions' => t('Default Access Control List (ACL)'), '$permdesc' => t("\x28click to open/close\x29"), '$aclselect' => populate_acl($perm_defaults, false, \Zotlabs\Lib\PermissionDescription::fromDescription(t('Use my default audience setting for the type of object published'))), '$allow_cid' => acl2json($perm_defaults['allow_cid']), -- cgit v1.2.3 From 4bdb02849980982f0e1f3cccc12386c2a800f0bd Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 31 Aug 2016 19:55:45 -0700 Subject: Hubzilla pro: Don't offer 'custom/expert' permissions below a techlevel of 4; but any existing expert mode members are grandfathered in. --- Zotlabs/Module/New_channel.php | 9 +++++++-- Zotlabs/Module/Register.php | 15 ++++++++++----- Zotlabs/Module/Settings.php | 8 ++++++-- 3 files changed, 23 insertions(+), 9 deletions(-) diff --git a/Zotlabs/Module/New_channel.php b/Zotlabs/Module/New_channel.php index 26883b6e2..8e6fd1d37 100644 --- a/Zotlabs/Module/New_channel.php +++ b/Zotlabs/Module/New_channel.php @@ -125,11 +125,16 @@ class New_channel extends \Zotlabs\Web\Controller { } } + $privacy_role = ((x($_REQUEST,'permissions_role')) ? $_REQUEST['permissions_role'] : "" ); + + $perm_roles = \Zotlabs\Access\PermissionRoles::roles(); + if((get_account_techlevel() < 4) && $privacy_role !== 'custom') + unset($perm_roles[t('Other')]); + $name = array('name', t('Name or caption'), ((x($_REQUEST,'name')) ? $_REQUEST['name'] : ''), t('Examples: "Bob Jameson", "Lisa and her Horses", "Soccer", "Aviation Group"'), "*"); $nickhub = '@' . \App::get_hostname(); $nickname = array('nickname', t('Choose a short nickname'), ((x($_REQUEST,'nickname')) ? $_REQUEST['nickname'] : ''), sprintf( t('Your nickname will be used to create an easy to remember channel address e.g. nickname%s'), $nickhub), "*"); - $privacy_role = ((x($_REQUEST,'permissions_role')) ? $_REQUEST['permissions_role'] : "" ); - $role = array('permissions_role' , t('Channel role and privacy'), ($privacy_role) ? $privacy_role : 'social', t('Select a channel role with your privacy requirements.') . ' ' . t('Read more about roles') . '',get_roles()); + $role = array('permissions_role' , t('Channel role and privacy'), ($privacy_role) ? $privacy_role : 'social', t('Select a channel role with your privacy requirements.') . ' ' . t('Read more about roles') . '',$perm_roles); $o = replace_macros(get_markup_template('new_channel.tpl'), array( '$title' => t('Create Channel'), diff --git a/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php index 0b16d4a66..1d8944d8e 100644 --- a/Zotlabs/Module/Register.php +++ b/Zotlabs/Module/Register.php @@ -174,7 +174,7 @@ class Register extends \Zotlabs\Web\Controller { - function get() { + function get() { $registration_is = ''; $other_sites = ''; @@ -205,6 +205,12 @@ class Register extends \Zotlabs\Web\Controller { return; } } + + $privacy_role = ((x($_REQUEST,'permissions_role')) ? $_REQUEST['permissions_role'] : ""); + + $perm_roles = \Zotlabs\Access\PermissionRoles::roles(); + if((get_account_techlevel() < 4) && $privacy_role !== 'custom') + unset($perm_roles[t('Other')]); // Configurable terms of service link @@ -231,8 +237,7 @@ class Register extends \Zotlabs\Web\Controller { $name = array('name', t('Name or caption'), ((x($_REQUEST,'name')) ? $_REQUEST['name'] : ''), t('Examples: "Bob Jameson", "Lisa and her Horses", "Soccer", "Aviation Group"')); $nickhub = '@' . str_replace(array('http://','https://','/'), '', get_config('system','baseurl')); $nickname = array('nickname', t('Choose a short nickname'), ((x($_REQUEST,'nickname')) ? $_REQUEST['nickname'] : ''), sprintf( t('Your nickname will be used to create an easy to remember channel address e.g. nickname%s'), $nickhub)); - $privacy_role = ((x($_REQUEST,'permissions_role')) ? $_REQUEST['permissions_role'] : ""); - $role = array('permissions_role' , t('Channel role and privacy'), ($privacy_role) ? $privacy_role : 'social', t('Select a channel role with your privacy requirements.') . ' ' . t('Read more about roles') . '',get_roles()); + $role = array('permissions_role' , t('Channel role and privacy'), ($privacy_role) ? $privacy_role : 'social', t('Select a channel role with your privacy requirements.') . ' ' . t('Read more about roles') . '',$perm_roles); $tos = array('tos', $label_tos, '', '', array(t('no'),t('yes'))); $server_role = get_config('system','server_role'); @@ -254,11 +259,11 @@ class Register extends \Zotlabs\Web\Controller { '$invite_code' => $invite_code, '$auto_create' => $auto_create, '$name' => $name, - '$role' => $role, + '$role' => $role, '$default_role' => $default_role, '$nickname' => $nickname, '$enable_tos' => $enable_tos, - '$tos' => $tos, + '$tos' => $tos, '$email' => $email, '$pass1' => $password, '$pass2' => $password2, diff --git a/Zotlabs/Module/Settings.php b/Zotlabs/Module/Settings.php index 847f64da9..dedfdda86 100644 --- a/Zotlabs/Module/Settings.php +++ b/Zotlabs/Module/Settings.php @@ -1238,7 +1238,11 @@ class Settings extends \Zotlabs\Web\Controller { $permissions_role = 'custom'; $permissions_set = (($permissions_role != 'custom') ? true : false); - + + $perm_roles = \Zotlabs\Access\PermissionRoles::roles(); + if((get_account_techlevel() < 4) && $permissions_role !== 'custom') + unset($perm_roles[t('Other')]); + $vnotify = get_pconfig(local_channel(),'system','vnotify'); $always_show_in_notices = get_pconfig(local_channel(),'system','always_show_in_notices'); if($vnotify === false) @@ -1289,7 +1293,7 @@ class Settings extends \Zotlabs\Web\Controller { '$deny_gid' => acl2json($perm_defaults['deny_gid']), '$suggestme' => $suggestme, '$group_select' => $group_select, - '$role' => array('permissions_role' , t('Channel permissions category:'), $permissions_role, '', get_roles()), + '$role' => array('permissions_role' , t('Channel permissions category:'), $permissions_role, '', $perm_roles), '$profile_in_dir' => $profile_in_dir, '$hide_friends' => $hide_friends, -- cgit v1.2.3 From 8ba1bf02a479941740847cd9fad707f2fc86390c Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 31 Aug 2016 20:29:32 -0700 Subject: document that include/permissions is being deprecated but may still be needed. --- include/permissions.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/permissions.php b/include/permissions.php index 637193973..d21b45550 100644 --- a/include/permissions.php +++ b/include/permissions.php @@ -6,8 +6,14 @@ require_once('include/security.php'); * @file include/permissions.php * * This file conntains functions to check and work with permissions. + * + * Most of this file is obsolete and has been superceded by extensible permissions in v1.12; it is left here + * for reference and because we haven't yet checked that all functions have been replaced and are available + * elsewhere (typically Zotlabs/Access/*). */ + + /** * @brief Return an array with all available permissions. * -- cgit v1.2.3 From fa8febbb31dee83d608849e3f1a2f56d664d1f13 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 31 Aug 2016 21:57:08 -0700 Subject: some issues with saved search - tags and connection searches weren't being saved. --- Zotlabs/Module/Network.php | 1 + include/text.php | 2 +- include/widgets.php | 38 +++++++++++++++++++++++++++++++++++++- view/pdl/mod_search.pdl | 2 +- view/tpl/sitesearch.tpl | 5 +++++ 5 files changed, 45 insertions(+), 3 deletions(-) create mode 100644 view/tpl/sitesearch.tpl diff --git a/Zotlabs/Module/Network.php b/Zotlabs/Module/Network.php index 50bb05075..70ba263bc 100644 --- a/Zotlabs/Module/Network.php +++ b/Zotlabs/Module/Network.php @@ -61,6 +61,7 @@ class Network extends \Zotlabs\Web\Controller { $search = (($_GET['search']) ? $_GET['search'] : ''); if($search) { + $_GET['netsearch'] = escape_tags($search); if(strpos($search,'@') === 0) { $r = q("select abook_id from abook left join xchan on abook_xchan = xchan_hash where xchan_name = '%s' and abook_channel = %d limit 1", dbesc(substr($search,1)), diff --git a/include/text.php b/include/text.php index 99ac59ca7..2c7716d11 100644 --- a/include/text.php +++ b/include/text.php @@ -936,7 +936,7 @@ function searchbox($s,$id='search-box',$url='/search',$save = false) { '$action_url' => z_root() . '/' . $url, '$search_label' => t('Search'), '$save_label' => t('Save'), - '$savedsearch' => feature_enabled(local_channel(),'savedsearch') + '$savedsearch' => ($save && feature_enabled(local_channel(),'savedsearch')) )); } diff --git a/include/widgets.php b/include/widgets.php index 16582d084..c57cbd749 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -209,7 +209,9 @@ function widget_savedsearch($arr) { if((! local_channel()) || (! feature_enabled(local_channel(),'savedsearch'))) return ''; - $search = ((x($_GET,'search')) ? $_GET['search'] : ''); + $search = ((x($_GET,'netsearch')) ? $_GET['netsearch'] : ''); + if(! $search) + $search = ((x($_GET,'search')) ? $_GET['search'] : ''); if(x($_GET,'searchsave') && $search) { $r = q("select * from `term` where `uid` = %d and `ttype` = %d and `term` = '%s' limit 1", @@ -287,6 +289,40 @@ function widget_savedsearch($arr) { return $o; } +function widget_sitesearch($arr) { + + $search = ((x($_GET,'search')) ? $_GET['search'] : ''); + + $srchurl = App::$query_string; + + $srchurl = rtrim(preg_replace('/search\=[^\&].*?(\&|$)/is','',$srchurl),'&'); + $srchurl = rtrim(preg_replace('/submit\=[^\&].*?(\&|$)/is','',$srchurl),'&'); + $srchurl = str_replace(array('?f=','&f='),array('',''),$srchurl); + + + $hasq = ((strpos($srchurl,'?') !== false) ? true : false); + $hasamp = ((strpos($srchurl,'&') !== false) ? true : false); + + if(($hasamp) && (! $hasq)) + $srchurl = substr($srchurl,0,strpos($srchurl,'&')) . '?f=&' . substr($srchurl,strpos($srchurl,'&')+1); + + $o = ''; + + $saved = array(); + + $tpl = get_markup_template("sitesearch.tpl"); + $o = replace_macros($tpl, array( + '$title' => t('Search'), + '$searchbox' => searchbox($search, 'netsearch-box', $srchurl . (($hasq) ? '' : '?f='), false), + '$saved' => $saved, + )); + + return $o; +} + + + + function widget_filer($arr) { if(! local_channel()) diff --git a/view/pdl/mod_search.pdl b/view/pdl/mod_search.pdl index 7de4a270f..cba0dc9d1 100644 --- a/view/pdl/mod_search.pdl +++ b/view/pdl/mod_search.pdl @@ -1,3 +1,3 @@ [region=aside] -[widget=savedsearch][/widget] +[widget=sitesearch][/widget] [/region] diff --git a/view/tpl/sitesearch.tpl b/view/tpl/sitesearch.tpl new file mode 100644 index 000000000..8dbf8cef5 --- /dev/null +++ b/view/tpl/sitesearch.tpl @@ -0,0 +1,5 @@ +
    + + {{$searchbox}} +
    +
    -- cgit v1.2.3 From 6adb18091124cd51e1bf8a2efae31cb83a0db075 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 31 Aug 2016 22:04:45 -0700 Subject: even though there is now a sitesearch widget, remove it from the search page pdl since we can just use the navbar and it offers more modes. --- view/pdl/mod_search.pdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/pdl/mod_search.pdl b/view/pdl/mod_search.pdl index cba0dc9d1..5096508fa 100644 --- a/view/pdl/mod_search.pdl +++ b/view/pdl/mod_search.pdl @@ -1,3 +1,3 @@ [region=aside] -[widget=sitesearch][/widget] +[comment][widget=sitesearch][/widget][/comment] [/region] -- cgit v1.2.3 From 24192ff1eff7df9a46f13349a043507f8fd9034e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 1 Sep 2016 13:57:45 +0200 Subject: introduce checklist BBcode for checklists --- include/bbcode.php | 6 ++++-- view/css/conversation.css | 3 ++- view/js/autocomplete.js | 13 ++++++++----- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/include/bbcode.php b/include/bbcode.php index 9c65afc59..bc543ca48 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -768,13 +768,14 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true, $cache = false) } // Check for list text $Text = str_replace("[*]", "
  • ", $Text); - $Text = str_replace("[]", "
  • ", $Text); - $Text = str_replace("[x]", "
  • ", $Text); + $Text = str_replace("[]", "
  • ", $Text); + $Text = str_replace("[x]", "
  • ", $Text); // handle nested lists $endlessloop = 0; while ((((strpos($Text, "[/list]") !== false) && (strpos($Text, "[list") !== false)) || + ((strpos($Text, "[/checklist]") !== false) && (strpos($Text, "[checklist]") !== false)) || ((strpos($Text, "[/ol]") !== false) && (strpos($Text, "[ol]") !== false)) || ((strpos($Text, "[/ul]") !== false) && (strpos($Text, "[ul]") !== false)) || ((strpos($Text, "[/dl]") !== false) && (strpos($Text, "[dl") !== false)) || @@ -786,6 +787,7 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true, $cache = false) $Text = preg_replace("/\[list=((?-i)I)\](.*?)\[\/list\]/ism", '
      $2
    ', $Text); $Text = preg_replace("/\[list=((?-i)a)\](.*?)\[\/list\]/ism", '
      $2
    ', $Text); $Text = preg_replace("/\[list=((?-i)A)\](.*?)\[\/list\]/ism", '
      $2
    ', $Text); + $Text = preg_replace("/\[checklist\](.*?)\[\/checklist\]/ism", '
      $1
    ', $Text); $Text = preg_replace("/\[ul\](.*?)\[\/ul\]/ism", '
      $1
    ', $Text); $Text = preg_replace("/\[ol\](.*?)\[\/ol\]/ism", '
      $1
    ', $Text); $Text = preg_replace("/\[li\](.*?)\[\/li\]/ism", '
  • $1
  • ', $Text); diff --git a/view/css/conversation.css b/view/css/conversation.css index 6acca4b0d..4f2eee17d 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -320,7 +320,8 @@ img.smiley.emoji:hover { height: 32px; } -input.listcheckbox { + +.checklist input { margin: 0px; vertical-align: middle; } diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 63f1e9a13..62a3b6f06 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -102,8 +102,8 @@ function submit_form(e) { function getWord(text, caretPos) { var index = text.indexOf(caretPos); - var postText = text.substring(caretPos, caretPos+8); - if ((postText.indexOf('[/list]') > 0) || postText.indexOf('[/ul]') > 0 || postText.indexOf('[/ol]') > 0 || postText.indexOf('[/dl]') > 0) { + var postText = text.substring(caretPos, caretPos+13); + if (postText.indexOf('[/list]') > 0 || postText.indexOf('[/checklist]') > 0 || postText.indexOf('[/ul]') > 0 || postText.indexOf('[/ol]') > 0 || postText.indexOf('[/dl]') > 0) { return postText; } } @@ -140,10 +140,11 @@ function listNewLineAutocomplete(id) { var text = document.getElementById(id); var caretPos = getCaretPosition(text) var word = getWord(text.value, caretPos); + if (word != null) { var textBefore = text.value.substring(0, caretPos); var textAfter = text.value.substring(caretPos, text.length); - var textInsert = (word.indexOf('[/dl]') > 0) ? '\r\n[*=] ' : '\r\n[*] '; + var textInsert = (word.indexOf('[/dl]') > 0) ? '\r\n[*=] ' : (word.indexOf('[/checklist]') > 0) ? '\r\n[] ' : '\r\n[*] '; var caretPositionDiff = (word.indexOf('[/dl]') > 0) ? 3 : 1; $('#' + id).val(textBefore + textInsert + textAfter); @@ -268,7 +269,7 @@ function string2bb(element) { $.fn.bbco_autocomplete = function(type) { if(type=='bbcode') { - var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'superscript', 'subscript', 'quote', 'code', 'open', 'spoiler', 'map', 'nobb', 'list', 'ul', 'ol', 'dl', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'zrl', 'zmg', 'rpost', 'qr', 'observer']; + var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'superscript', 'subscript', 'quote', 'code', 'open', 'spoiler', 'map', 'nobb', 'list', 'checklist', 'ul', 'ol', 'dl', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'zrl', 'zmg', 'rpost', 'qr', 'observer']; var open_elements = ['observer.baseurl', 'observer.address', 'observer.photo', 'observer.name', 'observer.webname', 'observer.url', '*', 'hr', ]; var elements = open_close_elements.concat(open_elements); @@ -300,7 +301,9 @@ function string2bb(element) { element = string2bb(element); if(open_elements.indexOf(element) < 0) { if(element === 'list' || element === 'ol' || element === 'ul') { - return ['\[' + element + '\]' + '\n\[*\] ', '\n\[/' + element + '\]']; + return ['\[' + element + '\]' + '\n\[*\] ', '\n\[/' + element + '\]']; + } else if(element === 'checklist') { + return ['\[' + element + '\]' + '\n\[\] ', '\n\[/' + element + '\]']; } else if (element === 'dl') { return ['\[' + element + '\]' + '\n\[*=Item name\] ', '\n\[/' + element + '\]']; } else if(element === 'table') { -- cgit v1.2.3 From 2ebb8851f684be467ae768fdac0eead1a636805c Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Sep 2016 12:42:47 -0700 Subject: theme preview - that was easy; plus a bit more tweaking of the saved search widget to try and get the sucker to auto submit --- Zotlabs/Module/Search_ac.php | 2 +- Zotlabs/Render/Theme.php | 2 ++ view/js/mod_network.js | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Search_ac.php b/Zotlabs/Module/Search_ac.php index 4e936d97b..a3bc18054 100644 --- a/Zotlabs/Module/Search_ac.php +++ b/Zotlabs/Module/Search_ac.php @@ -72,7 +72,7 @@ class Search_ac extends \Zotlabs\Web\Controller { ); echo json_encode($o); - logger('search_ac: ' . print_r($x,true)); + logger('search_ac: ' . print_r($x,true),LOGGER_ALL,LOG_INFO); killme(); } diff --git a/Zotlabs/Render/Theme.php b/Zotlabs/Render/Theme.php index 62068bc82..9f9009d72 100644 --- a/Zotlabs/Render/Theme.php +++ b/Zotlabs/Render/Theme.php @@ -66,6 +66,8 @@ class Theme { $chosen_theme = $page_theme; } } + if(array_key_exists('theme_preview',$_GET)) + $chosen_theme = $_GET['theme_preview']; // Allow theme selection of the form 'theme_name:schema_name' diff --git a/view/js/mod_network.js b/view/js/mod_network.js index cbdb82c75..cd36786df 100644 --- a/view/js/mod_network.js +++ b/view/js/mod_network.js @@ -1,5 +1,5 @@ $(document).ready(function() { - $("#search-text").contact_autocomplete(baseurl + '/search_ac'); + $("#search-text").contact_autocomplete(baseurl + '/search_ac','',true); $('.jslider-scale ins').addClass('hidden-xs'); }); -- cgit v1.2.3 From 549943fb1082bac14096d97ee2124052a8f6f364 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Sep 2016 13:19:08 -0700 Subject: provide json module to load theme specific settings so we can auto-fill the display settings page with schemas and theme settings whenever somebody makes a different theme selection --- Zotlabs/Module/Settings.php | 1 - Zotlabs/Module/Theme.php | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 Zotlabs/Module/Theme.php diff --git a/Zotlabs/Module/Settings.php b/Zotlabs/Module/Settings.php index dedfdda86..cf6f96e87 100644 --- a/Zotlabs/Module/Settings.php +++ b/Zotlabs/Module/Settings.php @@ -649,7 +649,6 @@ class Settings extends \Zotlabs\Web\Controller { build_sync_packet(); - //$_SESSION['theme'] = $theme; if($email_changed && \App::$config['system']['register_policy'] == REGISTER_VERIFY) { // FIXME - set to un-verified, blocked and redirect to logout diff --git a/Zotlabs/Module/Theme.php b/Zotlabs/Module/Theme.php new file mode 100644 index 000000000..da23d9c15 --- /dev/null +++ b/Zotlabs/Module/Theme.php @@ -0,0 +1,44 @@ +get_theme_config_file($theme)) != null){ + require_once($themeconfigfile); + if(class_exists(ucfirst($theme) . 'Config')) { + $clsname = ucfirst($theme) . 'Config'; + $th_config = new $clsname(); + $schemas = $th_config->get_schemas(); + } + $theme_config = theme_content($a); + } + + $ret = array('theme' => $theme, 'schemas' => $schemas,'config' => $theme_config); + json_return_and_die($ret); + + } + + + function get_theme_config_file($theme){ + + $base_theme = \App::$theme_info['extends']; + + if (file_exists("view/theme/$theme/php/config.php")){ + return "view/theme/$theme/php/config.php"; + } + if (file_exists("view/theme/$base_theme/php/config.php")){ + return "view/theme/$base_theme/php/config.php"; + } + return null; + } + + +} \ No newline at end of file -- cgit v1.2.3 From 678148b9aa98ffb0b174aceb2e30f79ea116a566 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Sep 2016 13:48:11 -0700 Subject: more work on theme select backend --- Zotlabs/Module/Theme.php | 44 ----------------------------- Zotlabs/Module/Theme_info.php | 64 ++++++++++++++++++++++++++++++++++++++++++ view/tpl/field_themeselect.tpl | 10 +++++-- 3 files changed, 71 insertions(+), 47 deletions(-) delete mode 100644 Zotlabs/Module/Theme.php create mode 100644 Zotlabs/Module/Theme_info.php diff --git a/Zotlabs/Module/Theme.php b/Zotlabs/Module/Theme.php deleted file mode 100644 index da23d9c15..000000000 --- a/Zotlabs/Module/Theme.php +++ /dev/null @@ -1,44 +0,0 @@ -get_theme_config_file($theme)) != null){ - require_once($themeconfigfile); - if(class_exists(ucfirst($theme) . 'Config')) { - $clsname = ucfirst($theme) . 'Config'; - $th_config = new $clsname(); - $schemas = $th_config->get_schemas(); - } - $theme_config = theme_content($a); - } - - $ret = array('theme' => $theme, 'schemas' => $schemas,'config' => $theme_config); - json_return_and_die($ret); - - } - - - function get_theme_config_file($theme){ - - $base_theme = \App::$theme_info['extends']; - - if (file_exists("view/theme/$theme/php/config.php")){ - return "view/theme/$theme/php/config.php"; - } - if (file_exists("view/theme/$base_theme/php/config.php")){ - return "view/theme/$base_theme/php/config.php"; - } - return null; - } - - -} \ No newline at end of file diff --git a/Zotlabs/Module/Theme_info.php b/Zotlabs/Module/Theme_info.php new file mode 100644 index 000000000..054ab6447 --- /dev/null +++ b/Zotlabs/Module/Theme_info.php @@ -0,0 +1,64 @@ +get_theme_config_file($theme)) != null){ + require_once($themeconfigfile); + if(class_exists(ucfirst($theme) . 'Config')) { + $clsname = ucfirst($theme) . 'Config'; + $th_config = new $clsname(); + $schemas = $th_config->get_schemas(); + } + $theme_config = theme_content($a); + } + $info = get_theme_info($theme); + if($info) { + // unfortunately there will be no translation for this string + $desc = $info['description']; + $version = $info['version']; + $credits = $info['credits']; + } + else { + $desc = ''; + $version = ''; + $credits = ''; + } + + $ret = [ + 'theme' => $theme, + 'img' => get_theme_screenshot($theme), + 'desc' => $desc, + 'version' => $version, + 'credits' => $credits, + 'schemas' => $schemas, + 'config' => $theme_config + ]; + json_return_and_die($ret); + + } + + + function get_theme_config_file($theme){ + + $base_theme = \App::$theme_info['extends']; + + if (file_exists("view/theme/$theme/php/config.php")){ + return "view/theme/$theme/php/config.php"; + } + if (file_exists("view/theme/$base_theme/php/config.php")){ + return "view/theme/$base_theme/php/config.php"; + } + return null; + } + + +} \ No newline at end of file diff --git a/view/tpl/field_themeselect.tpl b/view/tpl/field_themeselect.tpl index 250f9fcf1..7a529774c 100755 --- a/view/tpl/field_themeselect.tpl +++ b/view/tpl/field_themeselect.tpl @@ -1,9 +1,13 @@ - {{if $field.5=='preview'}}{{/if}} + {{if $field.5 == 'preview'}} + + {{/if}}
    - {{foreach $field.4 as $opt=>$val}}{{/foreach}} {{$field.3}} - {{if $field.5=='preview'}}
    {{/if}} + {{if $field.5=='preview'}} +
    + {{/if}}
    -- cgit v1.2.3 From 720f1d71233ab9f6be3ea4ae4b09d823fdca7367 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Sep 2016 17:09:58 -0700 Subject: actively set all the theme options on the display settings page based on the current theme selection --- Zotlabs/Module/Theme_info.php | 10 +++++++++- view/js/main.js | 6 ------ view/js/mod_settings.js | 22 ++++++++++++++++++++++ view/theme/redbasic/php/theme.php | 3 +-- 4 files changed, 32 insertions(+), 9 deletions(-) diff --git a/Zotlabs/Module/Theme_info.php b/Zotlabs/Module/Theme_info.php index 054ab6447..eb4a28279 100644 --- a/Zotlabs/Module/Theme_info.php +++ b/Zotlabs/Module/Theme_info.php @@ -9,6 +9,8 @@ class Theme_info extends \Zotlabs\Web\Controller { $theme = argv(1); if(! $theme) killme(); + + $schemalist = array(); $theme_config = ""; if(($themeconfigfile = $this->get_theme_config_file($theme)) != null){ @@ -17,6 +19,12 @@ class Theme_info extends \Zotlabs\Web\Controller { $clsname = ucfirst($theme) . 'Config'; $th_config = new $clsname(); $schemas = $th_config->get_schemas(); + if($schemas) { + foreach($schemas as $k => $v) { + $schemalist[] = [ 'key' => $k, 'val' => $v ]; + } + } + } $theme_config = theme_content($a); } @@ -39,7 +47,7 @@ class Theme_info extends \Zotlabs\Web\Controller { 'desc' => $desc, 'version' => $version, 'credits' => $credits, - 'schemas' => $schemas, + 'schemas' => $schemalist, 'config' => $theme_config ]; json_return_and_die($ret); diff --git a/view/js/main.js b/view/js/main.js index 21157bdfe..627110c49 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1247,12 +1247,6 @@ Array.prototype.remove = function(item) { return this.push.apply(this, rest); }; -function previewTheme(elm) { - theme = $(elm).val(); - $.getJSON('pretheme?f=&theme=' + theme,function(data) { - $('#theme-preview').html('
    ' + data.desc + '
    ' + data.version + '
    ' + data.credits + '
    ' + theme + ''); - }); -} $(document).ready(function() { diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js index 4ff702b22..db321ae70 100644 --- a/view/js/mod_settings.js +++ b/view/js/mod_settings.js @@ -8,6 +8,8 @@ $(document).ready(function() { $('.token-mirror').html($('#id_token').val()); $('#id_token').keyup( function() { $('.token-mirror').html($('#id_token').val()); }); + previewTheme($('#id_theme')[0]); + $("#id_permissions_role").change(function() { var role = $("#id_permissions_role").val(); if(role == 'custom') @@ -17,6 +19,26 @@ $(document).ready(function() { }); }); + +function setTheme(elm) { + $('#settings-form').submit(); +} + + +function previewTheme(elm) { + theme = $(elm).val(); + $.getJSON('theme_info/' + theme,function(data) { + $('#theme-preview').html('
    ' + data.desc + '
    ' + data.version + '
    ' + data.credits + '
    ' + theme + ''); + $('#id_schema').empty(); + $(data.schemas).each(function(index,item) { + $('
    ' : ''); $location = ''; -- cgit v1.2.3 From 77e865fc8ef8b41112885390881cf260b5c726ef Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 7 Sep 2016 13:45:52 -0700 Subject: pubsites: we still need to filter really really old redmatrix sites. These will not provide a pleasant experience. We probably should add version to the table. --- Zotlabs/Module/Pubsites.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Zotlabs/Module/Pubsites.php b/Zotlabs/Module/Pubsites.php index d8f272439..3dc0501d2 100644 --- a/Zotlabs/Module/Pubsites.php +++ b/Zotlabs/Module/Pubsites.php @@ -36,6 +36,8 @@ class Pubsites extends \Zotlabs\Web\Controller { $o .= ''; if($j['sites']) { foreach($j['sites'] as $jj) { + if(! $jj['project']) + continue; $m = parse_url($jj['url']); $host = strtolower(substr($jj['url'],strpos($jj['url'],'://')+3)); $rate_links = ((local_channel()) ? '' : ''); -- cgit v1.2.3 From c2f83639d49c4ff49acdaa5c6f3dd0a3c1edbdf9 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 7 Sep 2016 17:36:45 -0700 Subject: provide version info in /pubsites --- Zotlabs/Module/Dirsearch.php | 4 ++-- Zotlabs/Module/Pubsites.php | 2 +- boot.php | 2 +- include/zot.php | 16 +++++++++++----- install/schema_mysql.sql | 1 + install/schema_postgres.sql | 1 + install/update.php | 10 +++++++++- 7 files changed, 26 insertions(+), 10 deletions(-) diff --git a/Zotlabs/Module/Dirsearch.php b/Zotlabs/Module/Dirsearch.php index 8f60910f1..ebd6c3715 100644 --- a/Zotlabs/Module/Dirsearch.php +++ b/Zotlabs/Module/Dirsearch.php @@ -448,9 +448,9 @@ class Dirsearch extends \Zotlabs\Web\Controller { $register = 'closed'; if(strpos($rr['site_url'],'https://') !== false) - $ret['sites'][] = array('url' => $rr['site_url'], 'access' => $access, 'register' => $register, 'sellpage' => $rr['site_sellpage'], 'location' => $rr['site_location'], 'project' => $rr['site_project']); + $ret['sites'][] = array('url' => $rr['site_url'], 'access' => $access, 'register' => $register, 'sellpage' => $rr['site_sellpage'], 'location' => $rr['site_location'], 'project' => $rr['site_project'], 'version' => $rr['site_version']); else - $insecure[] = array('url' => $rr['site_url'], 'access' => $access, 'register' => $register, 'sellpage' => $rr['site_sellpage'], 'location' => $rr['site_location'], 'project' => $rr['site_project']); + $insecure[] = array('url' => $rr['site_url'], 'access' => $access, 'register' => $register, 'sellpage' => $rr['site_sellpage'], 'location' => $rr['site_location'], 'project' => $rr['site_project'], 'version' => $rr['site_version']); } if($insecure) { $ret['sites'] = array_merge($ret['sites'],$insecure); diff --git a/Zotlabs/Module/Pubsites.php b/Zotlabs/Module/Pubsites.php index 3dc0501d2..a66fd9c7a 100644 --- a/Zotlabs/Module/Pubsites.php +++ b/Zotlabs/Module/Pubsites.php @@ -49,7 +49,7 @@ class Pubsites extends \Zotlabs\Web\Controller { $location = '
     '; } $urltext = str_replace(array('https://'), '', $jj['url']); - $o .= '
    '; + $o .= ''; if($rating_enabled) $o .= '' . $rate_links ; $o .= ''; diff --git a/boot.php b/boot.php index b578129b4..bd191d19c 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' ); define ( 'STD_VERSION', '1.13.1' ); define ( 'ZOT_REVISION', '1.1' ); -define ( 'DB_UPDATE_VERSION', 1182 ); +define ( 'DB_UPDATE_VERSION', 1183 ); /** diff --git a/include/zot.php b/include/zot.php index 6187e8a61..7093a255b 100644 --- a/include/zot.php +++ b/include/zot.php @@ -2844,6 +2844,7 @@ function import_site($arr, $pubkey) { $site_location = htmlspecialchars($arr['location'],ENT_COMPAT,'UTF-8',false); $site_realm = htmlspecialchars($arr['realm'],ENT_COMPAT,'UTF-8',false); $site_project = htmlspecialchars($arr['project'],ENT_COMPAT,'UTF-8',false); + $site_version = ((array_key_exists('version',$arr)) ? htmlspecialchars($arr['version'],ENT_COMPAT,'UTF-8',false) : ''); // You can have one and only one primary directory per realm. // Downgrade any others claiming to be primary. As they have @@ -2863,14 +2864,16 @@ function import_site($arr, $pubkey) { || ($siterecord['site_location'] != $site_location) || ($siterecord['site_register'] != $register_policy) || ($siterecord['site_project'] != $site_project) - || ($siterecord['site_realm'] != $site_realm)) { + || ($siterecord['site_realm'] != $site_realm) + || ($siterecord['site_version'] != $site_version) ) { + $update = true; // logger('import_site: input: ' . print_r($arr,true)); // logger('import_site: stored: ' . print_r($siterecord,true)); - $r = q("update site set site_dead = 0, site_location = '%s', site_flags = %d, site_access = %d, site_directory = '%s', site_register = %d, site_update = '%s', site_sellpage = '%s', site_realm = '%s', site_type = %d, site_project = '%s' + $r = q("update site set site_dead = 0, site_location = '%s', site_flags = %d, site_access = %d, site_directory = '%s', site_register = %d, site_update = '%s', site_sellpage = '%s', site_realm = '%s', site_type = %d, site_project = '%s', site_version = '%s' where site_url = '%s'", dbesc($site_location), intval($site_directory), @@ -2882,6 +2885,7 @@ function import_site($arr, $pubkey) { dbesc($site_realm), intval(SITE_TYPE_ZOT), dbesc($site_project), + dbesc($site_version), dbesc($url) ); if(! $r) { @@ -2899,8 +2903,8 @@ function import_site($arr, $pubkey) { else { $update = true; - $r = q("insert into site ( site_location, site_url, site_access, site_flags, site_update, site_directory, site_register, site_sellpage, site_realm, site_type, site_project ) - values ( '%s', '%s', %d, %d, '%s', '%s', %d, '%s', '%s', %d, '%s' )", + $r = q("insert into site ( site_location, site_url, site_access, site_flags, site_update, site_directory, site_register, site_sellpage, site_realm, site_type, site_project, site_version ) + values ( '%s', '%s', %d, %d, '%s', '%s', %d, '%s', '%s', %d, '%s', '%s' )", dbesc($site_location), dbesc($url), intval($access_policy), @@ -2911,7 +2915,8 @@ function import_site($arr, $pubkey) { dbesc($sellpage), dbesc($site_realm), intval(SITE_TYPE_ZOT), - dbesc($site_project) + dbesc($site_project), + dbesc($site_version) ); if(! $r) { logger('import_site: record create failed. ' . print_r($arr,true)); @@ -3978,6 +3983,7 @@ function zotinfo($arr) { $ret['site']['location'] = get_config('system','site_location'); $ret['site']['realm'] = get_directory_realm(); $ret['site']['project'] = Zotlabs\Lib\System::get_platform_name() . ' ' . Zotlabs\Lib\System::get_server_role(); + $ret['site']['version'] = Zotlabs\Lib\System::get_project_version(); } diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index 5e5b9d5be..9a4f58880 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -1151,6 +1151,7 @@ CREATE TABLE IF NOT EXISTS `site` ( `site_dead` smallint NOT NULL DEFAULT '0', `site_type` smallint NOT NULL DEFAULT '0', `site_project` char(255) NOT NULL DEFAULT '', + `site_version` varchar(32) NOT NULL DEFAULT '', PRIMARY KEY (`site_url`), KEY `site_flags` (`site_flags`), KEY `site_update` (`site_update`), diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 44711c190..b190a810a 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -1131,6 +1131,7 @@ CREATE TABLE "site" ( "site_dead" smallint NOT NULL DEFAULT '0', "site_type" smallint NOT NULL DEFAULT '0', "site_project" text NOT NULL DEFAULT '', + "site_version" text NOT NULL DEFAULT '', PRIMARY KEY ("site_url") ); create index "site_flags" on site ("site_flags"); diff --git a/install/update.php b/install/update.php index 2b3a9b338..9fd362fff 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Wed, 7 Sep 2016 21:02:57 -0700 Subject: pro: better handling of system techlevel settings. system.techlevel = initial techlevel for all new accounts system.techlevel_lock = if 1, account techlevel cannot be changed this allows accounts to exist with alternate techlevels than a locked default, but they need to be set by the administrator. By default with no config settings, everybody starts at 0 but can set their own level. --- Zotlabs/Module/Settings/Account.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Module/Settings/Account.php b/Zotlabs/Module/Settings/Account.php index 3cc9bd135..50bbc7be4 100644 --- a/Zotlabs/Module/Settings/Account.php +++ b/Zotlabs/Module/Settings/Account.php @@ -110,9 +110,8 @@ class Account { '5' => t('Wizard - I probably know more than you do') ]; - $def_techlevel = get_config('system','techlevel'); - if($def_techlevel === false) - $def_techlevel = \App::$account['account_level']; + + $def_techlevel = \App::$account['account_level']; $techlock = get_config('system','techlevel_lock'); $tpl = get_markup_template("settings_account.tpl"); -- cgit v1.2.3 From 83b89b9576655c11a9beaaf2261b3a9013a52da5 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 8 Sep 2016 00:50:53 -0700 Subject: pro: provide settings for techlevel and techlevel_lock on admin/site page --- Zotlabs/Module/Admin/Site.php | 27 +++++++++++++++++++++++++++ view/tpl/admin_site.tpl | 6 ++++++ 2 files changed, 33 insertions(+) diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index 791c58589..8397cabbd 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -59,6 +59,12 @@ class Site { $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50); $feed_contacts = ((x($_POST,'feed_contacts')) ? intval($_POST['feed_contacts']) : 0); $verify_email = ((x($_POST,'verify_email')) ? 1 : 0); + $techlevel_lock = ((x($_POST,'techlock')) ? intval($_POST['techlock']) : 0); + + $techlevel = null; + if(array_key_exists('techlevel',$_POST)) + $techlevel = intval($_POST['techlevel']); + set_config('system', 'server_role', $server_role); @@ -74,6 +80,10 @@ class Site { set_config('system', 'enable_context_help', $enable_context_help); set_config('system', 'verify_email', $verify_email); set_config('system', 'default_expire_days', $default_expire_days); + set_config('system', 'techlevel_lock', $techlevel_lock); + + if(! is_null($techlevel)) + set_config('system', 'techlevel', $techlevel); if($directory_server) set_config('system','directory_server',$directory_server); @@ -234,6 +244,18 @@ class Site { 'pro' => t('Professional') ]; + + $techlevels = [ + '0' => t('Beginner/Basic'), + '1' => t('Novice - not skilled but willing to learn'), + '2' => t('Intermediate - somewhat comfortable'), + '3' => t('Advanced - very comfortable'), + '4' => t('Expert - I can write computer code'), + '5' => t('Wizard - I probably know more than you do') + ]; + + + $homelogin = get_config('system','login_on_homepage'); $enable_context_help = get_config('system','enable_context_help'); @@ -254,6 +276,11 @@ class Site { '$server_role' => array('server_role', t("Server Configuration/Role"), get_config('system','server_role'),'',$server_roles), + '$techlevel' => [ 'techlevel', t('Site default technical skill level'), get_config('system','techlevel'), t('Used to provide a member experience matched to technical comfort level'), $techlevels ], + + '$techlock' => [ 'techlock', t('Lock the technical skill level setting'), get_config('system','techlevel_lock'), t('Members can set their own technical comfort level by default') ], + + '$banner' => array('banner', t("Banner/Logo"), $banner, ""), '$admininfo' => array('admininfo', t("Administrator Information"), $admininfo, t("Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here")), '$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices), diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index 56e6087d6..a5b32f08f 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -42,6 +42,12 @@ {{include file="field_input.tpl" field=$sitename}} {{include file="field_select.tpl" field=$server_role}} + + {{if $z_server_role == 'pro'}} + {{include file="field_select.tpl" field=$techlevel}} + {{include file="field_checkbox.tpl" field=$techlock}} + {{/if}} + {{include file="field_textarea.tpl" field=$banner}} {{include file="field_textarea.tpl" field=$admininfo}} {{include file="field_select.tpl" field=$language}} -- cgit v1.2.3 From 98d5ae91f5a716d415fa3dd639e9819ae7003202 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 8 Sep 2016 09:52:22 +0200 Subject: patch foundation-6.2.3 to work with jquery-3.1 --- Zotlabs/Render/Comanche.php | 4 ++-- library/foundation/js/foundation.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Render/Comanche.php b/Zotlabs/Render/Comanche.php index 91f0ce33a..fdb72c9fb 100644 --- a/Zotlabs/Render/Comanche.php +++ b/Zotlabs/Render/Comanche.php @@ -286,7 +286,7 @@ class Comanche { $path = 'library/bootstrap/js/bootstrap.min.js'; break; case 'foundation': - $path = 'library/foundation/js/foundation.min.js'; + $path = 'library/foundation/js/foundation.js'; $init = "\r\n" . ''; break; } @@ -458,4 +458,4 @@ class Comanche { return; } -} \ No newline at end of file +} diff --git a/library/foundation/js/foundation.js b/library/foundation/js/foundation.js index 63b04ace2..8570bdd16 100644 --- a/library/foundation/js/foundation.js +++ b/library/foundation/js/foundation.js @@ -1585,7 +1585,7 @@ * @function * @private */ - $(window).load(function () { + $(window).on('load', function () { checkListeners(); }); @@ -4766,7 +4766,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons // Replacing images if (this.$element[0].nodeName === 'IMG') { - this.$element.attr('src', path).load(function () { + this.$element.attr('src', path).on('load', function () { _this.currentPath = path; }).trigger(trigger); } -- cgit v1.2.3 From 1e8fec93855755aa2a9103b6dab4d0751875b0d5 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 8 Sep 2016 11:22:58 +0200 Subject: add more foundation data- attributes --- include/text.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index e828594b9..8b2e8b9e0 100644 --- a/include/text.php +++ b/include/text.php @@ -147,6 +147,9 @@ function purify_html($s, $allow_position = false) { $def->info_global_attr['data-drilldown'] = new HTMLPurifier_AttrDef_Text; //accordion menu $def->info_global_attr['data-accordion-menu'] = new HTMLPurifier_AttrDef_Text; + //responsive navigation + $def->info_global_attr['data-responsive-menu'] = new HTMLPurifier_AttrDef_Text; + $def->info_global_attr['data-responsive-toggle'] = new HTMLPurifier_AttrDef_Text; //magellan $def->info_global_attr['data-magellan'] = new HTMLPurifier_AttrDef_Text; $def->info_global_attr['data-magellan-target'] = new HTMLPurifier_AttrDef_Text; @@ -194,13 +197,13 @@ function purify_html($s, $allow_position = false) { $def->info_global_attr['data-sticky'] = new HTMLPurifier_AttrDef_Text; $def->info_global_attr['data-sticky-container'] = new HTMLPurifier_AttrDef_Text; - // f6 common $def->info_global_attr['data-options'] = new HTMLPurifier_AttrDef_Text; $def->info_global_attr['data-toggle'] = new HTMLPurifier_AttrDef_Text; $def->info_global_attr['data-close'] = new HTMLPurifier_AttrDef_Text; $def->info_global_attr['data-open'] = new HTMLPurifier_AttrDef_Text; + $def->info_global_attr['data-position'] = new HTMLPurifier_AttrDef_Text; //data- attributes used by the bootstrap library -- cgit v1.2.3 From 9cfd0dd9d875f3951c10a6a260715c2bc835fbc6 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 8 Sep 2016 13:24:09 -0700 Subject: fix bookmarks in dev --- include/conversation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/conversation.php b/include/conversation.php index a56a765be..f06016966 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1621,7 +1621,7 @@ function profile_tabs($a, $is_owner = false, $nickname = null){ $uid = ((App::$profile['profile_uid']) ? App::$profile['profile_uid'] : local_channel()); - $account_id = ((App::$profile['profile_uid']) ? App::$profile['channel_account_id'] : App::get_account_id()); + $account_id = ((App::$profile['profile_uid']) ? App::$profile['channel_account_id'] : App::$channel['channel_account_id']); if($uid == local_channel()) { -- cgit v1.2.3 From abaf752a9bd79a2856bd6acbf16cb62a7f770018 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 8 Sep 2016 16:54:22 -0700 Subject: comanche: simple test issue --- Zotlabs/Render/Comanche.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Zotlabs/Render/Comanche.php b/Zotlabs/Render/Comanche.php index fdb72c9fb..562a9f791 100644 --- a/Zotlabs/Render/Comanche.php +++ b/Zotlabs/Render/Comanche.php @@ -124,7 +124,6 @@ class Comanche { } function test_condition($s) { - // This is extensible. The first version of variable testing supports tests of the forms: // [if $config.system.foo == baz] which will check if get_config('system','foo') is the string 'baz'; // [if $config.system.foo != baz] which will check if get_config('system','foo') is not the string 'baz'; @@ -161,7 +160,7 @@ class Comanche { return false; } - if(preg_match('/[\$](.*?)/',$s,$matches)) { + if(preg_match('/[\$](.*?)$/',$s,$matches)) { $x = $this->get_condition_var($matches[1]); if($x) return true; -- cgit v1.2.3 From 956dab69b480fbc91a1735b66c0cf46a98d334ef Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 8 Sep 2016 22:20:45 -0700 Subject: illegal offset errors in include/conversation:status_editor() when no permissions array is passed --- include/conversation.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/conversation.php b/include/conversation.php index f06016966..e515fb26a 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1213,6 +1213,10 @@ function status_editor($a, $x, $popup = false) { if(! $cipher) $cipher = 'aes256'; + // avoid illegal offset errors + if(! array_key_exists('permissions',$x)) + $x['permissions'] = [ 'allow_cid' => '', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '' ]; + $jotplugins = ''; call_hooks('jot_tool', $jotplugins); -- cgit v1.2.3 From 2d83ea86dca57e6fde65ee93366974ed53d0784f Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 8 Sep 2016 22:33:39 -0700 Subject: more get rid of illegal offset in include/conversation --- Zotlabs/Module/Channel.php | 7 ++++--- Zotlabs/Module/Network.php | 2 +- Zotlabs/Module/Webpages.php | 8 +++++--- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php index be65354a9..795f0869a 100644 --- a/Zotlabs/Module/Channel.php +++ b/Zotlabs/Module/Channel.php @@ -120,8 +120,9 @@ class Channel extends \Zotlabs\Web\Controller { 'deny_gid' => $channel['channel_deny_gid'] ); } - else - $channel_acl = array(); + else { + $channel_acl = [ 'allow_cid' => '', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '' ]; + } if($perms['post_wall']) { @@ -133,7 +134,7 @@ class Channel extends \Zotlabs\Web\Controller { 'nickname' => \App::$profile['channel_address'], 'lockstate' => (((strlen(\App::$profile['channel_allow_cid'])) || (strlen(\App::$profile['channel_allow_gid'])) || (strlen(\App::$profile['channel_deny_cid'])) || (strlen(\App::$profile['channel_deny_gid']))) ? 'lock' : 'unlock'), 'acl' => (($is_owner) ? populate_acl($channel_acl,true, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post') : ''), - 'permissions' => (($is_owner) ? $channel_acl : ''), + 'permissions' => $channel_acl, 'showacl' => (($is_owner) ? 'yes' : ''), 'bang' => '', 'visitor' => (($is_owner || $observer) ? true : false), diff --git a/Zotlabs/Module/Network.php b/Zotlabs/Module/Network.php index 70ba263bc..4f831c050 100644 --- a/Zotlabs/Module/Network.php +++ b/Zotlabs/Module/Network.php @@ -139,7 +139,7 @@ class Network extends \Zotlabs\Web\Controller { if($_GET['pf'] === '1') $deftag = '@' . t('forum') . '+' . intval($cid) . '+'; else - $def_acl = array('allow_cid' => '<' . $r[0]['abook_xchan'] . '>'); + $def_acl = [ 'allow_cid' => '<' . $r[0]['abook_xchan'] . '>', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '' ]; } if(! $update) { diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php index acaca16c3..0da699c73 100644 --- a/Zotlabs/Module/Webpages.php +++ b/Zotlabs/Module/Webpages.php @@ -136,9 +136,11 @@ class Webpages extends \Zotlabs\Web\Controller { 'deny_gid' => $channel['channel_deny_gid'] ); } - else - $channel_acl = array(); + else { + $channel_acl = [ 'allow_cid' => '', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '' ]; + } + $is_owner = ($uid && $uid == $owner); $o = profile_tabs($a, $is_owner, \App::$profile['channel_address']); @@ -148,7 +150,7 @@ class Webpages extends \Zotlabs\Web\Controller { 'nickname' => \App::$profile['channel_address'], 'lockstate' => (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), 'acl' => (($is_owner) ? populate_acl($channel_acl,false, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_pages')) : ''), - 'permissions' => (($is_owner) ? $channel_acl : ''), + 'permissions' => $channel_acl, 'showacl' => (($is_owner) ? true : false), 'visitor' => true, 'hide_location' => true, -- cgit v1.2.3 From a90a0874b869071d370d8a65acc5d16231eb903d Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 8 Sep 2016 22:56:51 -0700 Subject: fix for old style version specifiers --- Zotlabs/Module/Pubsites.php | 5 +++++ include/zot.php | 3 --- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Module/Pubsites.php b/Zotlabs/Module/Pubsites.php index a66fd9c7a..1c9cd5121 100644 --- a/Zotlabs/Module/Pubsites.php +++ b/Zotlabs/Module/Pubsites.php @@ -38,6 +38,11 @@ class Pubsites extends \Zotlabs\Web\Controller { foreach($j['sites'] as $jj) { if(! $jj['project']) continue; + if(strpos($jj['version'],' ')) { + $x = explode(' ', $jj['version']); + if($x[1]) + $jj['version'] = $x[1]; + } $m = parse_url($jj['url']); $host = strtolower(substr($jj['url'],strpos($jj['url'],'://')+3)); $rate_links = ((local_channel()) ? '' : ''); diff --git a/include/zot.php b/include/zot.php index 7093a255b..8771495ff 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3963,9 +3963,6 @@ function zotinfo($arr) { require_once('include/channel.php'); $ret['site']['channels'] = channel_total(); - - $ret['site']['version'] = Zotlabs\Lib\System::get_platform_name() . ' ' . STD_VERSION . '[' . DB_UPDATE_VERSION . ']'; - $ret['site']['admin'] = get_config('system','admin_email'); $visible_plugins = array(); -- cgit v1.2.3 From 04a76371fcc7e68fe542ddc3998d6661fc56e550 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 9 Sep 2016 09:58:18 +0200 Subject: update justifiedGallery 3.6.1 -> 3.6.3 --- .../justifiedGallery/jquery.justifiedGallery.js | 196 +++++++++++---------- .../jquery.justifiedGallery.min.js | 6 +- library/justifiedGallery/justifiedGallery.css | 116 +++--------- library/justifiedGallery/justifiedGallery.min.css | 6 +- view/js/main.js | 2 +- 5 files changed, 141 insertions(+), 185 deletions(-) diff --git a/library/justifiedGallery/jquery.justifiedGallery.js b/library/justifiedGallery/jquery.justifiedGallery.js index d3259fe44..82445b403 100644 --- a/library/justifiedGallery/jquery.justifiedGallery.js +++ b/library/justifiedGallery/jquery.justifiedGallery.js @@ -1,11 +1,14 @@ /*! - * Justified Gallery - v3.6.1 + * Justified Gallery - v3.6.3 * http://miromannino.github.io/Justified-Gallery/ - * Copyright (c) 2015 Miro Mannino + * Copyright (c) 2016 Miro Mannino * Licensed under the MIT license. */ (function($) { + function hasScrollBar() { + return $("body").height() > $(window).height(); + } /** * Justified Gallery controller constructor * @@ -26,6 +29,7 @@ height : 0, aspectRatio : 0 }; + this.lastFetchedEntry = null; this.lastAnalyzedIndex = -1; this.yield = { every : 2, // do a flush every n flushes (must be greater than 1) @@ -35,6 +39,7 @@ this.maxRowHeight = this.retrieveMaxRowHeight(); this.suffixRanges = this.retrieveSuffixRanges(); this.offY = this.border; + this.rows = 0; this.spinner = { phase : 0, timeSlot : 150, @@ -97,11 +102,11 @@ * * @returns {String} the suffix to use */ - JustifiedGallery.prototype.newSrc = function (imageSrc, imgWidth, imgHeight) { + JustifiedGallery.prototype.newSrc = function (imageSrc, imgWidth, imgHeight, image) { var newImageSrc; - + if (this.settings.thumbnailPath) { - newImageSrc = this.settings.thumbnailPath(imageSrc, imgWidth, imgHeight); + newImageSrc = this.settings.thumbnailPath(imageSrc, imgWidth, imgHeight, image); } else { var matchRes = imageSrc.match(this.settings.extension); var ext = (matchRes !== null) ? matchRes[0] : ''; @@ -125,6 +130,7 @@ if (callback) callback(); } else { $entry.stop().fadeTo(this.settings.imagesAnimationDuration, 1.0, callback); + $entry.find('> img, > a > img').stop().fadeTo(this.settings.imagesAnimationDuration, 1.0, callback); } }; @@ -179,7 +185,7 @@ // Image reloading for an high quality of thumbnails var imageSrc = $image.attr('src'); - var newImageSrc = this.newSrc(imageSrc, imgWidth, imgHeight); + var newImageSrc = this.newSrc(imageSrc, imgWidth, imgHeight, $image[0]); $image.one('error', function () { $image.attr('src', $image.data('jg.originalSrc')); //revert to the original thumbnail, we got it. @@ -325,6 +331,7 @@ var availableWidth = this.galleryWidth - 2 * this.border - ( (this.buildingRow.entriesBuff.length - 1) * this.settings.margins); var rowHeight = availableWidth / this.buildingRow.aspectRatio; + var defaultRowHeight = this.settings.rowHeight; var justifiable = this.buildingRow.width / availableWidth > this.settings.justifyThreshold; //Skip the last row if we can't justify it and the lastRow == 'hide' @@ -333,14 +340,23 @@ $entry = this.buildingRow.entriesBuff[i]; if (this.settings.cssAnimation) $entry.removeClass('entry-visible'); - else - $entry.stop().fadeTo(0, 0); + else { + $entry.stop().fadeTo(0, 0.1); + $entry.find('> img, > a > img').fadeTo(0, 0); + } } return -1; } // With lastRow = nojustify, justify if is justificable (the images will not become too big) - if (isLastRow && !justifiable && this.settings.lastRow !== 'justify' && this.settings.lastRow !== 'hide') justify = false; + if (isLastRow && !justifiable && this.settings.lastRow !== 'justify' && this.settings.lastRow !== 'hide') { + justify = false; + + if (this.rows > 0) { + defaultRowHeight = (this.offY - this.border - this.settings.margins * this.rows) / this.rows; + justify = defaultRowHeight * this.buildingRow.aspectRatio / availableWidth > this.settings.justifyThreshold; + } + } for (i = 0; i < this.buildingRow.entriesBuff.length; i++) { $entry = this.buildingRow.entriesBuff[i]; @@ -349,19 +365,9 @@ if (justify) { newImgW = (i === this.buildingRow.entriesBuff.length - 1) ? availableWidth : rowHeight * imgAspectRatio; newImgH = rowHeight; - - /* With fixedHeight the newImgH must be greater than rowHeight. - In some cases here this is not satisfied (due to the justification). - But we comment it, because is better to have a shorter but justified row instead - to have a cropped image at the end. */ - /*if (this.settings.fixedHeight && newImgH < this.settings.rowHeight) { - newImgW = this.settings.rowHeight * imgAspectRatio; - newImgH = this.settings.rowHeight; - }*/ - } else { - newImgW = this.settings.rowHeight * imgAspectRatio; - newImgH = this.settings.rowHeight; + newImgW = defaultRowHeight * imgAspectRatio; + newImgH = defaultRowHeight; } availableWidth -= Math.round(newImgW); @@ -370,9 +376,6 @@ if (i === 0 || minHeight > newImgH) minHeight = newImgH; } - if (this.settings.fixedHeight && minHeight > this.settings.rowHeight) - minHeight = this.settings.rowHeight; - this.buildingRow.height = minHeight; return justify; }; @@ -396,17 +399,15 @@ var $entry, buildingRowRes, offX = this.border, i; buildingRowRes = this.prepareBuildingRow(isLastRow); - if (isLastRow && settings.lastRow === 'hide' && this.buildingRow.height === -1) { + if (isLastRow && settings.lastRow === 'hide' && buildingRowRes === -1) { this.clearBuildingRow(); return; } - if (this.maxRowHeight.isPercentage) { - if (this.maxRowHeight.value * settings.rowHeight < this.buildingRow.height) { + if (this.maxRowHeight) { + if (this.maxRowHeight.isPercentage && this.maxRowHeight.value * settings.rowHeight < this.buildingRow.height) { this.buildingRow.height = this.maxRowHeight.value * settings.rowHeight; - } - } else { - if (this.maxRowHeight.value > 0 && this.maxRowHeight.value < this.buildingRow.height) { + } else if (this.maxRowHeight.value >= settings.rowHeight && this.maxRowHeight.value < this.buildingRow.height) { this.buildingRow.height = this.maxRowHeight.value; } } @@ -426,7 +427,6 @@ offX += availableWidth; } - for (i = 0; i < this.buildingRow.entriesBuff.length; i++) { $entry = this.buildingRow.entriesBuff[i]; this.displayEntry($entry, offX, this.offY, $entry.data('jg.jwidth'), $entry.data('jg.jheight'), this.buildingRow.height); @@ -434,12 +434,13 @@ } //Gallery Height - this.$gallery.height(this.offY + this.buildingRow.height + - this.border + (this.isSpinnerActive() ? this.getSpinnerHeight() : 0)); + this.galleryHeightToSet = this.offY + this.buildingRow.height + this.border; + this.$gallery.height(this.galleryHeightToSet + this.getSpinnerHeight()); if (!isLastRow || (this.buildingRow.height <= settings.rowHeight && buildingRowRes)) { //Ready for a new row this.offY += this.buildingRow.height + settings.margins; + this.rows += 1; this.clearBuildingRow(); this.$gallery.trigger('jg.rowflush'); } @@ -448,15 +449,21 @@ /** * Checks the width of the gallery container, to know if a new justification is needed */ + var scrollBarOn = false; JustifiedGallery.prototype.checkWidth = function () { this.checkWidthIntervalId = setInterval($.proxy(function () { var galleryWidth = parseFloat(this.$gallery.width()); - if (Math.abs(galleryWidth - this.galleryWidth) > this.settings.refreshSensitivity) { - this.galleryWidth = galleryWidth; - this.rewind(); + if (hasScrollBar() === scrollBarOn) { + if (Math.abs(galleryWidth - this.galleryWidth) > this.settings.refreshSensitivity) { + this.galleryWidth = galleryWidth; + this.rewind(); - // Restart to analyze - this.startImgAnalyzer(true); + // Restart to analyze + this.startImgAnalyzer(true); + } + } else { + scrollBarOn = hasScrollBar(); + this.galleryWidth = galleryWidth; } }, this), this.settings.refreshTime); }; @@ -508,8 +515,10 @@ * Rewind the image analysis to start from the first entry. */ JustifiedGallery.prototype.rewind = function () { + this.lastFetchedEntry = null; this.lastAnalyzedIndex = -1; this.offY = this.border; + this.rows = 0; this.clearBuildingRow(); }; @@ -520,23 +529,35 @@ * @returns {boolean} true if some entries has been founded */ JustifiedGallery.prototype.updateEntries = function (norewind) { - this.entries = this.$gallery.find(this.settings.selector).toArray(); - if (this.entries.length === 0) return false; + var newEntries; - // Filter - if (this.settings.filter) { - this.modifyEntries(this.filterArray, norewind); + if (norewind && this.lastFetchedEntry != null) { + newEntries = $(this.lastFetchedEntry).nextAll(this.settings.selector).toArray(); } else { - this.modifyEntries(this.resetFilters, norewind); + this.entries = []; + newEntries = this.$gallery.children(this.settings.selector).toArray(); } - // Sort or randomize - if ($.isFunction(this.settings.sort)) { - this.modifyEntries(this.sortArray, norewind); - } else if (this.settings.randomize) { - this.modifyEntries(this.shuffleArray, norewind); + if (newEntries.length > 0) { + + // Sort or randomize + if ($.isFunction(this.settings.sort)) { + newEntries = this.sortArray(newEntries); + } else if (this.settings.randomize) { + newEntries = this.shuffleArray(newEntries); + } + this.lastFetchedEntry = newEntries[newEntries.length - 1]; + + // Filter + if (this.settings.filter) { + newEntries = this.filterArray(newEntries); + } else { + this.resetFilters(newEntries); + } + } + this.entries = this.entries.concat(newEntries); return true; }; @@ -589,7 +610,6 @@ */ JustifiedGallery.prototype.resetFilters = function (a) { for (var i = 0; i < a.length; i++) $(a[i]).removeClass('jg-filtered'); - return a; }; /** @@ -608,30 +628,24 @@ $el.removeClass('jg-filtered'); return true; } else { - $el.addClass('jg-filtered'); + $el.addClass('jg-filtered').removeClass('jg-visible'); return false; } }); } else if ($.isFunction(settings.filter)) { // Filter using the passed function - return a.filter(settings.filter); + var filteredArr = a.filter(settings.filter); + for (var i = 0; i < a.length; i++) { + if (filteredArr.indexOf(a[i]) == -1) { + $(a[i]).addClass('jg-filtered').removeClass('jg-visible'); + } else { + $(a[i]).removeClass('jg-filtered'); + } + } + return filteredArr; } }; - /** - * Modify the entries. With norewind only the new inserted images will be modified (the ones after lastAnalyzedIndex) - * - * @param functionToApply the function to call to modify the entries (e.g. sorting, randomization, filtering) - * @param norewind specify if the norewind has been called or not - */ - JustifiedGallery.prototype.modifyEntries = function (functionToApply, norewind) { - var lastEntries = norewind ? - this.entries.splice(this.lastAnalyzedIndex + 1, this.entries.length - this.lastAnalyzedIndex - 1) - : this.entries; - lastEntries = functionToApply.call(this, lastEntries); - this.entries = norewind ? this.entries.concat(lastEntries) : lastEntries; - }; - /** * Destroy the Justified Gallery instance. * @@ -727,6 +741,7 @@ //On complete callback this.$gallery.trigger(isForResize ? 'jg.resize' : 'jg.complete'); + this.$gallery.height(this.galleryHeightToSet); }; /** @@ -915,6 +930,10 @@ } else if ($.type(this.settings.maxRowHeight) === 'number') { newMaxRowHeight.value = this.settings.maxRowHeight; newMaxRowHeight.isPercentage = false; + } else if (this.settings.maxRowHeight === false || + this.settings.maxRowHeight === null || + typeof this.settings.maxRowHeight == 'undefined') { + return null; } else { throw 'maxRowHeight must be a number or a percentage'; } @@ -925,14 +944,9 @@ // check values if (newMaxRowHeight.isPercentage) { if (newMaxRowHeight.value < 100) newMaxRowHeight.value = 100; - } else { - if (newMaxRowHeight.value > 0 && newMaxRowHeight.value < this.settings.rowHeight) { - newMaxRowHeight.value = this.settings.rowHeight; - } } return newMaxRowHeight; - }; /** @@ -945,12 +959,16 @@ this.checkOrConvertNumber(this.settings, 'margins'); this.checkOrConvertNumber(this.settings, 'border'); - if (this.settings.lastRow !== 'justify' && - this.settings.lastRow !== 'nojustify' && this.settings.lastRow !== 'left' && - this.settings.lastRow !== 'center' && - this.settings.lastRow !== 'right' && - this.settings.lastRow !== 'hide') { - throw 'lastRow must be "justify", "nojustify", "left", "center", "right" or "hide"'; + var lastRowModes = [ + 'justify', + 'nojustify', + 'left', + 'center', + 'right', + 'hide' + ]; + if (lastRowModes.indexOf(this.settings.lastRow) === -1) { + throw 'lastRow must be one of: ' + lastRowModes.join(', '); } this.checkOrConvertNumber(this.settings, 'justifyThreshold'); @@ -976,7 +994,6 @@ throw 'captionSettings.nonVisibleOpacity must be in the interval [0, 1]'; } - if ($.type(this.settings.fixedHeight) !== 'boolean') throw 'fixedHeight must be a boolean'; this.checkOrConvertNumber(this.settings, 'imagesAnimationDuration'); this.checkOrConvertNumber(this.settings, 'refreshTime'); this.checkOrConvertNumber(this.settings, 'refreshSensitivity'); @@ -1051,7 +1068,7 @@ $gallery.data('jg.controller', controller); } else if (arg === 'norewind') { // In this case we don't rewind: we analyze only the latest images (e.g. to complete the last unfinished row - // ... left to be more readable + // ... left to be more readable } else if (arg === 'destroy') { controller.destroy(); return; @@ -1083,23 +1100,22 @@ } */ thumbnailPath: undefined, /* If defined, sizeRangeSuffixes is not used, and this function is used to determine the - path relative to a specific thumbnail size. The function should accept respectively three arguments: + path relative to a specific thumbnail size. The function should accept respectively three arguments: current path, width and height */ rowHeight: 120, - maxRowHeight: -1, // negative value = no limits, number to express the value in pixels, - // '[0-9]+%' to express in percentage (e.g. 300% means that the row height - // can't exceed 3 * rowHeight) + maxRowHeight: false, // false or negative value to deactivate. Positive number to express the value in pixels, + // A string '[0-9]+%' to express in percentage (e.g. 300% means that the row height + // can't exceed 3 * rowHeight) margins: 1, border: -1, // negative value = same as margins, 0 = disabled, any other value to set the border lastRow: 'nojustify', // … which is the same as 'left', or can be 'justify', 'center', 'right' or 'hide' - - justifyThreshold: 0.75, /* if row width / available space > 0.75 it will be always justified + + justifyThreshold: 0.90, /* if row width / available space > 0.90 it will be always justified * (i.e. lastRow setting is not considered) */ - fixedHeight: false, waitThumbnailsLoad: true, captions: true, - cssAnimation: false, + cssAnimation: true, imagesAnimationDuration: 500, // ignored with css animations captionSettings: { // ignored with css animations animationDuration: 500, @@ -1117,13 +1133,13 @@ - function: to sort them using the function as comparator (see Array.prototype.sort()) */ filter: false, /* - - false: for a disabled filter + - false, null or undefined: for a disabled filter - a string: an entry is kept if entry.is(filter string) returns true see jQuery's .is() function for further information - a function: invoked with arguments (entry, index, array). Return true to keep the entry, false otherwise. - see Array.prototype.filter for further information. + It follows the specifications of the Array.prototype.filter() function of JavaScript. */ - selector: '> a, > div:not(.spinner)' // The selector that is used to know what are the entries of the gallery + selector: 'a, div:not(.spinner)' // The selector that is used to know what are the entries of the gallery }; }(jQuery)); diff --git a/library/justifiedGallery/jquery.justifiedGallery.min.js b/library/justifiedGallery/jquery.justifiedGallery.min.js index 030636ccc..91ebcd259 100644 --- a/library/justifiedGallery/jquery.justifiedGallery.min.js +++ b/library/justifiedGallery/jquery.justifiedGallery.min.js @@ -1,7 +1,7 @@ /*! - * Justified Gallery - v3.6.1 + * Justified Gallery - v3.6.3 * http://miromannino.github.io/Justified-Gallery/ - * Copyright (c) 2015 Miro Mannino + * Copyright (c) 2016 Miro Mannino * Licensed under the MIT license. */ -!function(a){var b=function(b,c){this.settings=c,this.checkSettings(),this.imgAnalyzerTimeout=null,this.entries=null,this.buildingRow={entriesBuff:[],width:0,height:0,aspectRatio:0},this.lastAnalyzedIndex=-1,this.yield={every:2,flushed:0},this.border=c.border>=0?c.border:c.margins,this.maxRowHeight=this.retrieveMaxRowHeight(),this.suffixRanges=this.retrieveSuffixRanges(),this.offY=this.border,this.spinner={phase:0,timeSlot:150,$el:a('
    '),intervalId:null},this.checkWidthIntervalId=null,this.galleryWidth=b.width(),this.$gallery=b};b.prototype.getSuffix=function(a,b){var c,d;for(c=a>b?a:b,d=0;d img");return 0===b.length&&(b=a.find("> a > img")),0===b.length?null:b},b.prototype.captionFromEntry=function(a){var b=a.find("> .caption");return 0===b.length?null:b},b.prototype.displayEntry=function(b,c,d,e,f,g){b.width(e),b.height(g),b.css("top",d),b.css("left",c);var h=this.imgFromEntry(b);if(null!==h){h.css("width",e),h.css("height",f),h.css("margin-left",-e/2),h.css("margin-top",-f/2);var i=h.attr("src"),j=this.newSrc(i,e,f);h.one("error",function(){h.attr("src",h.data("jg.originalSrc"))});var k=function(){i!==j&&h.attr("src",j)};"skipped"===b.data("jg.loaded")?this.onImageEvent(i,a.proxy(function(){this.showImg(b,k),b.data("jg.loaded",!0)},this)):this.showImg(b,k)}else this.showImg(b);this.displayEntryCaption(b)},b.prototype.displayEntryCaption=function(b){var c=this.imgFromEntry(b);if(null!==c&&this.settings.captions){var d=this.captionFromEntry(b);if(null===d){var e=c.attr("alt");this.isValidCaption(e)||(e=b.attr("title")),this.isValidCaption(e)&&(d=a('
    '+e+"
    "),b.append(d),b.data("jg.createdCaption",!0))}null!==d&&(this.settings.cssAnimation||d.stop().fadeTo(0,this.settings.captionSettings.nonVisibleOpacity),this.addCaptionEventsHandlers(b))}else this.removeCaptionEventsHandlers(b)},b.prototype.isValidCaption=function(a){return"undefined"!=typeof a&&a.length>0},b.prototype.onEntryMouseEnterForCaption=function(b){var c=this.captionFromEntry(a(b.currentTarget));this.settings.cssAnimation?c.addClass("caption-visible").removeClass("caption-hidden"):c.stop().fadeTo(this.settings.captionSettings.animationDuration,this.settings.captionSettings.visibleOpacity)},b.prototype.onEntryMouseLeaveForCaption=function(b){var c=this.captionFromEntry(a(b.currentTarget));this.settings.cssAnimation?c.removeClass("caption-visible").removeClass("caption-hidden"):c.stop().fadeTo(this.settings.captionSettings.animationDuration,this.settings.captionSettings.nonVisibleOpacity)},b.prototype.addCaptionEventsHandlers=function(b){var c=b.data("jg.captionMouseEvents");"undefined"==typeof c&&(c={mouseenter:a.proxy(this.onEntryMouseEnterForCaption,this),mouseleave:a.proxy(this.onEntryMouseLeaveForCaption,this)},b.on("mouseenter",void 0,void 0,c.mouseenter),b.on("mouseleave",void 0,void 0,c.mouseleave),b.data("jg.captionMouseEvents",c))},b.prototype.removeCaptionEventsHandlers=function(a){var b=a.data("jg.captionMouseEvents");"undefined"!=typeof b&&(a.off("mouseenter",void 0,b.mouseenter),a.off("mouseleave",void 0,b.mouseleave),a.removeData("jg.captionMouseEvents"))},b.prototype.prepareBuildingRow=function(a){var b,c,d,e,f,g=!0,h=0,i=this.galleryWidth-2*this.border-(this.buildingRow.entriesBuff.length-1)*this.settings.margins,j=i/this.buildingRow.aspectRatio,k=this.buildingRow.width/i>this.settings.justifyThreshold;if(a&&"hide"===this.settings.lastRow&&!k){for(b=0;bf)&&(h=f);return this.settings.fixedHeight&&h>this.settings.rowHeight&&(h=this.settings.rowHeight),this.buildingRow.height=h,g},b.prototype.clearBuildingRow=function(){this.buildingRow.entriesBuff=[],this.buildingRow.aspectRatio=0,this.buildingRow.width=0},b.prototype.flushRow=function(a){var b,c,d,e=this.settings,f=this.border;if(c=this.prepareBuildingRow(a),a&&"hide"===e.lastRow&&-1===this.buildingRow.height)return void this.clearBuildingRow();if(this.maxRowHeight.isPercentage?this.maxRowHeight.value*e.rowHeight0&&this.maxRowHeight.valuethis.settings.refreshSensitivity&&(this.galleryWidth=a,this.rewind(),this.startImgAnalyzer(!0))},this),this.settings.refreshTime)},b.prototype.isSpinnerActive=function(){return null!==this.spinner.intervalId},b.prototype.getSpinnerHeight=function(){return this.spinner.$el.innerHeight()},b.prototype.stopLoadingSpinnerAnimation=function(){clearInterval(this.spinner.intervalId),this.spinner.intervalId=null,this.$gallery.height(this.$gallery.height()-this.getSpinnerHeight()),this.spinner.$el.detach()},b.prototype.startLoadingSpinnerAnimation=function(){var a=this.spinner,b=a.$el.find("span");clearInterval(a.intervalId),this.$gallery.append(a.$el),this.$gallery.height(this.offY+this.buildingRow.height+this.getSpinnerHeight()),a.intervalId=setInterval(function(){a.phase0;b--)c=Math.floor(Math.random()*(b+1)),d=a[b],a[b]=a[c],a[c]=d;return this.insertToGallery(a),a},b.prototype.sortArray=function(a){return a.sort(this.settings.sort),this.insertToGallery(a),a},b.prototype.resetFilters=function(b){for(var c=0;c=this.yield.every))return void this.startImgAnalyzer(b);this.buildingRow.entriesBuff.push(d),this.buildingRow.aspectRatio+=f,this.buildingRow.width+=f*this.settings.rowHeight,this.lastAnalyzedIndex=c}else if("error"!==d.data("jg.loaded"))return}this.buildingRow.entriesBuff.length>0&&this.flushRow(!0),this.isSpinnerActive()&&this.stopLoadingSpinnerAnimation(),this.stopImgAnalyzerStarter(),this.$gallery.trigger(b?"jg.resize":"jg.complete")},b.prototype.stopImgAnalyzerStarter=function(){this.yield.flushed=0,null!==this.imgAnalyzerTimeout&&clearTimeout(this.imgAnalyzerTimeout)},b.prototype.startImgAnalyzer=function(a){var b=this;this.stopImgAnalyzerStarter(),this.imgAnalyzerTimeout=setTimeout(function(){b.analyzeImages(a)},.001)},b.prototype.onImageEvent=function(b,c,d){if(c||d){var e=new Image,f=a(e);c&&f.one("load",function(){f.off("load error"),c(e)}),d&&f.one("error",function(){f.off("load error"),d(e)}),e.src=b}},b.prototype.init=function(){var b=!1,c=!1,d=this;a.each(this.entries,function(e,f){var g=a(f),h=d.imgFromEntry(g);if(g.addClass("jg-entry"),g.data("jg.loaded")!==!0&&"skipped"!==g.data("jg.loaded"))if(null!==d.settings.rel&&g.attr("rel",d.settings.rel),null!==d.settings.target&&g.attr("target",d.settings.target),null!==h){var i=d.extractImgSrcFromImage(h);if(h.attr("src",i),d.settings.waitThumbnailsLoad===!1){var j=parseFloat(h.attr("width")),k=parseFloat(h.attr("height"));if(!isNaN(j)&&!isNaN(k))return g.data("jg.width",j),g.data("jg.height",k),g.data("jg.loaded","skipped"),c=!0,d.startImgAnalyzer(!1),!0}g.data("jg.loaded",!1),b=!0,d.isSpinnerActive()||d.startLoadingSpinnerAnimation(),d.onImageEvent(i,function(a){g.data("jg.width",a.width),g.data("jg.height",a.height),g.data("jg.loaded",!0),d.startImgAnalyzer(!1)},function(){g.data("jg.loaded","error"),d.startImgAnalyzer(!1)})}else g.data("jg.loaded",!0),g.data("jg.width",g.width()|parseFloat(g.css("width"))|1),g.data("jg.height",g.height()|parseFloat(g.css("height"))|1)}),b||c||this.startImgAnalyzer(!1),this.checkWidth()},b.prototype.checkOrConvertNumber=function(b,c){if("string"===a.type(b[c])&&(b[c]=parseFloat(b[c])),"number"!==a.type(b[c]))throw c+" must be a number";if(isNaN(b[c]))throw"invalid number for "+c},b.prototype.checkSizeRangesSuffixes=function(){if("object"!==a.type(this.settings.sizeRangeSuffixes))throw"sizeRangeSuffixes must be defined and must be an object";var b=[];for(var c in this.settings.sizeRangeSuffixes)this.settings.sizeRangeSuffixes.hasOwnProperty(c)&&b.push(c);for(var d={0:""},e=0;e0&&b.value1)throw"justifyThreshold must be in the interval [0,1]";if("boolean"!==a.type(this.settings.cssAnimation))throw"cssAnimation must be a boolean";if("boolean"!==a.type(this.settings.captions))throw"captions must be a boolean";if(this.checkOrConvertNumber(this.settings.captionSettings,"animationDuration"),this.checkOrConvertNumber(this.settings.captionSettings,"visibleOpacity"),this.settings.captionSettings.visibleOpacity<0||this.settings.captionSettings.visibleOpacity>1)throw"captionSettings.visibleOpacity must be in the interval [0, 1]";if(this.checkOrConvertNumber(this.settings.captionSettings,"nonVisibleOpacity"),this.settings.captionSettings.nonVisibleOpacity<0||this.settings.captionSettings.nonVisibleOpacity>1)throw"captionSettings.nonVisibleOpacity must be in the interval [0, 1]";if("boolean"!==a.type(this.settings.fixedHeight))throw"fixedHeight must be a boolean";if(this.checkOrConvertNumber(this.settings,"imagesAnimationDuration"),this.checkOrConvertNumber(this.settings,"refreshTime"),this.checkOrConvertNumber(this.settings,"refreshSensitivity"),"boolean"!==a.type(this.settings.randomize))throw"randomize must be a boolean";if("string"!==a.type(this.settings.selector))throw"selector must be a string";if(this.settings.sort!==!1&&!a.isFunction(this.settings.sort))throw"sort must be false or a comparison function";if(this.settings.filter!==!1&&!a.isFunction(this.settings.filter)&&"string"!==a.type(this.settings.filter))throw"filter must be false, a string or a filter function"},b.prototype.retrieveSuffixRanges=function(){var a=[];for(var b in this.settings.sizeRangeSuffixes)this.settings.sizeRangeSuffixes.hasOwnProperty(b)&&a.push(parseInt(b,10));return a.sort(function(a,b){return a>b?1:b>a?-1:0}),a},b.prototype.updateSettings=function(b){this.settings=a.extend({},this.settings,b),this.checkSettings(),this.border=this.settings.border>=0?this.settings.border:this.settings.margins,this.maxRowHeight=this.retrieveMaxRowHeight(),this.suffixRanges=this.retrieveSuffixRanges()},a.fn.justifiedGallery=function(c){return this.each(function(d,e){var f=a(e);f.addClass("justified-gallery");var g=f.data("jg.controller");if("undefined"==typeof g){if("undefined"!=typeof c&&null!==c&&"object"!==a.type(c)){if("destroy"===c)return;throw"The argument must be an object"}g=new b(f,a.extend({},a.fn.justifiedGallery.defaults,c)),f.data("jg.controller",g)}else if("norewind"===c);else{if("destroy"===c)return void g.destroy();g.updateSettings(c),g.rewind()}g.updateEntries("norewind"===c)&&g.init()})},a.fn.justifiedGallery.defaults={sizeRangeSuffixes:{},thumbnailPath:void 0,rowHeight:120,maxRowHeight:-1,margins:1,border:-1,lastRow:"nojustify",justifyThreshold:.75,fixedHeight:!1,waitThumbnailsLoad:!0,captions:!0,cssAnimation:!1,imagesAnimationDuration:500,captionSettings:{animationDuration:500,visibleOpacity:.7,nonVisibleOpacity:0},rel:null,target:null,extension:/\.[^.\\/]+$/,refreshTime:200,refreshSensitivity:0,randomize:!1,sort:!1,filter:!1,selector:"> a, > div:not(.spinner)"}}(jQuery); \ No newline at end of file +!function(a){function b(){return a("body").height()>a(window).height()}var c=function(b,c){this.settings=c,this.checkSettings(),this.imgAnalyzerTimeout=null,this.entries=null,this.buildingRow={entriesBuff:[],width:0,height:0,aspectRatio:0},this.lastFetchedEntry=null,this.lastAnalyzedIndex=-1,this.yield={every:2,flushed:0},this.border=c.border>=0?c.border:c.margins,this.maxRowHeight=this.retrieveMaxRowHeight(),this.suffixRanges=this.retrieveSuffixRanges(),this.offY=this.border,this.rows=0,this.spinner={phase:0,timeSlot:150,$el:a('
    '),intervalId:null},this.checkWidthIntervalId=null,this.galleryWidth=b.width(),this.$gallery=b};c.prototype.getSuffix=function(a,b){var c,d;for(c=a>b?a:b,d=0;d img, > a > img").stop().fadeTo(this.settings.imagesAnimationDuration,1,b))},c.prototype.extractImgSrcFromImage=function(a){var b="undefined"!=typeof a.data("safe-src")?a.data("safe-src"):a.attr("src");return a.data("jg.originalSrc",b),b},c.prototype.imgFromEntry=function(a){var b=a.find("> img");return 0===b.length&&(b=a.find("> a > img")),0===b.length?null:b},c.prototype.captionFromEntry=function(a){var b=a.find("> .caption");return 0===b.length?null:b},c.prototype.displayEntry=function(b,c,d,e,f,g){b.width(e),b.height(g),b.css("top",d),b.css("left",c);var h=this.imgFromEntry(b);if(null!==h){h.css("width",e),h.css("height",f),h.css("margin-left",-e/2),h.css("margin-top",-f/2);var i=h.attr("src"),j=this.newSrc(i,e,f,h[0]);h.one("error",function(){h.attr("src",h.data("jg.originalSrc"))});var k=function(){i!==j&&h.attr("src",j)};"skipped"===b.data("jg.loaded")?this.onImageEvent(i,a.proxy(function(){this.showImg(b,k),b.data("jg.loaded",!0)},this)):this.showImg(b,k)}else this.showImg(b);this.displayEntryCaption(b)},c.prototype.displayEntryCaption=function(b){var c=this.imgFromEntry(b);if(null!==c&&this.settings.captions){var d=this.captionFromEntry(b);if(null===d){var e=c.attr("alt");this.isValidCaption(e)||(e=b.attr("title")),this.isValidCaption(e)&&(d=a('
    '+e+"
    "),b.append(d),b.data("jg.createdCaption",!0))}null!==d&&(this.settings.cssAnimation||d.stop().fadeTo(0,this.settings.captionSettings.nonVisibleOpacity),this.addCaptionEventsHandlers(b))}else this.removeCaptionEventsHandlers(b)},c.prototype.isValidCaption=function(a){return"undefined"!=typeof a&&a.length>0},c.prototype.onEntryMouseEnterForCaption=function(b){var c=this.captionFromEntry(a(b.currentTarget));this.settings.cssAnimation?c.addClass("caption-visible").removeClass("caption-hidden"):c.stop().fadeTo(this.settings.captionSettings.animationDuration,this.settings.captionSettings.visibleOpacity)},c.prototype.onEntryMouseLeaveForCaption=function(b){var c=this.captionFromEntry(a(b.currentTarget));this.settings.cssAnimation?c.removeClass("caption-visible").removeClass("caption-hidden"):c.stop().fadeTo(this.settings.captionSettings.animationDuration,this.settings.captionSettings.nonVisibleOpacity)},c.prototype.addCaptionEventsHandlers=function(b){var c=b.data("jg.captionMouseEvents");"undefined"==typeof c&&(c={mouseenter:a.proxy(this.onEntryMouseEnterForCaption,this),mouseleave:a.proxy(this.onEntryMouseLeaveForCaption,this)},b.on("mouseenter",void 0,void 0,c.mouseenter),b.on("mouseleave",void 0,void 0,c.mouseleave),b.data("jg.captionMouseEvents",c))},c.prototype.removeCaptionEventsHandlers=function(a){var b=a.data("jg.captionMouseEvents");"undefined"!=typeof b&&(a.off("mouseenter",void 0,b.mouseenter),a.off("mouseleave",void 0,b.mouseleave),a.removeData("jg.captionMouseEvents"))},c.prototype.prepareBuildingRow=function(a){var b,c,d,e,f,g=!0,h=0,i=this.galleryWidth-2*this.border-(this.buildingRow.entriesBuff.length-1)*this.settings.margins,j=i/this.buildingRow.aspectRatio,k=this.settings.rowHeight,l=this.buildingRow.width/i>this.settings.justifyThreshold;if(a&&"hide"===this.settings.lastRow&&!l){for(b=0;b img, > a > img").fadeTo(0,0));return-1}for(a&&!l&&"justify"!==this.settings.lastRow&&"hide"!==this.settings.lastRow&&(g=!1,this.rows>0&&(k=(this.offY-this.border-this.settings.margins*this.rows)/this.rows,g=k*this.buildingRow.aspectRatio/i>this.settings.justifyThreshold)),b=0;bf)&&(h=f);return this.buildingRow.height=h,g},c.prototype.clearBuildingRow=function(){this.buildingRow.entriesBuff=[],this.buildingRow.aspectRatio=0,this.buildingRow.width=0},c.prototype.flushRow=function(a){var b,c,d,e=this.settings,f=this.border;if(c=this.prepareBuildingRow(a),a&&"hide"===e.lastRow&&-1===c)return void this.clearBuildingRow();if(this.maxRowHeight&&(this.maxRowHeight.isPercentage&&this.maxRowHeight.value*e.rowHeight=e.rowHeight&&this.maxRowHeight.valuethis.settings.refreshSensitivity&&(this.galleryWidth=a,this.rewind(),this.startImgAnalyzer(!0)):(d=b(),this.galleryWidth=a)},this),this.settings.refreshTime)},c.prototype.isSpinnerActive=function(){return null!==this.spinner.intervalId},c.prototype.getSpinnerHeight=function(){return this.spinner.$el.innerHeight()},c.prototype.stopLoadingSpinnerAnimation=function(){clearInterval(this.spinner.intervalId),this.spinner.intervalId=null,this.$gallery.height(this.$gallery.height()-this.getSpinnerHeight()),this.spinner.$el.detach()},c.prototype.startLoadingSpinnerAnimation=function(){var a=this.spinner,b=a.$el.find("span");clearInterval(a.intervalId),this.$gallery.append(a.$el),this.$gallery.height(this.offY+this.buildingRow.height+this.getSpinnerHeight()),a.intervalId=setInterval(function(){a.phase0&&(a.isFunction(this.settings.sort)?c=this.sortArray(c):this.settings.randomize&&(c=this.shuffleArray(c)),this.lastFetchedEntry=c[c.length-1],this.settings.filter?c=this.filterArray(c):this.resetFilters(c)),this.entries=this.entries.concat(c),!0},c.prototype.insertToGallery=function(b){var c=this;a.each(b,function(){a(this).appendTo(c.$gallery)})},c.prototype.shuffleArray=function(a){var b,c,d;for(b=a.length-1;b>0;b--)c=Math.floor(Math.random()*(b+1)),d=a[b],a[b]=a[c],a[c]=d;return this.insertToGallery(a),a},c.prototype.sortArray=function(a){return a.sort(this.settings.sort),this.insertToGallery(a),a},c.prototype.resetFilters=function(b){for(var c=0;c=this.yield.every))return void this.startImgAnalyzer(b);this.buildingRow.entriesBuff.push(d),this.buildingRow.aspectRatio+=f,this.buildingRow.width+=f*this.settings.rowHeight,this.lastAnalyzedIndex=c}else if("error"!==d.data("jg.loaded"))return}this.buildingRow.entriesBuff.length>0&&this.flushRow(!0),this.isSpinnerActive()&&this.stopLoadingSpinnerAnimation(),this.stopImgAnalyzerStarter(),this.$gallery.trigger(b?"jg.resize":"jg.complete"),this.$gallery.height(this.galleryHeightToSet)},c.prototype.stopImgAnalyzerStarter=function(){this.yield.flushed=0,null!==this.imgAnalyzerTimeout&&clearTimeout(this.imgAnalyzerTimeout)},c.prototype.startImgAnalyzer=function(a){var b=this;this.stopImgAnalyzerStarter(),this.imgAnalyzerTimeout=setTimeout(function(){b.analyzeImages(a)},.001)},c.prototype.onImageEvent=function(b,c,d){if(c||d){var e=new Image,f=a(e);c&&f.one("load",function(){f.off("load error"),c(e)}),d&&f.one("error",function(){f.off("load error"),d(e)}),e.src=b}},c.prototype.init=function(){var b=!1,c=!1,d=this;a.each(this.entries,function(e,f){var g=a(f),h=d.imgFromEntry(g);if(g.addClass("jg-entry"),g.data("jg.loaded")!==!0&&"skipped"!==g.data("jg.loaded"))if(null!==d.settings.rel&&g.attr("rel",d.settings.rel),null!==d.settings.target&&g.attr("target",d.settings.target),null!==h){var i=d.extractImgSrcFromImage(h);if(h.attr("src",i),d.settings.waitThumbnailsLoad===!1){var j=parseFloat(h.attr("width")),k=parseFloat(h.attr("height"));if(!isNaN(j)&&!isNaN(k))return g.data("jg.width",j),g.data("jg.height",k),g.data("jg.loaded","skipped"),c=!0,d.startImgAnalyzer(!1),!0}g.data("jg.loaded",!1),b=!0,d.isSpinnerActive()||d.startLoadingSpinnerAnimation(),d.onImageEvent(i,function(a){g.data("jg.width",a.width),g.data("jg.height",a.height),g.data("jg.loaded",!0),d.startImgAnalyzer(!1)},function(){g.data("jg.loaded","error"),d.startImgAnalyzer(!1)})}else g.data("jg.loaded",!0),g.data("jg.width",g.width()|parseFloat(g.css("width"))|1),g.data("jg.height",g.height()|parseFloat(g.css("height"))|1)}),b||c||this.startImgAnalyzer(!1),this.checkWidth()},c.prototype.checkOrConvertNumber=function(b,c){if("string"===a.type(b[c])&&(b[c]=parseFloat(b[c])),"number"!==a.type(b[c]))throw c+" must be a number";if(isNaN(b[c]))throw"invalid number for "+c},c.prototype.checkSizeRangesSuffixes=function(){if("object"!==a.type(this.settings.sizeRangeSuffixes))throw"sizeRangeSuffixes must be defined and must be an object";var b=[];for(var c in this.settings.sizeRangeSuffixes)this.settings.sizeRangeSuffixes.hasOwnProperty(c)&&b.push(c);for(var d={0:""},e=0;e1)throw"justifyThreshold must be in the interval [0,1]";if("boolean"!==a.type(this.settings.cssAnimation))throw"cssAnimation must be a boolean";if("boolean"!==a.type(this.settings.captions))throw"captions must be a boolean";if(this.checkOrConvertNumber(this.settings.captionSettings,"animationDuration"),this.checkOrConvertNumber(this.settings.captionSettings,"visibleOpacity"),this.settings.captionSettings.visibleOpacity<0||this.settings.captionSettings.visibleOpacity>1)throw"captionSettings.visibleOpacity must be in the interval [0, 1]";if(this.checkOrConvertNumber(this.settings.captionSettings,"nonVisibleOpacity"),this.settings.captionSettings.nonVisibleOpacity<0||this.settings.captionSettings.nonVisibleOpacity>1)throw"captionSettings.nonVisibleOpacity must be in the interval [0, 1]";if(this.checkOrConvertNumber(this.settings,"imagesAnimationDuration"),this.checkOrConvertNumber(this.settings,"refreshTime"),this.checkOrConvertNumber(this.settings,"refreshSensitivity"),"boolean"!==a.type(this.settings.randomize))throw"randomize must be a boolean";if("string"!==a.type(this.settings.selector))throw"selector must be a string";if(this.settings.sort!==!1&&!a.isFunction(this.settings.sort))throw"sort must be false or a comparison function";if(this.settings.filter!==!1&&!a.isFunction(this.settings.filter)&&"string"!==a.type(this.settings.filter))throw"filter must be false, a string or a filter function"},c.prototype.retrieveSuffixRanges=function(){var a=[];for(var b in this.settings.sizeRangeSuffixes)this.settings.sizeRangeSuffixes.hasOwnProperty(b)&&a.push(parseInt(b,10));return a.sort(function(a,b){return a>b?1:b>a?-1:0}),a},c.prototype.updateSettings=function(b){this.settings=a.extend({},this.settings,b),this.checkSettings(),this.border=this.settings.border>=0?this.settings.border:this.settings.margins,this.maxRowHeight=this.retrieveMaxRowHeight(),this.suffixRanges=this.retrieveSuffixRanges()},a.fn.justifiedGallery=function(b){return this.each(function(d,e){var f=a(e);f.addClass("justified-gallery");var g=f.data("jg.controller");if("undefined"==typeof g){if("undefined"!=typeof b&&null!==b&&"object"!==a.type(b)){if("destroy"===b)return;throw"The argument must be an object"}g=new c(f,a.extend({},a.fn.justifiedGallery.defaults,b)),f.data("jg.controller",g)}else if("norewind"===b);else{if("destroy"===b)return void g.destroy();g.updateSettings(b),g.rewind()}g.updateEntries("norewind"===b)&&g.init()})},a.fn.justifiedGallery.defaults={sizeRangeSuffixes:{},thumbnailPath:void 0,rowHeight:120,maxRowHeight:!1,margins:1,border:-1,lastRow:"nojustify",justifyThreshold:.9,waitThumbnailsLoad:!0,captions:!0,cssAnimation:!0,imagesAnimationDuration:500,captionSettings:{animationDuration:500,visibleOpacity:.7,nonVisibleOpacity:0},rel:null,target:null,extension:/\.[^.\\/]+$/,refreshTime:200,refreshSensitivity:0,randomize:!1,sort:!1,filter:!1,selector:"a, div:not(.spinner)"}}(jQuery); \ No newline at end of file diff --git a/library/justifiedGallery/justifiedGallery.css b/library/justifiedGallery/justifiedGallery.css index 99be92ff2..00c84fda0 100644 --- a/library/justifiedGallery/justifiedGallery.css +++ b/library/justifiedGallery/justifiedGallery.css @@ -1,73 +1,9 @@ /*! - * Justified Gallery - v3.6.1 + * Justified Gallery - v3.6.3 * http://miromannino.github.io/Justified-Gallery/ - * Copyright (c) 2015 Miro Mannino + * Copyright (c) 2016 Miro Mannino * Licensed under the MIT license. */ -@-webkit-keyframes justified-gallery-show-caption-animation { - from { - opacity: 0; - } - to { - opacity: 0.7; - } -} -@-moz-keyframes justified-gallery-show-caption-animation { - from { - opacity: 0; - } - to { - opacity: 0.7; - } -} -@-o-keyframes justified-gallery-show-caption-animation { - from { - opacity: 0; - } - to { - opacity: 0.7; - } -} -@keyframes justified-gallery-show-caption-animation { - from { - opacity: 0; - } - to { - opacity: 0.7; - } -} -@-webkit-keyframes justified-gallery-show-entry-animation { - from { - opacity: 0; - } - to { - opacity: 1.0; - } -} -@-moz-keyframes justified-gallery-show-entry-animation { - from { - opacity: 0; - } - to { - opacity: 1.0; - } -} -@-o-keyframes justified-gallery-show-entry-animation { - from { - opacity: 0; - } - to { - opacity: 1.0; - } -} -@keyframes justified-gallery-show-entry-animation { - from { - opacity: 0; - } - to { - opacity: 1.0; - } -} .justified-gallery { width: 100%; position: relative; @@ -78,9 +14,9 @@ position: absolute; display: inline-block; overflow: hidden; - opacity: 0; - filter: alpha(opacity=0); - /* IE8 or Earlier */ + /* background: #888888; To have gray placeholders while the gallery is loading with waitThumbnailsLoad = false */ + filter: "alpha(opacity=10)"; + opacity: 0.1; } .justified-gallery > a > img, .justified-gallery > div > img, @@ -92,6 +28,8 @@ margin: 0; padding: 0; border: none; + filter: "alpha(opacity=0)"; + opacity: 0; } .justified-gallery > a > .caption, .justified-gallery > div > .caption { @@ -111,20 +49,26 @@ .justified-gallery > a > .caption.caption-visible, .justified-gallery > div > .caption.caption-visible { display: initial; - opacity: 0.7; filter: "alpha(opacity=70)"; - /* IE8 or Earlier */ - -webkit-animation: justified-gallery-show-caption-animation 500ms 0 ease; - -moz-animation: justified-gallery-show-caption-animation 500ms 0 ease; - -ms-animation: justified-gallery-show-caption-animation 500ms 0 ease; + opacity: 0.7; + -webkit-transition: opacity 500ms ease-in; + -moz-transition: opacity 500ms ease-in; + -o-transition: opacity 500ms ease-in; + transition: opacity 500ms ease-in; } .justified-gallery > .entry-visible { - opacity: 1.0; - filter: alpha(opacity=100); - /* IE8 or Earlier */ - -webkit-animation: justified-gallery-show-entry-animation 500ms 0 ease; - -moz-animation: justified-gallery-show-entry-animation 500ms 0 ease; - -ms-animation: justified-gallery-show-entry-animation 500ms 0 ease; + filter: "alpha(opacity=100)"; + opacity: 1; + background: none; +} +.justified-gallery > .entry-visible > img, +.justified-gallery > .entry-visible > a > img { + filter: "alpha(opacity=100)"; + opacity: 1; + -webkit-transition: opacity 500ms ease-in; + -moz-transition: opacity 500ms ease-in; + -o-transition: opacity 500ms ease-in; + transition: opacity 500ms ease-in; } .justified-gallery > .jg-filtered { display: none; @@ -135,21 +79,17 @@ margin-left: -24px; padding: 10px 0 10px 0; left: 50%; - opacity: initial; - filter: initial; + filter: "alpha(opacity=100)"; + opacity: 1; overflow: initial; } .justified-gallery > .spinner > span { display: inline-block; + filter: "alpha(opacity=0)"; opacity: 0; - filter: alpha(opacity=0); - /* IE8 or Earlier */ width: 8px; height: 8px; margin: 0 4px 0 4px; background-color: #000; - border-top-left-radius: 6px; - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; - border-bottom-left-radius: 6px; + border-radius: 6px; } diff --git a/library/justifiedGallery/justifiedGallery.min.css b/library/justifiedGallery/justifiedGallery.min.css index 09ae4e1f0..78ca2f8d4 100644 --- a/library/justifiedGallery/justifiedGallery.min.css +++ b/library/justifiedGallery/justifiedGallery.min.css @@ -1,7 +1,7 @@ /*! - * Justified Gallery - v3.6.1 + * Justified Gallery - v3.6.3 * http://miromannino.github.io/Justified-Gallery/ - * Copyright (c) 2015 Miro Mannino + * Copyright (c) 2016 Miro Mannino * Licensed under the MIT license. */ -@-webkit-keyframes justified-gallery-show-caption-animation{from{opacity:0}to{opacity:.7}}@-moz-keyframes justified-gallery-show-caption-animation{from{opacity:0}to{opacity:.7}}@-o-keyframes justified-gallery-show-caption-animation{from{opacity:0}to{opacity:.7}}@keyframes justified-gallery-show-caption-animation{from{opacity:0}to{opacity:.7}}@-webkit-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@-moz-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@-o-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}.justified-gallery{width:100%;position:relative;overflow:hidden}.justified-gallery>a,.justified-gallery>div{position:absolute;display:inline-block;overflow:hidden;opacity:0;filter:alpha(opacity=0)}.justified-gallery>a>img,.justified-gallery>div>img,.justified-gallery>a>a>img,.justified-gallery>div>a>img{position:absolute;top:50%;left:50%;margin:0;padding:0;border:0}.justified-gallery>a>.caption,.justified-gallery>div>.caption{display:none;position:absolute;bottom:0;padding:5px;background-color:#000;left:0;right:0;margin:0;color:#fff;font-size:12px;font-weight:300;font-family:sans-serif}.justified-gallery>a>.caption.caption-visible,.justified-gallery>div>.caption.caption-visible{display:initial;opacity:.7;filter:"alpha(opacity=70)";-webkit-animation:justified-gallery-show-caption-animation 500ms 0 ease;-moz-animation:justified-gallery-show-caption-animation 500ms 0 ease;-ms-animation:justified-gallery-show-caption-animation 500ms 0 ease}.justified-gallery>.entry-visible{opacity:1;filter:alpha(opacity=100);-webkit-animation:justified-gallery-show-entry-animation 500ms 0 ease;-moz-animation:justified-gallery-show-entry-animation 500ms 0 ease;-ms-animation:justified-gallery-show-entry-animation 500ms 0 ease}.justified-gallery>.jg-filtered{display:none}.justified-gallery>.spinner{position:absolute;bottom:0;margin-left:-24px;padding:10px 0;left:50%;opacity:initial;filter:initial;overflow:initial}.justified-gallery>.spinner>span{display:inline-block;opacity:0;filter:alpha(opacity=0);width:8px;height:8px;margin:0 4px;background-color:#000;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px} \ No newline at end of file +.justified-gallery{width:100%;position:relative;overflow:hidden}.justified-gallery>a,.justified-gallery>div{position:absolute;display:inline-block;overflow:hidden;filter:"alpha(opacity=10)";opacity:.1}.justified-gallery>a>img,.justified-gallery>div>img,.justified-gallery>a>a>img,.justified-gallery>div>a>img{position:absolute;top:50%;left:50%;margin:0;padding:0;border:0;filter:"alpha(opacity=0)";opacity:0}.justified-gallery>a>.caption,.justified-gallery>div>.caption{display:none;position:absolute;bottom:0;padding:5px;background-color:#000;left:0;right:0;margin:0;color:#fff;font-size:12px;font-weight:300;font-family:sans-serif}.justified-gallery>a>.caption.caption-visible,.justified-gallery>div>.caption.caption-visible{display:initial;filter:"alpha(opacity=70)";opacity:.7;-webkit-transition:opacity 500ms ease-in;-moz-transition:opacity 500ms ease-in;-o-transition:opacity 500ms ease-in;transition:opacity 500ms ease-in}.justified-gallery>.entry-visible{filter:"alpha(opacity=100)";opacity:1;background:0 0}.justified-gallery>.entry-visible>img,.justified-gallery>.entry-visible>a>img{filter:"alpha(opacity=100)";opacity:1;-webkit-transition:opacity 500ms ease-in;-moz-transition:opacity 500ms ease-in;-o-transition:opacity 500ms ease-in;transition:opacity 500ms ease-in}.justified-gallery>.jg-filtered{display:none}.justified-gallery>.spinner{position:absolute;bottom:0;margin-left:-24px;padding:10px 0;left:50%;filter:"alpha(opacity=100)";opacity:1;overflow:initial}.justified-gallery>.spinner>span{display:inline-block;filter:"alpha(opacity=0)";opacity:0;width:8px;height:8px;margin:0 4px;background-color:#000;border-radius:6px} \ No newline at end of file diff --git a/view/js/main.js b/view/js/main.js index 627110c49..f415637bd 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -847,7 +847,7 @@ function pageUpdate() { function justifyPhotos(id) { justifiedGalleryActive = true; $('#' + id).justifiedGallery({ - selector: '> a, > div:not(.spinner, #page-end)', + selector: 'a, div:not(.spinner, #page-end)', margins: 3, border: 0, sizeRangeSuffixes: { -- cgit v1.2.3 From 5680a88c59ae903a4bd16773d53ee08af228f250 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 9 Sep 2016 10:01:25 +0200 Subject: version bump due to js caching issue --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index bd191d19c..12a797fd1 100755 --- a/boot.php +++ b/boot.php @@ -44,7 +44,7 @@ require_once('include/account.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '1.13.1' ); +define ( 'STD_VERSION', '1.13.2' ); define ( 'ZOT_REVISION', '1.1' ); define ( 'DB_UPDATE_VERSION', 1183 ); -- cgit v1.2.3 From 6467ce1a97d0e8c24bcbcec0e92a93cf412594ab Mon Sep 17 00:00:00 2001 From: Wave72 Date: Fri, 9 Sep 2016 12:26:41 +0200 Subject: Updated Italian strings --- view/it/hmessages.po | 10713 +++++++++++++++++++++++++------------------------ view/it/hstrings.php | 1891 ++++----- 2 files changed, 6354 insertions(+), 6250 deletions(-) diff --git a/view/it/hmessages.po b/view/it/hmessages.po index 4daed02fe..f1476e6c0 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-26 00:02-0700\n" -"PO-Revision-Date: 2016-08-30 08:22+0000\n" +"POT-Creation-Date: 2016-09-02 00:02-0700\n" +"PO-Revision-Date: 2016-09-07 13:28+0000\n" "Last-Translator: Paolo Wave \n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -21,84 +21,86 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social Networking" msgstr "Social network" #: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Mostly Public" msgstr "Social - Prevalentemente pubblico" #: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Restricted" msgstr "Social - Con restrizioni" #: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Private" msgstr "Social - Privato" #: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Community Forum" msgstr "Forum di discussione" #: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Mostly Public" msgstr "Social - Prevalentemente pubblico" #: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Restricted" msgstr "Forum - Con restrizioni" #: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Private" msgstr "Forum - Privato" #: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed Republish" msgstr "Aggregatore di feed esterni" #: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed - Mostly Public" msgstr "Feed - Prevalentemente pubblico" #: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed - Restricted" msgstr "Feed - Con restrizioni" #: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special Purpose" msgstr "Per finalità speciali" #: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special - Celebrity/Soapbox" msgstr "Speciale - Pagina per fan" #: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special - Group Repository" msgstr "Speciale - Repository di gruppo" #: ../../Zotlabs/Access/PermissionRoles.php:204 -#: ../../include/permissions.php:943 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 +#: ../../Zotlabs/Module/Register.php:213 +#: ../../Zotlabs/Module/Settings.php:1245 +#: ../../Zotlabs/Module/New_channel.php:132 ../../include/permissions.php:949 +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 msgid "Other" msgstr "Altro" #: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:943 +#: ../../include/permissions.php:949 msgid "Custom/Expert Mode" msgstr "Personalizzazione per esperti" @@ -106,19 +108,19 @@ msgstr "Personalizzazione per esperti" msgid "Can view my channel stream and posts" msgstr "Può vedere i post e i contenuti del mio canale" -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:36 +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:42 msgid "Can send me their channel stream and posts" msgstr "È tra i canali che seguo" -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:30 +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:36 msgid "Can view my default channel profile" msgstr "Può vedere il profilo predefinito del canale" -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:31 +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:37 msgid "Can view my connections" msgstr "Può vedere i miei contatti" -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:32 +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:38 msgid "Can view my file storage and photos" msgstr "Può vedere il mio archivio file e foto" @@ -138,11 +140,11 @@ msgstr "Può creare o modificare le pagine web del mio canale" msgid "Can post on my channel (wall) page" msgstr "Può postare sulla mia bacheca" -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:38 +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:44 msgid "Can comment on or like my posts" msgstr "Può commentare o aggiungere \"mi piace\" ai miei post" -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:39 +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:45 msgid "Can send me private mail messages" msgstr "Può inviarmi messaggi privati" @@ -158,7 +160,7 @@ msgstr "Può inoltrare post a tutti i miei contatti con una menzione @+" msgid "Can chat with me" msgstr "Può aprire una chat con me" -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:47 +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:53 msgid "Can source my public posts in derived channels" msgstr "Può usare i miei post pubblici per creare canali derivati" @@ -170,7 +172,7 @@ msgstr "Può amministrare il mio canale" msgid "parent" msgstr "cartella superiore" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2657 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2665 msgid "Collection" msgstr "Cartella" @@ -197,14 +199,14 @@ msgstr "Appuntamenti inviati" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1613 -#: ../../include/conversation.php:1033 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1033 +#: ../../include/widgets.php:1646 msgid "Unknown" msgstr "Sconosciuto" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1672 -#: ../../include/nav.php:95 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1674 +#: ../../include/nav.php:96 msgid "Files" msgstr "Archivio file" @@ -217,8 +219,8 @@ msgid "Shared" msgstr "Condiviso" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:216 -#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:237 +#: ../../Zotlabs/Module/New_channel.php:147 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 msgid "Create" msgstr "Crea" @@ -227,12 +229,12 @@ msgstr "Crea" #: ../../Zotlabs/Module/Cover_photo.php:357 #: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1626 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1659 msgid "Upload" msgstr "Carica" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:684 -#: ../../Zotlabs/Module/Settings.php:710 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:694 +#: ../../Zotlabs/Module/Settings.php:720 ../../Zotlabs/Module/Admin.php:1236 #: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 msgid "Name" msgstr "Nome" @@ -251,14 +253,14 @@ msgstr "Dimensione" msgid "Last Modified" msgstr "Ultima modifica" -#: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Admin.php:2135 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Admin.php:2127 -#: ../../Zotlabs/Module/Webpages.php:217 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Webpages.php:238 ../../Zotlabs/Module/Blocks.php:160 #: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 #: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 @@ -267,18 +269,17 @@ msgstr "Ultima modifica" msgid "Edit" msgstr "Modifica" -#: ../../Zotlabs/Storage/Browser.php:241 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Admin.php:1052 ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Admin.php:2136 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:170 -#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Admin.php:1052 -#: ../../Zotlabs/Module/Admin.php:1226 ../../Zotlabs/Module/Admin.php:2128 -#: ../../Zotlabs/Module/Webpages.php:219 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Lib/ThreadItem.php:126 -#: ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Webpages.php:240 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Connedit.php:607 +#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Elimina" @@ -309,13 +310,14 @@ msgid "Drop files here to immediately upload" msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:12 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Setup.php:220 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Settings.php:674 #: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Setup.php:219 +#: ../../Zotlabs/Module/Cover_photo.php:290 #: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 @@ -323,27 +325,27 @@ msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 #: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:29 #: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 -#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Group.php:13 #: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 #: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 #: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Webpages.php:95 -#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Item.php:214 ../../Zotlabs/Module/Item.php:222 +#: ../../Zotlabs/Module/Item.php:1073 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Events.php:264 +#: ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 #: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 -#: ../../Zotlabs/Module/Channel.php:268 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Rate.php:113 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 #: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 @@ -351,15 +353,15 @@ msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 -#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 +#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 +#: ../../Zotlabs/Module/Channel.php:268 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 #: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/items.php:3477 ../../include/photos.php:27 +#: ../../include/items.php:3496 ../../include/photos.php:27 #: ../../include/attach.php:142 ../../include/attach.php:190 #: ../../include/attach.php:253 ../../include/attach.php:267 #: ../../include/attach.php:274 ../../include/attach.php:339 @@ -369,13 +371,13 @@ msgstr "Trascina i file qui per caricarli al volo" msgid "Permission denied." msgstr "Permesso negato." -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 +#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:95 msgid "Not Found" msgstr "Non disponibile" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 +#: ../../Zotlabs/Module/Display.php:120 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Help.php:98 msgid "Page not found." msgstr "Pagina non trovata." @@ -383,7 +385,7 @@ msgstr "Pagina non trovata." #: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 #: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:403 msgid "Permission denied" msgstr "Permesso negato" @@ -422,4189 +424,4171 @@ msgstr "Assente" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" -msgstr "Messaggio non valido" - -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" -msgstr "nessun risultato" +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" +msgstr "Server $Projectname - Installazione" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "sincronizzazione del canale effettuata" +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in coda" +#: ../../Zotlabs/Module/Setup.php:192 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "inviato" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "accettato per la spedizione" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "aggiornato" +#: ../../Zotlabs/Module/Setup.php:208 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "aggiornamento ignorato" +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permessi non sufficienti" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" +msgstr "Verifica del sistema" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Destinatario non trovato" +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:960 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +msgid "Next" +msgstr "Successivo" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "messaggio richiamato dal mittente" +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" +msgstr "Verifica di nuovo" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "ricevuto messaggio duplicato" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" +msgstr "Connessione al database" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "messaggio recapitato" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Rapporto di consegna - %1$s" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opzioni" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Reinvia" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" +msgstr "Server del database" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" +msgstr "Il valore predefinito è 127.0.0.1" -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" +msgstr "Port del database" -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" -msgstr "Ritorna alla tua app e inserisci questo Security Code:" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" +msgstr "Utente database" -#: ../../Zotlabs/Module/Api.php:83 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" +msgstr "Password database" -#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "Yes" -msgstr "Sì" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" +msgstr "Nome database" -#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Admin.php:463 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "No" -msgstr "No" +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" +msgstr "Tipo database" -#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del hub" -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Sito web:" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" +msgstr "URL completo del sito" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo hub" -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Setup.php:316 -#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Settings.php:682 ../../Zotlabs/Module/Settings.php:795 -#: ../../Zotlabs/Module/Settings.php:886 ../../Zotlabs/Module/Settings.php:912 -#: ../../Zotlabs/Module/Settings.php:935 -#: ../../Zotlabs/Module/Settings.php:1040 -#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 +#: ../../Zotlabs/Module/Settings.php:692 ../../Zotlabs/Module/Settings.php:815 +#: ../../Zotlabs/Module/Settings.php:906 ../../Zotlabs/Module/Settings.php:932 +#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:1060 +#: ../../Zotlabs/Module/Settings.php:1255 ../../Zotlabs/Module/Admin.php:498 +#: ../../Zotlabs/Module/Admin.php:699 ../../Zotlabs/Module/Admin.php:784 +#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 +#: ../../Zotlabs/Module/Admin.php:1443 ../../Zotlabs/Module/Admin.php:1670 +#: ../../Zotlabs/Module/Admin.php:1755 ../../Zotlabs/Module/Admin.php:2138 +#: ../../Zotlabs/Module/Appman.php:126 ../../Zotlabs/Module/Pdledit.php:74 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Group.php:85 #: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 #: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 #: ../../Zotlabs/Module/Import_items.php:122 #: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Admin.php:502 -#: ../../Zotlabs/Module/Admin.php:701 ../../Zotlabs/Module/Admin.php:784 -#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Admin.php:1662 -#: ../../Zotlabs/Module/Admin.php:1747 ../../Zotlabs/Module/Admin.php:2130 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Events.php:484 +#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Rate.php:166 #: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 #: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 #: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:711 -#: ../../include/widgets.php:763 ../../include/js_strings.php:22 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:712 +#: ../../include/js_strings.php:22 ../../include/widgets.php:796 #: ../../view/theme/redbasic/php/config.php:106 msgid "Submit" msgstr "Salva" -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1351 -msgid "Public Hubs" -msgstr "Hub pubblici" +#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:485 +msgid "Basic/Minimal Social Networking" +msgstr "Social network basilare" -#: ../../Zotlabs/Module/Pubsites.php:27 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." +#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:486 +msgid "Standard Configuration (default)" +msgstr "Configurazione standard (predefinita)" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "URL del hub" +#: ../../Zotlabs/Module/Setup.php:338 ../../Zotlabs/Module/Admin.php:487 +msgid "Professional" +msgstr "Professionale" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Tipo di accesso" +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" +msgstr "Impostazioni del hub" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Politica di registrazione" +#: ../../Zotlabs/Module/Setup.php:359 ../../Zotlabs/Module/Admin.php:508 +msgid "Server Configuration/Role" +msgstr "Configurazione del server" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Statistiche" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." +msgstr "E' necessario PHP versione 5.5 o superiore." -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" +msgstr "Versione PHP" -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:960 -msgid "Ratings" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" -#: ../../Zotlabs/Module/Pubsites.php:43 -msgid "Rate" -msgstr "Valuta" +#: ../../Zotlabs/Module/Setup.php:417 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." -#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Posizione geografica" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" +msgstr "Path del comando PHP" -#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Webpages.php:223 -#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Guarda" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: ../../Zotlabs/Module/Register.php:55 +#: ../../Zotlabs/Module/Setup.php:435 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." +#: ../../Zotlabs/Module/Setup.php:457 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Su questo hub la registrazione non è permessa." +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puoi regolare queste impostazioni sul server in php.ini" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "La registrazione su questo hub è soggetta ad approvazione." +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" +msgstr "Limiti PHP in upload" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrati su un altro server hubzilla." +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Setup.php:488 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" +msgstr "Genera chiavi di cifratura" -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" -#: ../../Zotlabs/Module/Register.php:223 -#, 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" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Il tuo indirizzo email" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Scegli una password" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" +msgstr "modulo PHP per mysqli oppure prostgres" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" +msgstr "modulo xml PHP" -#: ../../Zotlabs/Module/Register.php:231 -#: ../../Zotlabs/Module/New_channel.php:128 -msgid "Name or caption" -msgstr "Nome o titolo" +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" -#: ../../Zotlabs/Module/Register.php:231 -#: ../../Zotlabs/Module/New_channel.php:128 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" +#: ../../Zotlabs/Module/Setup.php:512 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" -#: ../../Zotlabs/Module/Register.php:233 -#: ../../Zotlabs/Module/New_channel.php:130 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Register.php:233 -#: ../../Zotlabs/Module/New_channel.php:130 -#, php-format +#: ../../Zotlabs/Module/Setup.php:518 msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Channel role and privacy" -msgstr "Tipo di canale e privacy" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Select a channel role with your privacy requirements." -msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." +#: ../../Zotlabs/Module/Setup.php:530 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Module/Setup.php:538 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "sì" +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." -#: ../../Zotlabs/Module/Register.php:248 ../../Zotlabs/Module/Admin.php:503 -msgid "Registration" -msgstr "Registrazione" +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." -#: ../../Zotlabs/Module/Register.php:253 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo hub è necessario un invito." +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." -#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 -#: ../../boot.php:1720 -msgid "Register" -msgstr "Registrati" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." -#: ../../Zotlabs/Module/Register.php:266 +#: ../../Zotlabs/Module/Setup.php:566 msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" +#: ../../Zotlabs/Module/Setup.php:567 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "I miei segnalibri" +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" +#: ../../Zotlabs/Module/Setup.php:584 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Accesso pubblico negato." +#: ../../Zotlabs/Module/Setup.php:585 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 -#: ../../Zotlabs/Module/Admin.php:1575 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3398 -msgid "Item not found." -msgstr "Elemento non trovato." +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/conversation.php:1665 ../../include/nav.php:94 -msgid "Photos" -msgstr "Foto" +#: ../../Zotlabs/Module/Setup.php:587 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Settings.php:683 ../../Zotlabs/Module/Settings.php:709 -#: ../../Zotlabs/Module/Admin.php:1420 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 -#: ../../include/conversation.php:1292 -msgid "Cancel" -msgstr "Annulla" +#: ../../Zotlabs/Module/Setup.php:590 +#, php-format +msgid "%s is writable" +msgstr "%s è scrivibile" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento non valido." +#: ../../Zotlabs/Module/Setup.php:606 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" +msgstr "l'archivio è scrivibile" -#: ../../Zotlabs/Module/Page.php:131 +#: ../../Zotlabs/Module/Setup.php:643 msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- scegli -" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2047 -#: ../../Zotlabs/Module/Admin.php:2067 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Salva" +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." + +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." + +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." + +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." + +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" + +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" + +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" + +#: ../../Zotlabs/Module/Setup.php:671 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." + +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." + +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " +msgstr "

    I prossimi passi

    " + +#: ../../Zotlabs/Module/Setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." + +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" -#: ../../Zotlabs/Module/Network.php:94 +#: ../../Zotlabs/Module/Network.php:95 msgid "No such group" msgstr "Impossibile trovare il gruppo di canali" -#: ../../Zotlabs/Module/Network.php:134 +#: ../../Zotlabs/Module/Network.php:135 msgid "No such channel" msgstr "Canale sconosciuto" -#: ../../Zotlabs/Module/Network.php:139 +#: ../../Zotlabs/Module/Network.php:140 msgid "forum" msgstr "forum" -#: ../../Zotlabs/Module/Network.php:151 +#: ../../Zotlabs/Module/Network.php:152 msgid "Search Results For:" msgstr "Cerca risultati con:" -#: ../../Zotlabs/Module/Network.php:217 +#: ../../Zotlabs/Module/Network.php:218 msgid "Privacy group is empty" msgstr "Il gruppo di canali è vuoto" -#: ../../Zotlabs/Module/Network.php:226 +#: ../../Zotlabs/Module/Network.php:227 msgid "Privacy group: " msgstr "Gruppo di canali:" -#: ../../Zotlabs/Module/Network.php:252 +#: ../../Zotlabs/Module/Network.php:253 msgid "Invalid connection." msgstr "Contatto non valido." -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloccati" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorati" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Nascosti" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archiviati" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1568 -msgid "New" -msgstr "Novità" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:497 -msgid "All" -msgstr "Tutti" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere processata." -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Su questo hub la registrazione non è permessa." -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "La registrazione su questo hub è soggetta ad approvazione." -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrati su un altro server hubzilla." -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" +#: ../../Zotlabs/Module/Register.php:229 +#, 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" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" +msgstr "Il tuo indirizzo email" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "In attesa di conferma" +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" +msgstr "Scegli una password" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Modifica il contatto" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Elimina il contatto" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Name or caption" +msgstr "Nome o titolo" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Indirizzo del canale" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Network" +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:723 -msgid "Status" -msgstr "Stato" +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "In contatto" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Select a channel role with your privacy requirements." +msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Approve" -msgstr "Approva" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignora il contatto" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Ignore" -msgstr "Ignora" +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" +msgstr "sì" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Register.php:253 ../../Zotlabs/Module/Admin.php:499 +msgid "Registration" +msgstr "Registrazione" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:855 ../../include/nav.php:190 -msgid "Connections" -msgstr "Contatti" +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo hub è necessario un invito." -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:925 -#: ../../include/text.php:937 ../../include/acl_selectors.php:174 -#: ../../include/nav.php:169 -msgid "Search" -msgstr "Cerca" +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1720 +msgid "Register" +msgstr "Registrati" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Cerca tra i contatti" +#: ../../Zotlabs/Module/Register.php:271 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Ricerca tra i contatti" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Autorizza la app" -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Cerca" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Ritorna alla tua app e inserisci questo Security Code:" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Copertine del canale" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." -msgstr "Il ridimensionamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Settings.php:683 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "Yes" +msgstr "Sì" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Settings.php:683 +#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "No" +msgstr "No" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." -msgstr "Il caricamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "I miei segnalibri" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4312 -msgid "female" -msgstr "femmina" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4313 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +#: ../../Zotlabs/Module/Settings.php:64 +msgid "Name is required" +msgstr "Il nome è obbligatorio" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4314 -msgid "male" -msgstr "maschio" +#: ../../Zotlabs/Module/Settings.php:68 +msgid "Key and Secret are required" +msgstr "Key e Secret sono richiesti" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4315 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:718 +#: ../../Zotlabs/Module/Admin.php:1457 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "Aggiorna" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4317 +#: ../../Zotlabs/Module/Settings.php:138 #, php-format -msgid "%1$s updated their %2$s" -msgstr "Aggiornamento: %2$s di %1$s" - -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 -msgid "cover photo" -msgstr "Copertina del canale" - -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." -msgstr "Foto non disponibile." +msgid "This channel is limited to %d tokens" +msgstr "Questo canale è limitato a %d token" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" -msgstr "Carica un file:" +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "Nome e password sono obbligatori." -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" +#: ../../Zotlabs/Module/Settings.php:184 +msgid "Token saved." +msgstr "Token salvato." -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Carica una copertina" +#: ../../Zotlabs/Module/Settings.php:316 +msgid "Not valid email." +msgstr "Email non valida." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Settings.php:1180 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "or" -msgstr "o" +#: ../../Zotlabs/Module/Settings.php:319 +msgid "Protected email address. Cannot change to that email." +msgstr "È un indirizzo email riservato. Non puoi sceglierlo." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" -msgstr "salta questo passaggio" +#: ../../Zotlabs/Module/Settings.php:328 +msgid "System failure storing new email. Please try again." +msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" +#: ../../Zotlabs/Module/Settings.php:336 +msgid "Technical skill level updated" +msgstr "Livello tecnico aggiornato" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" -msgstr "Ritaglia immagine" +#: ../../Zotlabs/Module/Settings.php:352 +msgid "Password verification failed." +msgstr "Verifica della password fallita." -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." +#: ../../Zotlabs/Module/Settings.php:359 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "Modifica terminata" +#: ../../Zotlabs/Module/Settings.php:363 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../Zotlabs/Module/Setup.php:183 -msgid "$Projectname Server - Setup" -msgstr "Server $Projectname - Installazione" +#: ../../Zotlabs/Module/Settings.php:377 +msgid "Password changed." +msgstr "Password cambiata." -#: ../../Zotlabs/Module/Setup.php:187 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." +#: ../../Zotlabs/Module/Settings.php:379 +msgid "Password update failed. Please try again." +msgstr "Modifica password fallita. Prova ancora." -#: ../../Zotlabs/Module/Setup.php:191 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." +#: ../../Zotlabs/Module/Settings.php:440 ../../Zotlabs/Module/Settings.php:444 +#: ../../Zotlabs/Module/Settings.php:445 ../../Zotlabs/Module/Settings.php:448 +#: ../../Zotlabs/Module/Settings.php:459 ../../Zotlabs/Module/Connedit.php:627 +#: ../../include/channel.php:402 ../../include/channel.php:403 +#: ../../include/channel.php:410 ../../include/selectors.php:123 +#: ../../include/widgets.php:531 +msgid "Friends" +msgstr "Amici" -#: ../../Zotlabs/Module/Setup.php:198 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." +#: ../../Zotlabs/Module/Settings.php:628 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." -#: ../../Zotlabs/Module/Setup.php:203 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." +#: ../../Zotlabs/Module/Settings.php:691 ../../Zotlabs/Module/Settings.php:717 +#: ../../Zotlabs/Module/Settings.php:753 +msgid "Add application" +msgstr "Aggiungi una app" -#: ../../Zotlabs/Module/Setup.php:207 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." +#: ../../Zotlabs/Module/Settings.php:693 ../../Zotlabs/Module/Settings.php:719 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1428 ../../Zotlabs/Module/Wiki.php:171 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 +#: ../../include/conversation.php:1292 +msgid "Cancel" +msgstr "Annulla" -#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:270 -#: ../../Zotlabs/Module/Setup.php:733 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." +#: ../../Zotlabs/Module/Settings.php:694 +msgid "Name of application" +msgstr "Nome dell'applicazione" -#: ../../Zotlabs/Module/Setup.php:267 -msgid "System check" -msgstr "Verifica del sistema" +#: ../../Zotlabs/Module/Settings.php:695 ../../Zotlabs/Module/Settings.php:721 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Module/Setup.php:271 ../../Zotlabs/Module/Photos.php:960 -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" -msgstr "Successivo" +#: ../../Zotlabs/Module/Settings.php:695 ../../Zotlabs/Module/Settings.php:696 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" -#: ../../Zotlabs/Module/Setup.php:272 -msgid "Check again" -msgstr "Verifica di nuovo" +#: ../../Zotlabs/Module/Settings.php:696 ../../Zotlabs/Module/Settings.php:722 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database connection" -msgstr "Connessione al database" +#: ../../Zotlabs/Module/Settings.php:697 ../../Zotlabs/Module/Settings.php:723 +msgid "Redirect" +msgstr "Redirect" -#: ../../Zotlabs/Module/Setup.php:295 +#: ../../Zotlabs/Module/Settings.php:697 msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" -#: ../../Zotlabs/Module/Setup.php:296 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." +#: ../../Zotlabs/Module/Settings.php:698 ../../Zotlabs/Module/Settings.php:724 +msgid "Icon url" +msgstr "Url icona" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." +#: ../../Zotlabs/Module/Settings.php:698 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Facoltativo" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Server Name" -msgstr "Server del database" +#: ../../Zotlabs/Module/Settings.php:709 +msgid "Application not found." +msgstr "Applicazione non trovata." -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Default is 127.0.0.1" -msgstr "Il valore predefinito è 127.0.0.1" +#: ../../Zotlabs/Module/Settings.php:752 +msgid "Connected Apps" +msgstr "App connesse" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Port" -msgstr "Port del database" +#: ../../Zotlabs/Module/Settings.php:756 +msgid "Client key starts with" +msgstr "La client key inizia con" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" +#: ../../Zotlabs/Module/Settings.php:757 +msgid "No name" +msgstr "Nessun nome" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Login Name" -msgstr "Utente database" +#: ../../Zotlabs/Module/Settings.php:758 +msgid "Remove authorization" +msgstr "Revoca l'autorizzazione" -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Password" -msgstr "Password database" +#: ../../Zotlabs/Module/Settings.php:771 +msgid "No feature settings configured" +msgstr "Non hai componenti aggiuntivi da personalizzare" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Name" -msgstr "Nome database" +#: ../../Zotlabs/Module/Settings.php:778 +msgid "Feature/Addon Settings" +msgstr "Impostazioni dei componenti aggiuntivi" -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Type" -msgstr "Tipo database" +#: ../../Zotlabs/Module/Settings.php:798 +msgid "Beginner/Basic" +msgstr "Principiante" -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del hub" +#: ../../Zotlabs/Module/Settings.php:799 +msgid "Novice - not skilled but willing to learn" +msgstr "Novizio - disposto a imparare" -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." +#: ../../Zotlabs/Module/Settings.php:800 +msgid "Intermediate - somewhat comfortable" +msgstr "Intermedio - con alcune conoscenze tecniche" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 -msgid "Website URL" -msgstr "URL completo del sito" +#: ../../Zotlabs/Module/Settings.php:801 +msgid "Advanced - very comfortable" +msgstr "Avanzato - a mio agio con gli aspetti tecnici" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 -msgid "Please use SSL (https) URL if available." -msgstr "Se disponibile, usa l'indirizzo SSL (https)." +#: ../../Zotlabs/Module/Settings.php:802 +msgid "Expert - I can write computer code" +msgstr "Esperto - posso scrivere codice" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:360 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo hub" +#: ../../Zotlabs/Module/Settings.php:803 +msgid "Wizard - I probably know more than you do" +msgstr "Genio - probabilmente ne so più di te" -#: ../../Zotlabs/Module/Setup.php:335 ../../Zotlabs/Module/Admin.php:489 -msgid "Basic/Minimal Social Networking" -msgstr "Social network basilare" +#: ../../Zotlabs/Module/Settings.php:810 +msgid "Account Settings" +msgstr "Il tuo account" -#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:490 -msgid "Standard Configuration (default)" -msgstr "Configurazione standard (predefinita)" +#: ../../Zotlabs/Module/Settings.php:811 +msgid "Current Password" +msgstr "Password attuale" -#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:491 -msgid "Professional" -msgstr "Professionale" +#: ../../Zotlabs/Module/Settings.php:812 +msgid "Enter New Password" +msgstr "Nuova password" -#: ../../Zotlabs/Module/Setup.php:343 -msgid "Site settings" -msgstr "Impostazioni del hub" +#: ../../Zotlabs/Module/Settings.php:813 +msgid "Confirm New Password" +msgstr "Conferma la nuova password" -#: ../../Zotlabs/Module/Setup.php:358 ../../Zotlabs/Module/Admin.php:512 -msgid "Server Configuration/Role" -msgstr "Configurazione del server" +#: ../../Zotlabs/Module/Settings.php:813 +msgid "Leave password fields blank unless changing" +msgstr "Lascia vuoti questi campi per non cambiare la password" -#: ../../Zotlabs/Module/Setup.php:399 -msgid "PHP version 5.5 or greater is required." -msgstr "E' necessario PHP versione 5.5 o superiore." +#: ../../Zotlabs/Module/Settings.php:814 +msgid "Your technical skill level" +msgstr "Il tuo livello tecnico" -#: ../../Zotlabs/Module/Setup.php:400 -msgid "PHP version" -msgstr "Versione PHP" +#: ../../Zotlabs/Module/Settings.php:814 +msgid "Used to provide a member experience matched to your comfort level" +msgstr "Serve a vedere solo gli aspetti tecnici che possano metterti a tuo agio" -#: ../../Zotlabs/Module/Setup.php:415 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" +#: ../../Zotlabs/Module/Settings.php:816 +#: ../../Zotlabs/Module/Settings.php:1262 +msgid "Email Address:" +msgstr "Indirizzo email:" -#: ../../Zotlabs/Module/Setup.php:416 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." +#: ../../Zotlabs/Module/Settings.php:817 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Elimina l'account" -#: ../../Zotlabs/Module/Setup.php:420 -msgid "PHP executable path" -msgstr "Path del comando PHP" +#: ../../Zotlabs/Module/Settings.php:818 +msgid "Remove this account including all its channels" +msgstr "Elimina questo account e tutti i suoi canali" -#: ../../Zotlabs/Module/Setup.php:420 +#: ../../Zotlabs/Module/Settings.php:852 msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." - -#: ../../Zotlabs/Module/Setup.php:425 -msgid "Command line PHP" -msgstr "PHP da riga di comando" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." +msgstr "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." -#: ../../Zotlabs/Module/Setup.php:434 +#: ../../Zotlabs/Module/Settings.php:854 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" -#: ../../Zotlabs/Module/Setup.php:435 -msgid "This is required for message delivery to work." -msgstr "E' necessario perché funzioni la consegna dei messaggi." +#: ../../Zotlabs/Module/Settings.php:889 ../../include/widgets.php:647 +msgid "Guest Access Tokens" +msgstr "Token di accesso ospite" -#: ../../Zotlabs/Module/Setup.php:438 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Settings.php:896 +msgid "Login Name" +msgstr "Nome utente" -#: ../../Zotlabs/Module/Setup.php:456 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." +#: ../../Zotlabs/Module/Settings.php:897 +msgid "Login Password" +msgstr "Password" -#: ../../Zotlabs/Module/Setup.php:461 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puoi regolare queste impostazioni sul server in php.ini" +#: ../../Zotlabs/Module/Settings.php:898 +msgid "Expires (yyyy-mm-dd)" +msgstr "Con scadenza (aaaa-mm-gg)" -#: ../../Zotlabs/Module/Setup.php:463 -msgid "PHP upload limits" -msgstr "Limiti PHP in upload" +#: ../../Zotlabs/Module/Settings.php:899 ../../Zotlabs/Module/Connedit.php:782 +msgid "Their Settings" +msgstr "Permessi concessi a te" -#: ../../Zotlabs/Module/Setup.php:486 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" +#: ../../Zotlabs/Module/Settings.php:900 ../../Zotlabs/Module/Connedit.php:783 +msgid "My Settings" +msgstr "Permessi che concedo" -#: ../../Zotlabs/Module/Setup.php:487 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../Zotlabs/Module/Settings.php:902 ../../Zotlabs/Module/Connedit.php:778 +msgid "inherited" +msgstr "derivato" -#: ../../Zotlabs/Module/Setup.php:490 -msgid "Generate encryption keys" -msgstr "Genera chiavi di cifratura" +#: ../../Zotlabs/Module/Settings.php:904 ../../Zotlabs/Module/Connedit.php:785 +msgid "Individual Permissions" +msgstr "Permessi individuali" -#: ../../Zotlabs/Module/Setup.php:502 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" +#: ../../Zotlabs/Module/Settings.php:905 ../../Zotlabs/Module/Connedit.php:786 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." -#: ../../Zotlabs/Module/Setup.php:503 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" +#: ../../Zotlabs/Module/Settings.php:923 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:689 +msgid "Off" +msgstr "Off" -#: ../../Zotlabs/Module/Setup.php:504 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" +#: ../../Zotlabs/Module/Settings.php:923 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:689 +msgid "On" +msgstr "On" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "mysqli or postgres PHP module" -msgstr "modulo PHP per mysqli oppure prostgres" +#: ../../Zotlabs/Module/Settings.php:930 +msgid "Additional Features" +msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" +#: ../../Zotlabs/Module/Settings.php:954 +msgid "Connector Settings" +msgstr "Impostazioni del connettore" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "xml PHP module" -msgstr "modulo xml PHP" +#: ../../Zotlabs/Module/Settings.php:1001 +msgid "No special theme for mobile devices" +msgstr "Nessun tema per dispositivi mobili" -#: ../../Zotlabs/Module/Setup.php:511 ../../Zotlabs/Module/Setup.php:513 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" +#: ../../Zotlabs/Module/Settings.php:1004 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Sperimentale)" -#: ../../Zotlabs/Module/Setup.php:511 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" +#: ../../Zotlabs/Module/Settings.php:1007 ../../Zotlabs/Module/Admin.php:410 +msgid "mobile" +msgstr "mobile" -#: ../../Zotlabs/Module/Setup.php:517 ../../Zotlabs/Module/Setup.php:520 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Settings.php:1055 +msgid "Display Settings" +msgstr "Aspetto" -#: ../../Zotlabs/Module/Setup.php:517 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" +#: ../../Zotlabs/Module/Settings.php:1056 +msgid "Theme Settings" +msgstr "Impostazioni del tema" -#: ../../Zotlabs/Module/Setup.php:525 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Custom Theme Settings" +msgstr "Personalizzazione del tema" -#: ../../Zotlabs/Module/Setup.php:529 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Content Settings" +msgstr "Impostazioni dei contenuti" -#: ../../Zotlabs/Module/Setup.php:533 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Settings.php:1064 +msgid "Display Theme:" +msgstr "Tema per schermi medio grandi:" -#: ../../Zotlabs/Module/Setup.php:537 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "Select scheme" +msgstr "Scegli uno schema" -#: ../../Zotlabs/Module/Setup.php:541 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." +#: ../../Zotlabs/Module/Settings.php:1067 +msgid "Mobile Theme:" +msgstr "Tema per dispositivi mobili:" -#: ../../Zotlabs/Module/Setup.php:545 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "Preload images before rendering the page" +msgstr "Carica le immagini prima del rendering della pagina" -#: ../../Zotlabs/Module/Setup.php:563 +#: ../../Zotlabs/Module/Settings.php:1068 msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" -#: ../../Zotlabs/Module/Setup.php:564 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." +#: ../../Zotlabs/Module/Settings.php:1069 +msgid "Enable user zoom on mobile devices" +msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" -#: ../../Zotlabs/Module/Setup.php:565 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." +#: ../../Zotlabs/Module/Settings.php:1070 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" -#: ../../Zotlabs/Module/Setup.php:566 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." - -#: ../../Zotlabs/Module/Setup.php:569 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" +#: ../../Zotlabs/Module/Settings.php:1070 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../Zotlabs/Module/Setup.php:583 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." +#: ../../Zotlabs/Module/Settings.php:1071 +msgid "Maximum number of conversations to load at any time:" +msgstr "Massimo numero di conversazioni da mostrare ogni volta:" -#: ../../Zotlabs/Module/Setup.php:584 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." -msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" +#: ../../Zotlabs/Module/Settings.php:1071 +msgid "Maximum of 100 items" +msgstr "Massimo 100" -#: ../../Zotlabs/Module/Setup.php:585 ../../Zotlabs/Module/Setup.php:606 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." +#: ../../Zotlabs/Module/Settings.php:1072 +msgid "Show emoticons (smilies) as images" +msgstr "Mostra le faccine (smilies) come immagini" -#: ../../Zotlabs/Module/Setup.php:586 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." +#: ../../Zotlabs/Module/Settings.php:1073 +msgid "Link post titles to source" +msgstr "Il link del titolo di un post porta al sito originale" -#: ../../Zotlabs/Module/Setup.php:589 -#, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" +#: ../../Zotlabs/Module/Settings.php:1074 +msgid "System Page Layout Editor - (advanced)" +msgstr "Modifica i layout di sistema (avanzato)" -#: ../../Zotlabs/Module/Setup.php:605 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" -msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" +#: ../../Zotlabs/Module/Settings.php:1077 +msgid "Use blog/list mode on channel page" +msgstr "Mostra il canale nella modalità blog" -#: ../../Zotlabs/Module/Setup.php:609 -msgid "store is writable" -msgstr "l'archivio è scrivibile" +#: ../../Zotlabs/Module/Settings.php:1077 +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "(comments displayed separately)" +msgstr "(i commenti sono mostrati separatamente)" -#: ../../Zotlabs/Module/Setup.php:642 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Use blog/list mode on grid page" +msgstr "Mostra la tua rete in modalità blog" -#: ../../Zotlabs/Module/Setup.php:643 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" +#: ../../Zotlabs/Module/Settings.php:1079 +msgid "Channel page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti del canale (in pixel)" -#: ../../Zotlabs/Module/Setup.php:644 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." +#: ../../Zotlabs/Module/Settings.php:1079 +#: ../../Zotlabs/Module/Settings.php:1080 +msgid "click to expand content exceeding this height" +msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" -#: ../../Zotlabs/Module/Setup.php:645 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." +#: ../../Zotlabs/Module/Settings.php:1080 +msgid "Grid page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti della tua rete (in pixel)" -#: ../../Zotlabs/Module/Setup.php:646 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." +#: ../../Zotlabs/Module/Settings.php:1110 +msgid "Nobody except yourself" +msgstr "Nessuno tranne te" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." +#: ../../Zotlabs/Module/Settings.php:1111 +msgid "Only those you specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../Zotlabs/Module/Setup.php:649 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Approved connections" +msgstr "Contatti approvati" -#: ../../Zotlabs/Module/Setup.php:652 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" +#: ../../Zotlabs/Module/Settings.php:1113 +msgid "Any connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Setup.php:658 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" +#: ../../Zotlabs/Module/Settings.php:1114 +msgid "Anybody on this website" +msgstr "Chiunque su questo hub" -#: ../../Zotlabs/Module/Setup.php:661 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" +#: ../../Zotlabs/Module/Settings.php:1115 +msgid "Anybody in this network" +msgstr "Chiunque su questa rete" -#: ../../Zotlabs/Module/Setup.php:670 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." +#: ../../Zotlabs/Module/Settings.php:1116 +msgid "Anybody authenticated" +msgstr "Chiunque abbia effettuato l'accesso" -#: ../../Zotlabs/Module/Setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../Zotlabs/Module/Settings.php:1117 +msgid "Anybody on the internet" +msgstr "Chiunque su internet" -#: ../../Zotlabs/Module/Setup.php:731 -msgid "

    What next

    " -msgstr "

    I prossimi passi

    " +#: ../../Zotlabs/Module/Settings.php:1193 +msgid "Publish your default profile in the network directory" +msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" -#: ../../Zotlabs/Module/Setup.php:732 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." +#: ../../Zotlabs/Module/Settings.php:1198 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Vuoi essere suggerito come amico ai nuovi membri?" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" +#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "or" +msgstr "o" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Sesso:" +#: ../../Zotlabs/Module/Settings.php:1207 +msgid "Your channel address is" +msgstr "L'indirizzo del tuo canale è" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Stato:" +#: ../../Zotlabs/Module/Settings.php:1253 +msgid "Channel Settings" +msgstr "Impostazioni del canale" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage:" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "Basic Settings" +msgstr "Impostazioni di base" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" -msgstr "Età:" +#: ../../Zotlabs/Module/Settings.php:1261 ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Nome completo:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 -#: ../../include/event.php:52 ../../include/event.php:84 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Luogo:" +#: ../../Zotlabs/Module/Settings.php:1263 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "Default Post Location:" +msgstr "Località predefinita:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" -msgstr "Città dove vivo:" +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "Geographical location to display on your posts" +msgstr "La posizione geografica da mostrare sui tuoi post" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" -msgstr "Informazioni:" +#: ../../Zotlabs/Module/Settings.php:1265 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/channel.php:1034 ../../include/conversation.php:957 -msgid "Connect" -msgstr "Aggiungi" +#: ../../Zotlabs/Module/Settings.php:1267 +msgid "Adult Content" +msgstr "Contenuto per adulti" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Forum pubblico:" +#: ../../Zotlabs/Module/Settings.php:1267 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Parole chiave:" +#: ../../Zotlabs/Module/Settings.php:1269 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Non fornire suggerimenti" +#: ../../Zotlabs/Module/Settings.php:1272 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Contatti in comune:" +#: ../../Zotlabs/Module/Settings.php:1274 +msgid "Hide my online presence" +msgstr "Nascondi la mia presenza online" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Elenchi pubblici globali" +#: ../../Zotlabs/Module/Settings.php:1274 +msgid "Prevents displaying in your profile that you are online" +msgstr "Non mostrare sul tuo profilo quando sei online" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Elenco canali su questo hub" +#: ../../Zotlabs/Module/Settings.php:1276 +msgid "Simple Privacy Settings:" +msgstr "Impostazioni di privacy semplificate" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Ricerca:" +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" +#: ../../Zotlabs/Module/Settings.php:1278 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "pagina successiva" +#: ../../Zotlabs/Module/Settings.php:1279 +msgid "Private - default private, never open or public" +msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "pagina precedente" +#: ../../Zotlabs/Module/Settings.php:1280 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Opzioni di ordinamento" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "Allow others to tag your posts" +msgstr "Permetti ad altri di taggare i tuoi post" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetico" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" +#: ../../Zotlabs/Module/Settings.php:1284 +msgid "Channel Permission Limits" +msgstr "Limiti sui permessi del canale" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "Expire other channel content after this many days" +msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "0 or blank to use the website limit." +msgstr "0 o vuoto per usare i valori predefiniti." -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." +#: ../../Zotlabs/Module/Settings.php:1286 +#, php-format +msgid "This website expires after %d days." +msgstr "Per questo sito la scadenza è %d giorni. " -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Questo non è un directory server" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "This website does not expire imported content." +msgstr "I contenuti di questo sito non hanno scadenza." -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Questo directory server necessita di un token di autenticazione" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" -msgstr "Elemento non trovato" +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo giornaliero di richieste di amicizia:" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "Nome del block" +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "May reduce spam activity" +msgstr "Serve a ridurre lo spam" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 -#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1148 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" +#: ../../Zotlabs/Module/Settings.php:1288 +msgid "Default Access Control List (ACL)" +msgstr "Lista di accesso ai contenuti (ACL)" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" +#: ../../Zotlabs/Module/Settings.php:1289 ../../Zotlabs/Module/Mitem.php:154 +#: ../../Zotlabs/Module/Mitem.php:231 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifica il block" +#: ../../Zotlabs/Module/Settings.php:1290 +msgid "Use my default audience setting for the type of object published" +msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "Nome layout" +#: ../../Zotlabs/Module/Settings.php:1297 +msgid "Channel permissions category:" +msgstr "Categorie di permessi dei canali:" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "Descrizione del layout (facoltativa)" +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "Modifica il layout" +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Useful to reduce spamming" +msgstr "Serve e ridurre lo spam" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Settings.php:1306 +msgid "Notification Settings" +msgstr "Impostazioni di notifica" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "By default post a status message when:" +msgstr "Pubblica un messaggio di stato quando:" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." +#: ../../Zotlabs/Module/Settings.php:1308 +msgid "accepting a friend request" +msgstr "accetto una nuova amicizia" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." +#: ../../Zotlabs/Module/Settings.php:1309 +msgid "joining a forum/community" +msgstr "entro a far parte di un forum" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nome del menu" +#: ../../Zotlabs/Module/Settings.php:1310 +msgid "making an interesting profile change" +msgstr "faccio un cambiamento interessante al mio profilo" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Send a notification email when:" +msgstr "Invia una email di notifica quando:" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titolo del menu" +#: ../../Zotlabs/Module/Settings.php:1312 +msgid "You receive a connection request" +msgstr "Ricevi una richiesta di entrare in contatto" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" +#: ../../Zotlabs/Module/Settings.php:1313 +msgid "Your connections are confirmed" +msgstr "I tuoi contatti sono confermati" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" +#: ../../Zotlabs/Module/Settings.php:1314 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla tua bacheca" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" +#: ../../Zotlabs/Module/Settings.php:1315 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento dopo di te" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Salva e procedi" +#: ../../Zotlabs/Module/Settings.php:1316 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 -msgid "Menus" -msgstr "Menù" +#: ../../Zotlabs/Module/Settings.php:1317 +msgid "You receive a friend suggestion" +msgstr "Ti viene suggerito un amico" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "Elimina" +#: ../../Zotlabs/Module/Settings.php:1318 +msgid "You are tagged in a post" +msgstr "Sei taggato in un post" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:228 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creato" +#: ../../Zotlabs/Module/Settings.php:1319 +msgid "You are poked/prodded/etc. in a post" +msgstr "Ricevi un poke in un post" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:229 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Modificato" +#: ../../Zotlabs/Module/Settings.php:1322 +msgid "Show visual notifications including:" +msgstr "Mostra queste notifiche a schermo:" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" +#: ../../Zotlabs/Module/Settings.php:1324 +msgid "Unseen grid activity" +msgstr "Nuove attività nella rete" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Elimina questo menù" +#: ../../Zotlabs/Module/Settings.php:1325 +msgid "Unseen channel activity" +msgstr "Novità nei canali" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" +#: ../../Zotlabs/Module/Settings.php:1326 +msgid "Unseen private messages" +msgstr "Nuovi messaggi privati" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifica questo menù" +#: ../../Zotlabs/Module/Settings.php:1326 +#: ../../Zotlabs/Module/Settings.php:1331 +#: ../../Zotlabs/Module/Settings.php:1332 +#: ../../Zotlabs/Module/Settings.php:1333 +msgid "Recommended" +msgstr "Consigliato" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." +#: ../../Zotlabs/Module/Settings.php:1327 +msgid "Upcoming events" +msgstr "Prossimi eventi" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menù non trovato." +#: ../../Zotlabs/Module/Settings.php:1328 +msgid "Events today" +msgstr "Eventi di oggi" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifica menù" +#: ../../Zotlabs/Module/Settings.php:1329 +msgid "Upcoming birthdays" +msgstr "Prossimi compleanni" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" +#: ../../Zotlabs/Module/Settings.php:1329 +msgid "Not available in all themes" +msgstr "Non disponibile in tutti i temi" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nome del menù" +#: ../../Zotlabs/Module/Settings.php:1330 +msgid "System (personal) notifications" +msgstr "Notifiche personali dal sistema" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" +#: ../../Zotlabs/Module/Settings.php:1331 +msgid "System info messages" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titolo del menù" +#: ../../Zotlabs/Module/Settings.php:1332 +msgid "System critical alerts" +msgstr "Avvisi critici di sistema" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" +#: ../../Zotlabs/Module/Settings.php:1333 +msgid "New connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" +#: ../../Zotlabs/Module/Settings.php:1334 +msgid "System Registrations" +msgstr "Registrazioni" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Non trovato." +#: ../../Zotlabs/Module/Settings.php:1335 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installata" +#: ../../Zotlabs/Module/Settings.php:1337 +msgid "Notify me of events this many days in advance" +msgstr "Giorni di anticipo per notificare gli eventi" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "L'app contiene errori" +#: ../../Zotlabs/Module/Settings.php:1337 +msgid "Must be greater than 0" +msgstr "Maggiore di 0" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Inserisci il codice" +#: ../../Zotlabs/Module/Settings.php:1339 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifica app" +#: ../../Zotlabs/Module/Settings.php:1340 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambia il funzionamento di questo account per necessità particolari" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crea una app" +#: ../../Zotlabs/Module/Settings.php:1342 +msgid "Miscellaneous Settings" +msgstr "Impostazioni varie" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nome app" +#: ../../Zotlabs/Module/Settings.php:1343 +msgid "Default photo upload folder" +msgstr "Cartella predefinita per le foto caricate" -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obbligatorio" +#: ../../Zotlabs/Module/Settings.php:1343 +#: ../../Zotlabs/Module/Settings.php:1344 +msgid "%Y - current year, %m - current month" +msgstr "%Y - anno corrente, %m - mese corrente" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" +#: ../../Zotlabs/Module/Settings.php:1344 +msgid "Default file upload folder" +msgstr "Cartella predefinita per i file caricati" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descrizione" +#: ../../Zotlabs/Module/Settings.php:1346 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personale da mostrare sulle pagine del tuo canale" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL icona" +#: ../../Zotlabs/Module/Settings.php:1347 ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" +#: ../../Zotlabs/Module/Settings.php:1348 +msgid "Remove this channel." +msgstr "Elimina questo canale." -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../Zotlabs/Module/Settings.php:1349 +msgid "Firefox Share $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "ID versione" +#: ../../Zotlabs/Module/Settings.php:1350 +msgid "Start calendar week on monday" +msgstr "La settimana inizia il lunedì" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prezzo app" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/conversation.php:1667 ../../include/nav.php:95 +msgid "Photos" +msgstr "Foto" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Elemento non valido." -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Ricerca nella guida" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Guida:" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:163 -msgid "Help" -msgstr "Guida" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "Guida di $Projectname" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- scegli -" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento non disponibile." +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2055 +#: ../../Zotlabs/Module/Admin.php:2075 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Salva" -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout aggiornato." +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 +#: ../../Zotlabs/Module/Admin.php:1583 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3417 +msgid "Item not found." +msgstr "Elemento non trovato." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout non trovato." +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# account" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nome del modulo:" +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# account bloccati" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Guida al layout" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "# account scaduti" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Condividi i contenuti su $Projectname da Firefox" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "# account in scadenza" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# canali" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# primari" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# cloni" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "Coda messaggi in uscita" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "Il tuo software necessita di un aggiornamento" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:496 +#: ../../Zotlabs/Module/Admin.php:722 ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1350 ../../Zotlabs/Module/Admin.php:1441 +#: ../../Zotlabs/Module/Admin.php:1634 ../../Zotlabs/Module/Admin.php:1668 +#: ../../Zotlabs/Module/Admin.php:1753 +msgid "Administration" +msgstr "Amministrazione" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "File non trovato." +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Riepilogo" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Account creati" -#: ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 -#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 -msgid "Permissions" -msgstr "Permessi" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:726 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Canali creati" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:727 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Versione" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un post" +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "Versione del repository (master)" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "Versione del repository (dev)" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" -msgstr "Condividi questo file" +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." +msgstr "Impostazioni del sito salvate correttamente." -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2896 +msgid "Default" +msgstr "Predefinito" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" -msgstr "Notifica ai contatti che hai caricato questo file" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" +msgstr "sperimentale" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "Il nome è obbligatorio" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" +msgstr "non supportato" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "Key e Secret sono richiesti" +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" -#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:708 -#: ../../Zotlabs/Module/Admin.php:1449 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Aggiorna" +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Questo canale è limitato a %d token" +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Nome e password sono obbligatori." +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" +msgstr "È un servizio gratuito" -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." -msgstr "Token salvato." +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" -#: ../../Zotlabs/Module/Settings.php:312 -msgid "Not valid email." -msgstr "Email non valida." +#: ../../Zotlabs/Module/Admin.php:497 ../../include/widgets.php:1523 +msgid "Site" +msgstr "Sito" -#: ../../Zotlabs/Module/Settings.php:315 -msgid "Protected email address. Cannot change to that email." -msgstr "È un indirizzo email riservato. Non puoi sceglierlo." +#: ../../Zotlabs/Module/Admin.php:500 +msgid "File upload" +msgstr "Caricamento file" -#: ../../Zotlabs/Module/Settings.php:324 -msgid "System failure storing new email. Please try again." -msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Policies" +msgstr "Politiche" -#: ../../Zotlabs/Module/Settings.php:341 -msgid "Password verification failed." -msgstr "Verifica della password fallita." +#: ../../Zotlabs/Module/Admin.php:502 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avanzate" -#: ../../Zotlabs/Module/Settings.php:348 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." +#: ../../Zotlabs/Module/Admin.php:506 +msgid "Site name" +msgstr "Nome del sito" -#: ../../Zotlabs/Module/Settings.php:352 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Banner/Logo" +msgstr "Banner o logo" -#: ../../Zotlabs/Module/Settings.php:366 -msgid "Password changed." -msgstr "Password cambiata." +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Administrator Information" +msgstr "Informazioni sull'amministratore" -#: ../../Zotlabs/Module/Settings.php:368 -msgid "Password update failed. Please try again." -msgstr "Modifica password fallita. Prova ancora." +#: ../../Zotlabs/Module/Admin.php:511 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" -#: ../../Zotlabs/Module/Settings.php:429 ../../Zotlabs/Module/Settings.php:433 -#: ../../Zotlabs/Module/Settings.php:434 ../../Zotlabs/Module/Settings.php:437 -#: ../../Zotlabs/Module/Settings.php:448 ../../Zotlabs/Module/Connedit.php:627 -#: ../../include/widgets.php:495 ../../include/channel.php:402 -#: ../../include/channel.php:403 ../../include/channel.php:410 -#: ../../include/selectors.php:123 -msgid "Friends" -msgstr "Amici" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "System language" +msgstr "Lingua di sistema" -#: ../../Zotlabs/Module/Settings.php:617 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." +#: ../../Zotlabs/Module/Admin.php:513 +msgid "System theme" +msgstr "Tema di sistema" -#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 -#: ../../Zotlabs/Module/Settings.php:743 -msgid "Add application" -msgstr "Aggiungi una app" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" -#: ../../Zotlabs/Module/Settings.php:684 -msgid "Name of application" -msgstr "Nome dell'applicazione" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allow Feeds as Connections" +msgstr "Permetti di aggiungere i feed come contatti" -#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso delle risorse di sistema!)" -#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 -msgid "Redirect" -msgstr "Redirect" +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" -#: ../../Zotlabs/Module/Settings.php:687 +#: ../../Zotlabs/Module/Admin.php:517 msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." -#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 -msgid "Icon url" -msgstr "Url icona" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" -#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Facoltativo" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Invitation only" +msgstr "Solo con invito" -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Application not found." -msgstr "Applicazione non trovata." +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." -#: ../../Zotlabs/Module/Settings.php:742 -msgid "Connected Apps" -msgstr "App connesse" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" -#: ../../Zotlabs/Module/Settings.php:746 -msgid "Client key starts with" -msgstr "La client key inizia con" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Register text" +msgstr "Testo di registrazione" -#: ../../Zotlabs/Module/Settings.php:747 -msgid "No name" -msgstr "Nessun nome" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../Zotlabs/Module/Settings.php:748 -msgid "Remove authorization" -msgstr "Revoca l'autorizzazione" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" -#: ../../Zotlabs/Module/Settings.php:761 -msgid "No feature settings configured" -msgstr "Non hai componenti aggiuntivi da personalizzare" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." -#: ../../Zotlabs/Module/Settings.php:768 -msgid "Feature/Addon Settings" -msgstr "Impostazioni dei componenti aggiuntivi" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Preserve site homepage URL" +msgstr "Conserva l'URL della homepage" -#: ../../Zotlabs/Module/Settings.php:791 -msgid "Account Settings" -msgstr "Il tuo account" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." -#: ../../Zotlabs/Module/Settings.php:792 -msgid "Current Password" -msgstr "Password attuale" +#: ../../Zotlabs/Module/Admin.php:524 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" -#: ../../Zotlabs/Module/Settings.php:793 -msgid "Enter New Password" -msgstr "Nuova password" +#: ../../Zotlabs/Module/Admin.php:524 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." -#: ../../Zotlabs/Module/Settings.php:794 -msgid "Confirm New Password" -msgstr "Conferma la nuova password" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" -#: ../../Zotlabs/Module/Settings.php:794 -msgid "Leave password fields blank unless changing" -msgstr "Lascia vuoti questi campi per non cambiare la password" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." -#: ../../Zotlabs/Module/Settings.php:796 -#: ../../Zotlabs/Module/Settings.php:1236 -msgid "Email Address:" -msgstr "Indirizzo email:" +#: ../../Zotlabs/Module/Admin.php:526 +msgid "Verify Email Addresses" +msgstr "Verifica l'indirizzo email" -#: ../../Zotlabs/Module/Settings.php:797 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Elimina l'account" +#: ../../Zotlabs/Module/Admin.php:526 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." -#: ../../Zotlabs/Module/Settings.php:798 -msgid "Remove this account including all its channels" -msgstr "Elimina questo account e tutti i suoi canali" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" -#: ../../Zotlabs/Module/Settings.php:832 +#: ../../Zotlabs/Module/Admin.php:527 msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." -msgstr "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." + +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Import Public Streams" +msgstr "Suggerisci contenuti pubblici della rete Hubzilla" -#: ../../Zotlabs/Module/Settings.php:834 +#: ../../Zotlabs/Module/Admin.php:528 msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." -#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Token di accesso ospite" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Login on Homepage" +msgstr "Login sulla homepage" -#: ../../Zotlabs/Module/Settings.php:876 -msgid "Login Name" -msgstr "Nome utente" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." -#: ../../Zotlabs/Module/Settings.php:877 -msgid "Login Password" -msgstr "Password" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Enable context help" +msgstr "Abilita la guida contestuale" -#: ../../Zotlabs/Module/Settings.php:878 -msgid "Expires (yyyy-mm-dd)" -msgstr "Con scadenza (aaaa-mm-gg)" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" -#: ../../Zotlabs/Module/Settings.php:879 ../../Zotlabs/Module/Connedit.php:782 -msgid "Their Settings" -msgstr "Permessi concessi a te" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Directory Server URL" +msgstr "URL del directory server" -#: ../../Zotlabs/Module/Settings.php:880 ../../Zotlabs/Module/Connedit.php:783 -msgid "My Settings" -msgstr "Permessi che concedo" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Default directory server" +msgstr "Directory server predefinito" -#: ../../Zotlabs/Module/Settings.php:882 ../../Zotlabs/Module/Connedit.php:778 -msgid "inherited" -msgstr "derivato" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Proxy user" +msgstr "Utente proxy" -#: ../../Zotlabs/Module/Settings.php:884 ../../Zotlabs/Module/Connedit.php:785 -msgid "Individual Permissions" -msgstr "Permessi individuali" +#: ../../Zotlabs/Module/Admin.php:535 +msgid "Proxy URL" +msgstr "URL proxy" -#: ../../Zotlabs/Module/Settings.php:885 ../../Zotlabs/Module/Connedit.php:786 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." +#: ../../Zotlabs/Module/Admin.php:536 +msgid "Network timeout" +msgstr "Timeout rete" -#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 -#: ../../Zotlabs/Module/Admin.php:691 -msgid "Off" -msgstr "Off" +#: ../../Zotlabs/Module/Admin.php:536 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." -#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 -#: ../../Zotlabs/Module/Admin.php:691 -msgid "On" -msgstr "On" +#: ../../Zotlabs/Module/Admin.php:537 +msgid "Delivery interval" +msgstr "Recapito ritardato" -#: ../../Zotlabs/Module/Settings.php:910 -msgid "Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Admin.php:537 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." -#: ../../Zotlabs/Module/Settings.php:934 -msgid "Connector Settings" -msgstr "Impostazioni del connettore" +#: ../../Zotlabs/Module/Admin.php:538 +msgid "Deliveries per process" +msgstr "Tentativi di recapito per processo" -#: ../../Zotlabs/Module/Settings.php:981 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" +#: ../../Zotlabs/Module/Admin.php:538 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" -#: ../../Zotlabs/Module/Settings.php:984 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Sperimentale)" +#: ../../Zotlabs/Module/Admin.php:539 +msgid "Poll interval" +msgstr "Intervallo di polling" -#: ../../Zotlabs/Module/Settings.php:987 ../../Zotlabs/Module/Admin.php:414 -msgid "mobile" -msgstr "mobile" +#: ../../Zotlabs/Module/Admin.php:539 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." -#: ../../Zotlabs/Module/Settings.php:1035 -msgid "Display Settings" -msgstr "Aspetto" +#: ../../Zotlabs/Module/Admin.php:540 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" -#: ../../Zotlabs/Module/Settings.php:1036 -msgid "Theme Settings" -msgstr "Impostazioni del tema" +#: ../../Zotlabs/Module/Admin.php:540 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." -#: ../../Zotlabs/Module/Settings.php:1037 -msgid "Custom Theme Settings" -msgstr "Personalizzazione del tema" +#: ../../Zotlabs/Module/Admin.php:541 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" -#: ../../Zotlabs/Module/Settings.php:1038 -msgid "Content Settings" -msgstr "Impostazioni dei contenuti" +#: ../../Zotlabs/Module/Admin.php:541 +msgid "0 for no expiration of imported content" +msgstr "0 per non avere scadenza" -#: ../../Zotlabs/Module/Settings.php:1044 -msgid "Display Theme:" -msgstr "Tema per schermi medio grandi:" +#: ../../Zotlabs/Module/Admin.php:689 +#, php-format +msgid "Lock feature %s" +msgstr "Rendi non modificabile %s" -#: ../../Zotlabs/Module/Settings.php:1045 -msgid "Select scheme" -msgstr "Scegli uno schema" +#: ../../Zotlabs/Module/Admin.php:697 +msgid "Manage Additional Features" +msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Settings.php:1047 -msgid "Mobile Theme:" -msgstr "Tema per dispositivi mobili:" +#: ../../Zotlabs/Module/Admin.php:714 +msgid "No server found" +msgstr "Server non trovato" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Preload images before rendering the page" -msgstr "Carica le immagini prima del rendering della pagina" +#: ../../Zotlabs/Module/Admin.php:721 ../../Zotlabs/Module/Admin.php:1059 +msgid "ID" +msgstr "ID" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" +#: ../../Zotlabs/Module/Admin.php:721 +msgid "for channel" +msgstr "per il canale" -#: ../../Zotlabs/Module/Settings.php:1049 -msgid "Enable user zoom on mobile devices" -msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" +#: ../../Zotlabs/Module/Admin.php:721 +msgid "on server" +msgstr "sul server" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" +#: ../../Zotlabs/Module/Admin.php:721 ../../Zotlabs/Module/Connections.php:270 +msgid "Status" +msgstr "Stato" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" +#: ../../Zotlabs/Module/Admin.php:723 +msgid "Server" +msgstr "Server" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Maximum number of conversations to load at any time:" -msgstr "Massimo numero di conversazioni da mostrare ogni volta:" +#: ../../Zotlabs/Module/Admin.php:757 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Maximum of 100 items" -msgstr "Massimo 100" +#: ../../Zotlabs/Module/Admin.php:760 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" -#: ../../Zotlabs/Module/Settings.php:1052 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra le faccine (smilies) come immagini" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "" +"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/https://vimeo.com/
    https://soundcloud.com/
    " +msgstr "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    " -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Link post titles to source" -msgstr "Il link del titolo di un post porta al sito originale" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." -#: ../../Zotlabs/Module/Settings.php:1054 -msgid "System Page Layout Editor - (advanced)" -msgstr "Modifica i layout di sistema (avanzato)" +#: ../../Zotlabs/Module/Admin.php:767 ../../include/widgets.php:1526 +msgid "Security" +msgstr "Sicurezza" -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "Use blog/list mode on channel page" -msgstr "Mostra il canale nella modalità blog" +#: ../../Zotlabs/Module/Admin.php:769 +msgid "Block public" +msgstr "Blocca pagine pubbliche" -#: ../../Zotlabs/Module/Settings.php:1057 -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "(comments displayed separately)" -msgstr "(i commenti sono mostrati separatamente)" +#: ../../Zotlabs/Module/Admin.php:769 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Use blog/list mode on grid page" -msgstr "Mostra la tua rete in modalità blog" +#: ../../Zotlabs/Module/Admin.php:770 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Imposta il \"Transport Security\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Channel page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti del canale (in pixel)" +#: ../../Zotlabs/Module/Admin.php:771 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Imposta il \"Content Security Policy\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:1059 -#: ../../Zotlabs/Module/Settings.php:1060 -msgid "click to expand content exceeding this height" -msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" +#: ../../Zotlabs/Module/Admin.php:772 +msgid "Allowed email domains" +msgstr "Domini email consentiti" -#: ../../Zotlabs/Module/Settings.php:1060 -msgid "Grid page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti della tua rete (in pixel)" +#: ../../Zotlabs/Module/Admin.php:772 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Nobody except yourself" -msgstr "Nessuno tranne te" +#: ../../Zotlabs/Module/Admin.php:773 +msgid "Not allowed email domains" +msgstr "Domini email non consentiti" -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "Only those you specifically allow" -msgstr "Solo chi riceve il mio permesso" +#: ../../Zotlabs/Module/Admin.php:773 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "Approved connections" -msgstr "Contatti approvati" +#: ../../Zotlabs/Module/Admin.php:774 +msgid "Allow communications only from these sites" +msgstr "Permetti la comunicazione solo da questi siti" -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "Any connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Admin.php:774 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" -#: ../../Zotlabs/Module/Settings.php:1094 -msgid "Anybody on this website" -msgstr "Chiunque su questo hub" +#: ../../Zotlabs/Module/Admin.php:775 +msgid "Block communications from these sites" +msgstr "Blocca la comunicazione da questi siti" -#: ../../Zotlabs/Module/Settings.php:1095 -msgid "Anybody in this network" -msgstr "Chiunque su questa rete" +#: ../../Zotlabs/Module/Admin.php:776 +msgid "Allow communications only from these channels" +msgstr "Permetti la comunicazione solo da questi canali" -#: ../../Zotlabs/Module/Settings.php:1096 -msgid "Anybody authenticated" -msgstr "Chiunque abbia effettuato l'accesso" +#: ../../Zotlabs/Module/Admin.php:776 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" -#: ../../Zotlabs/Module/Settings.php:1097 -msgid "Anybody on the internet" -msgstr "Chiunque su internet" +#: ../../Zotlabs/Module/Admin.php:777 +msgid "Block communications from these channels" +msgstr "Blocca la comunicazione da questi canali" -#: ../../Zotlabs/Module/Settings.php:1171 -msgid "Publish your default profile in the network directory" -msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" +#: ../../Zotlabs/Module/Admin.php:778 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." -#: ../../Zotlabs/Module/Settings.php:1176 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Vuoi essere suggerito come amico ai nuovi membri?" +#: ../../Zotlabs/Module/Admin.php:779 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Your channel address is" -msgstr "L'indirizzo del tuo canale è" +#: ../../Zotlabs/Module/Admin.php:779 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." -#: ../../Zotlabs/Module/Settings.php:1227 -msgid "Channel Settings" -msgstr "Impostazioni del canale" - -#: ../../Zotlabs/Module/Settings.php:1234 -msgid "Basic Settings" -msgstr "Impostazioni di base" +#: ../../Zotlabs/Module/Admin.php:780 +msgid "Block embedded HTML from these domains" +msgstr "Blocca i contenuti incorporati HTML da questi domini" -#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 -msgid "Full Name:" -msgstr "Nome completo:" +#: ../../Zotlabs/Module/Admin.php:798 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." -#: ../../Zotlabs/Module/Settings.php:1237 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" +#: ../../Zotlabs/Module/Admin.php:808 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Default Post Location:" -msgstr "Località predefinita:" +#: ../../Zotlabs/Module/Admin.php:811 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Geographical location to display on your posts" -msgstr "La posizione geografica da mostrare sui tuoi post" +#: ../../Zotlabs/Module/Admin.php:815 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." -#: ../../Zotlabs/Module/Settings.php:1239 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" +#: ../../Zotlabs/Module/Admin.php:818 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "Adult Content" -msgstr "Contenuto per adulti" +#: ../../Zotlabs/Module/Admin.php:834 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" +#: ../../Zotlabs/Module/Admin.php:838 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." -#: ../../Zotlabs/Module/Settings.php:1243 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" +#: ../../Zotlabs/Module/Admin.php:840 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." -#: ../../Zotlabs/Module/Settings.php:1246 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" +#: ../../Zotlabs/Module/Admin.php:841 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "Hide my online presence" -msgstr "Nascondi la mia presenza online" +#: ../../Zotlabs/Module/Admin.php:872 +msgid "Queue Statistics" +msgstr "Statistiche della coda" -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "Prevents displaying in your profile that you are online" -msgstr "Non mostrare sul tuo profilo quando sei online" +#: ../../Zotlabs/Module/Admin.php:873 +msgid "Total Entries" +msgstr "Totale" -#: ../../Zotlabs/Module/Settings.php:1250 -msgid "Simple Privacy Settings:" -msgstr "Impostazioni di privacy semplificate" +#: ../../Zotlabs/Module/Admin.php:874 +msgid "Priority" +msgstr "Priorità" -#: ../../Zotlabs/Module/Settings.php:1251 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" +#: ../../Zotlabs/Module/Admin.php:875 +msgid "Destination URL" +msgstr "URL di destinazione" -#: ../../Zotlabs/Module/Settings.php:1252 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" +#: ../../Zotlabs/Module/Admin.php:876 +msgid "Mark hub permanently offline" +msgstr "Questo hub è definitivamente offline" -#: ../../Zotlabs/Module/Settings.php:1253 -msgid "Private - default private, never open or public" -msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" +#: ../../Zotlabs/Module/Admin.php:877 +msgid "Empty queue for this hub" +msgstr "Svuota la coda per questo hub" -#: ../../Zotlabs/Module/Settings.php:1254 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" +#: ../../Zotlabs/Module/Admin.php:878 +msgid "Last known contact" +msgstr "Ultimo scambio dati" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "Allow others to tag your posts" -msgstr "Permetti ad altri di taggare i tuoi post" +#: ../../Zotlabs/Module/Admin.php:914 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "Modificato il blocco su %s account" +msgstr[1] "Modificato il blocco verso %s" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" +#: ../../Zotlabs/Module/Admin.php:921 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account eliminato" +msgstr[1] "%s account eliminati" -#: ../../Zotlabs/Module/Settings.php:1258 -msgid "Advanced Privacy Settings" -msgstr "Impostazioni di privacy avanzate" +#: ../../Zotlabs/Module/Admin.php:957 +msgid "Account not found" +msgstr "Account non trovato" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "Expire other channel content after this many days" -msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" +#: ../../Zotlabs/Module/Admin.php:968 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' eliminato" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "0 or blank to use the website limit." -msgstr "0 o vuoto per usare i valori predefiniti." +#: ../../Zotlabs/Module/Admin.php:976 +#, php-format +msgid "Account '%s' blocked" +msgstr "Aggiunto un blocco verso '%s'" -#: ../../Zotlabs/Module/Settings.php:1260 +#: ../../Zotlabs/Module/Admin.php:984 #, php-format -msgid "This website expires after %d days." -msgstr "Per questo sito la scadenza è %d giorni. " +msgid "Account '%s' unblocked" +msgstr "Rimosso il blocco verso '%s'" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "This website does not expire imported content." -msgstr "I contenuti di questo sito non hanno scadenza." +#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 +#: ../../include/widgets.php:1524 +msgid "Accounts" +msgstr "Account" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." +#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 +msgid "select all" +msgstr "seleziona tutti" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo giornaliero di richieste di amicizia:" +#: ../../Zotlabs/Module/Admin.php:1047 +msgid "Registrations waiting for confirm" +msgstr "Registrazioni in attesa di conferma" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "May reduce spam activity" -msgstr "Serve a ridurre lo spam" +#: ../../Zotlabs/Module/Admin.php:1048 +msgid "Request date" +msgstr "Data richiesta" -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "Default Post and Publish Permissions" -msgstr "Permessi predefiniti per postare e pubblicare" +#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 +#: ../../include/network.php:2208 +msgid "Email" +msgstr "Email" -#: ../../Zotlabs/Module/Settings.php:1263 ../../Zotlabs/Module/Mitem.php:154 -#: ../../Zotlabs/Module/Mitem.php:231 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "Use my default audience setting for the type of object published" -msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" +#: ../../Zotlabs/Module/Admin.php:1050 +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Approve" +msgstr "Approva" -#: ../../Zotlabs/Module/Settings.php:1271 -msgid "Channel permissions category:" -msgstr "Categorie di permessi dei canali:" +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Deny" +msgstr "Nega" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" +#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Blocca" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Useful to reduce spamming" -msgstr "Serve e ridurre lo spam" +#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Sblocca" -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Notification Settings" -msgstr "Impostazioni di notifica" +#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 +msgid "All Channels" +msgstr "Tutti i canali" -#: ../../Zotlabs/Module/Settings.php:1281 -msgid "By default post a status message when:" -msgstr "Pubblica un messaggio di stato quando:" +#: ../../Zotlabs/Module/Admin.php:1062 +msgid "Register date" +msgstr "Data registrazione" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "accepting a friend request" -msgstr "accetto una nuova amicizia" +#: ../../Zotlabs/Module/Admin.php:1063 +msgid "Last login" +msgstr "Ultimo accesso" -#: ../../Zotlabs/Module/Settings.php:1283 -msgid "joining a forum/community" -msgstr "entro a far parte di un forum" +#: ../../Zotlabs/Module/Admin.php:1064 +msgid "Expires" +msgstr "Con scadenza" -#: ../../Zotlabs/Module/Settings.php:1284 -msgid "making an interesting profile change" -msgstr "faccio un cambiamento interessante al mio profilo" +#: ../../Zotlabs/Module/Admin.php:1065 +msgid "Service Class" +msgstr "Classe dell'account" -#: ../../Zotlabs/Module/Settings.php:1285 -msgid "Send a notification email when:" -msgstr "Invia una email di notifica quando:" +#: ../../Zotlabs/Module/Admin.php:1067 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "You receive a connection request" -msgstr "Ricevi una richiesta di entrare in contatto" +#: ../../Zotlabs/Module/Admin.php:1068 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1287 -msgid "Your connections are confirmed" -msgstr "I tuoi contatti sono confermati" +#: ../../Zotlabs/Module/Admin.php:1104 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" -#: ../../Zotlabs/Module/Settings.php:1288 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla tua bacheca" +#: ../../Zotlabs/Module/Admin.php:1113 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s canale permette/non permette codice nei contenuti" +msgstr[1] "%s canali permettono/non permettono codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1289 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento dopo di te" +#: ../../Zotlabs/Module/Admin.php:1119 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" -#: ../../Zotlabs/Module/Settings.php:1290 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" +#: ../../Zotlabs/Module/Admin.php:1139 +msgid "Channel not found" +msgstr "Canale non trovato" -#: ../../Zotlabs/Module/Settings.php:1291 -msgid "You receive a friend suggestion" -msgstr "Ti viene suggerito un amico" +#: ../../Zotlabs/Module/Admin.php:1149 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" -#: ../../Zotlabs/Module/Settings.php:1292 -msgid "You are tagged in a post" -msgstr "Sei taggato in un post" +#: ../../Zotlabs/Module/Admin.php:1161 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" -#: ../../Zotlabs/Module/Settings.php:1293 -msgid "You are poked/prodded/etc. in a post" -msgstr "Ricevi un poke in un post" +#: ../../Zotlabs/Module/Admin.php:1161 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" -#: ../../Zotlabs/Module/Settings.php:1296 -msgid "Show visual notifications including:" -msgstr "Mostra queste notifiche a schermo:" +#: ../../Zotlabs/Module/Admin.php:1172 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Il canale '%s' permette codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1298 -msgid "Unseen grid activity" -msgstr "Nuove attività nella rete" +#: ../../Zotlabs/Module/Admin.php:1172 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1299 -msgid "Unseen channel activity" -msgstr "Novità nei canali" +#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1525 +msgid "Channels" +msgstr "Canali" -#: ../../Zotlabs/Module/Settings.php:1300 -msgid "Unseen private messages" -msgstr "Nuovi messaggi privati" +#: ../../Zotlabs/Module/Admin.php:1227 +msgid "Censor" +msgstr "Applica censura" -#: ../../Zotlabs/Module/Settings.php:1300 -#: ../../Zotlabs/Module/Settings.php:1305 -#: ../../Zotlabs/Module/Settings.php:1306 -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "Recommended" -msgstr "Consigliato" +#: ../../Zotlabs/Module/Admin.php:1228 +msgid "Uncensor" +msgstr "Rimuovi censura" -#: ../../Zotlabs/Module/Settings.php:1301 -msgid "Upcoming events" -msgstr "Prossimi eventi" +#: ../../Zotlabs/Module/Admin.php:1229 +msgid "Allow Code" +msgstr "Permetti codice" -#: ../../Zotlabs/Module/Settings.php:1302 -msgid "Events today" -msgstr "Eventi di oggi" +#: ../../Zotlabs/Module/Admin.php:1230 +msgid "Disallow Code" +msgstr "Non permettere codice" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Upcoming birthdays" -msgstr "Prossimi compleanni" +#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1646 +msgid "Channel" +msgstr "Canale" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Not available in all themes" -msgstr "Non disponibile in tutti i temi" +#: ../../Zotlabs/Module/Admin.php:1235 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Settings.php:1304 -msgid "System (personal) notifications" -msgstr "Notifiche personali dal sistema" +#: ../../Zotlabs/Module/Admin.php:1237 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Indirizzo" -#: ../../Zotlabs/Module/Settings.php:1305 -msgid "System info messages" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Admin.php:1239 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1306 -msgid "System critical alerts" -msgstr "Avvisi critici di sistema" +#: ../../Zotlabs/Module/Admin.php:1240 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "New connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Admin.php:1298 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." -#: ../../Zotlabs/Module/Settings.php:1308 -msgid "System Registrations" -msgstr "Registrazioni" +#: ../../Zotlabs/Module/Admin.php:1303 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." -#: ../../Zotlabs/Module/Settings.php:1309 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" +#: ../../Zotlabs/Module/Admin.php:1319 ../../Zotlabs/Module/Admin.php:1607 +msgid "Disable" +msgstr "Disattiva" -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Notify me of events this many days in advance" -msgstr "Giorni di anticipo per notificare gli eventi" +#: ../../Zotlabs/Module/Admin.php:1322 ../../Zotlabs/Module/Admin.php:1609 +msgid "Enable" +msgstr "Attiva" -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Must be greater than 0" -msgstr "Maggiore di 0" +#: ../../Zotlabs/Module/Admin.php:1351 ../../Zotlabs/Module/Admin.php:1442 +#: ../../include/widgets.php:1528 +msgid "Plugins" +msgstr "Plugin" -#: ../../Zotlabs/Module/Settings.php:1313 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate" +#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1636 +msgid "Toggle" +msgstr "Attiva/disattiva" -#: ../../Zotlabs/Module/Settings.php:1314 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambia il funzionamento di questo account per necessità particolari" +#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1637 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:680 +#: ../../include/nav.php:213 +msgid "Settings" +msgstr "Impostazioni" -#: ../../Zotlabs/Module/Settings.php:1317 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" +#: ../../Zotlabs/Module/Admin.php:1360 ../../Zotlabs/Module/Admin.php:1646 +msgid "Author: " +msgstr "Autore:" -#: ../../Zotlabs/Module/Settings.php:1318 -msgid "Miscellaneous Settings" -msgstr "Impostazioni varie" +#: ../../Zotlabs/Module/Admin.php:1361 ../../Zotlabs/Module/Admin.php:1647 +msgid "Maintainer: " +msgstr "Gestore:" -#: ../../Zotlabs/Module/Settings.php:1319 -msgid "Default photo upload folder" -msgstr "Cartella predefinita per le foto caricate" +#: ../../Zotlabs/Module/Admin.php:1362 +msgid "Minimum project version: " +msgstr "Minima versione hubzilla" -#: ../../Zotlabs/Module/Settings.php:1319 -#: ../../Zotlabs/Module/Settings.php:1320 -msgid "%Y - current year, %m - current month" -msgstr "%Y - anno corrente, %m - mese corrente" +#: ../../Zotlabs/Module/Admin.php:1363 +msgid "Maximum project version: " +msgstr "Massima versione hubzilla" -#: ../../Zotlabs/Module/Settings.php:1320 -msgid "Default file upload folder" -msgstr "Cartella predefinita per i file caricati" +#: ../../Zotlabs/Module/Admin.php:1364 +msgid "Minimum PHP version: " +msgstr "Minima versione PHP:" -#: ../../Zotlabs/Module/Settings.php:1322 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personale da mostrare sulle pagine del tuo canale" +#: ../../Zotlabs/Module/Admin.php:1365 +msgid "Compatible Server Roles: " +msgstr "Ruoli compatibili per questo server" -#: ../../Zotlabs/Module/Settings.php:1323 ../../Zotlabs/Module/Removeme.php:64 -msgid "Remove Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Admin.php:1366 +msgid "Requires: " +msgstr "Necessita di:" -#: ../../Zotlabs/Module/Settings.php:1324 -msgid "Remove this channel." -msgstr "Elimina questo canale." +#: ../../Zotlabs/Module/Admin.php:1367 ../../Zotlabs/Module/Admin.php:1447 +msgid "Disabled - version incompatibility" +msgstr "Disabilitato - incompatibilità di versione" -#: ../../Zotlabs/Module/Settings.php:1325 -msgid "Firefox Share $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Admin.php:1416 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Inserisci lo URL del repository git dei plugin." -#: ../../Zotlabs/Module/Settings.php:1326 -msgid "Start calendar week on monday" -msgstr "La settimana inizia il lunedì" +#: ../../Zotlabs/Module/Admin.php:1417 +msgid "Plugin repo git URL" +msgstr "URL git del repository del plugin" -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" -msgstr "rete" +#: ../../Zotlabs/Module/Admin.php:1418 +msgid "Custom repo name" +msgstr "Nome repository personalizzato" -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Admin.php:1418 +msgid "(optional)" +msgstr "(facoltativo)" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppo di canali creato." +#: ../../Zotlabs/Module/Admin.php:1419 +msgid "Download Plugin Repo" +msgstr "Scarica il repository del plugin" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Impossibile creare il gruppo di canali." +#: ../../Zotlabs/Module/Admin.php:1426 +msgid "Install new repo" +msgstr "Installa un nuovo repository" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3931 -msgid "Privacy group not found." -msgstr "Gruppo di canali non trovato." +#: ../../Zotlabs/Module/Admin.php:1427 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" +msgstr "Installa" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Gruppo di canali aggiornato." +#: ../../Zotlabs/Module/Admin.php:1449 +msgid "Manage Repos" +msgstr "Gestisci i repository" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Crea un gruppo di canali." +#: ../../Zotlabs/Module/Admin.php:1450 +msgid "Installed Plugin Repositories" +msgstr "Repository per i plugin installati" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Nome del gruppo di canali:" +#: ../../Zotlabs/Module/Admin.php:1451 +msgid "Install a New Plugin Repository" +msgstr "Installa un nuovo repository per i plugin" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "I membri potranno vedere gli altri canali del gruppo" +#: ../../Zotlabs/Module/Admin.php:1458 +msgid "Switch branch" +msgstr "Cambia branch" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Gruppo di canali rimosso." +#: ../../Zotlabs/Module/Admin.php:1459 ../../Zotlabs/Module/Photos.php:1000 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Rimuovi" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Impossibile rimuovere il gruppo di canali." +#: ../../Zotlabs/Module/Admin.php:1572 +msgid "No themes found." +msgstr "Nessun tema trovato." -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Editor dei gruppi di canali" +#: ../../Zotlabs/Module/Admin.php:1628 +msgid "Screenshot" +msgstr "Istantanea dello schermo" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Membri" +#: ../../Zotlabs/Module/Admin.php:1635 ../../Zotlabs/Module/Admin.php:1669 +#: ../../include/widgets.php:1529 +msgid "Themes" +msgstr "Temi" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" +#: ../../Zotlabs/Module/Admin.php:1674 +msgid "[Experimental]" +msgstr "[Sperimentale]" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." +#: ../../Zotlabs/Module/Admin.php:1675 +msgid "[Unsupported]" +msgstr "[Non supportato]" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." +#: ../../Zotlabs/Module/Admin.php:1699 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Foto del profilo" +#: ../../Zotlabs/Module/Admin.php:1754 ../../include/widgets.php:1550 +#: ../../include/widgets.php:1560 +msgid "Logs" +msgstr "Log" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album non trovato." +#: ../../Zotlabs/Module/Admin.php:1756 +msgid "Clear" +msgstr "Pulisci" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Elimina album" +#: ../../Zotlabs/Module/Admin.php:1762 +msgid "Debugging" +msgstr "Debugging" -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " +#: ../../Zotlabs/Module/Admin.php:1763 +msgid "Log file" +msgstr "File di log" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "Elimina foto" +#: ../../Zotlabs/Module/Admin.php:1763 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Relativo alla directory base del server web. Deve essere scrivibile." -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../Zotlabs/Module/Admin.php:1764 +msgid "Log level" +msgstr "Livello di log" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." +#: ../../Zotlabs/Module/Admin.php:2050 +msgid "New Profile Field" +msgstr "Nuovo campo del profilo" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." +#: ../../Zotlabs/Module/Admin.php:2051 ../../Zotlabs/Module/Admin.php:2071 +msgid "Field nickname" +msgstr "Nome breve del campo" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." +#: ../../Zotlabs/Module/Admin.php:2051 ../../Zotlabs/Module/Admin.php:2071 +msgid "System name of field" +msgstr "Nome di sistema del campo" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../Zotlabs/Module/Admin.php:2052 ../../Zotlabs/Module/Admin.php:2072 +msgid "Input type" +msgstr "Tipo di dati" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Admin.php:2073 +msgid "Field Name" +msgstr "Nome del campo" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Admin.php:2073 +msgid "Label on profile pages" +msgstr "Etichetta da mostrare sulla pagina del profilo" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" +#: ../../Zotlabs/Module/Admin.php:2054 ../../Zotlabs/Module/Admin.php:2074 +msgid "Help text" +msgstr "Testo di aiuto" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Titolo (facoltativo):" +#: ../../Zotlabs/Module/Admin.php:2054 ../../Zotlabs/Module/Admin.php:2074 +msgid "Additional info (optional)" +msgstr "Informazioni aggiuntive (facoltative)" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descrizione (facoltativa):" +#: ../../Zotlabs/Module/Admin.php:2064 +msgid "Field definition not found" +msgstr "Impossibile trovare la definizione del campo" -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" +#: ../../Zotlabs/Module/Admin.php:2070 +msgid "Edit Profile Field" +msgstr "Modifica campo del profilo" -#: ../../Zotlabs/Module/Photos.php:745 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../Zotlabs/Module/Admin.php:2128 ../../include/widgets.php:1531 +msgid "Profile Fields" +msgstr "Campi del profilo" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Newest First" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Admin.php:2129 +msgid "Basic Profile Fields" +msgstr "Campi base del profilo" -#: ../../Zotlabs/Module/Photos.php:770 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Admin.php:2130 +msgid "Advanced Profile Fields" +msgstr "Campi avanzati del profilo" -#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 -msgid "View Photo" -msgstr "Guarda la foto" +#: ../../Zotlabs/Module/Admin.php:2130 +msgid "(In addition to basic fields)" +msgstr "(In aggiunta ai campi di base)" -#: ../../Zotlabs/Module/Photos.php:825 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../Zotlabs/Module/Admin.php:2132 +msgid "All available fields" +msgstr "Tutti i campi disponibili" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." +#: ../../Zotlabs/Module/Admin.php:2133 +msgid "Custom Fields" +msgstr "Campi personalizzati" -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../Zotlabs/Module/Admin.php:2137 +msgid "Create Custom Field" +msgstr "Aggiungi campo personalizzato" -#: ../../Zotlabs/Module/Photos.php:932 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloccati" -#: ../../Zotlabs/Module/Photos.php:933 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignorati" -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Nascosti" -#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 -msgid "Previous" -msgstr "Precendente" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archiviati" -#: ../../Zotlabs/Module/Photos.php:955 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1568 +msgid "New" +msgstr "Novità" -#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1451 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Rimuovi" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 +msgid "All" +msgstr "Tutti" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Edit photo" -msgstr "Modifica la foto" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" -msgstr "Didascalia" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "In attesa di conferma" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Modifica il contatto" -#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../include/conversation.php:1227 -msgid "Share" -msgstr "Condividi" - -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Attendere" - -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:708 -msgid "This is you" -msgstr "Questo sei tu" - -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commento" - -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:224 -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:720 -#: ../../include/conversation.php:1200 ../../include/page_widgets.php:43 -msgid "Preview" -msgstr "Anteprima" - -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" - -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Elimina il contatto" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Indirizzo del canale" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Network" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "In contatto" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Ignora il contatto" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Ignora" -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1756 -msgid "View all" -msgstr "Vedi tutto" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1780 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:855 ../../include/nav.php:191 +msgid "Connections" +msgstr "Contatti" -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:174 +#: ../../include/text.php:925 ../../include/text.php:937 +#: ../../include/widgets.php:315 ../../include/nav.php:170 +msgid "Search" +msgstr "Cerca" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "Gestione foto" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Cerca tra i contatti" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" -msgstr "In questa foto:" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Ricerca tra i contatti" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" -msgstr "Mappa" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Cerca" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Copertine del canale" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 -#: ../../include/acl_selectors.php:181 -msgid "Close" -msgstr "Chiudi" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "Il ridimensionamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" -msgstr "Guarda l'album" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "Il caricamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pagina web" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "block" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 +msgid "female" +msgstr "femmina" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 +msgid "male" +msgstr "maschio" -#: ../../Zotlabs/Module/Impel.php:191 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 #, php-format -msgid "%s element installed" -msgstr "%s elemento installato" +msgid "%1$s updated his %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Impel.php:194 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 #, php-format -msgid "%s element installation failed" -msgstr "Elementi con installazione fallita: %s" - -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." +msgid "%1$s updated their %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio hub" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 +msgid "cover photo" +msgstr "Copertina del canale" -#: ../../Zotlabs/Module/Import_items.php:72 -#: ../../Zotlabs/Module/Import.php:101 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto non disponibile." -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:123 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Carica un file:" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importazione completata" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importa i contenuti" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Carica una copertina" -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "salta questo passaggio" -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:549 -msgid "File to Upload" -msgstr "File da caricare" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Ritaglia immagine" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Unisciti a noi su $Projectname" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Modifica terminata" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Messaggio non valido" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "nessun risultato" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "sincronizzazione del canale effettuata" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "in coda" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Spedisci inviti" +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "inviato" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "accettato per la spedizione" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Il tuo messaggio:" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "aggiornato" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Entra nella mia comunità su $Projectname." +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "aggiornamento ignorato" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Dovrai fornire questo codice invito:" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permessi non sufficienti" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "Destinatario non trovato" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "messaggio richiamato dal mittente" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oppure visita" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "ricevuto messaggio duplicato" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "messaggio recapitato" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Indirizzo non trovato." +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Rapporto di consegna - %1$s" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "La ricerca dell'indirizzo è fallita." +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opzioni" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Reinvia" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronizzazione tra hub" +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Nessun indirizzo trovato." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Modifica gli indirizzi del canale" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Sesso:" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1237 -#: ../../Zotlabs/Module/Profiles.php:470 -msgid "Address" -msgstr "Indirizzo" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Stato:" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage:" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizza ora" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Età:" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/bb2diaspora.php:507 ../../include/event.php:52 +#: ../../include/event.php:84 +msgid "Location:" +msgstr "Luogo:" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Città dove vivo:" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub non trovato." +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Informazioni:" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Mi piace/Non mi piace" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/connections.php:78 +#: ../../include/channel.php:1034 ../../include/conversation.php:957 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "Aggiungi" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Questa funzionalità è riservata agli iscritti." +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Forum pubblico:" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Parole chiave:" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Richiesta non valida." +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Non fornire suggerimenti" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "il canale" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Contatti in comune:" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "Oggetto" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Elenchi pubblici globali" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Elenco canali su questo hub" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Il comando precedente è stato annullato." +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Ricerca:" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "la foto" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1951 ../../include/conversation.php:148 -msgid "status" -msgstr "il messaggio di stato" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "pagina successiva" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 -#: ../../include/conversation.php:123 ../../include/event.php:958 -msgid "event" -msgstr "l'evento" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "pagina precedente" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Opzioni di ordinamento" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetico" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s è d'accordo" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non è d'accordo" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non si esprime" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s partecipa" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non partecipa" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Questo non è un directory server" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s forse partecipa" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Questo directory server necessita di un token di autenticazione" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." -msgstr "Comando completato." +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." -msgstr "Grazie." +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Nome del block" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Create New" -msgstr "Crea nuova" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifica il block" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:210 -msgid "Channel Manager" -msgstr "Gestione canali" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "Nome layout" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canale attuale" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "Descrizione del layout (facoltativa)" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Seleziona l'altro canale a cui vuoi passare." +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "Modifica il layout" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canale predefinito" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Rendi predefinito" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canale delegato" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "Nome link" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "Azione del link o del sottomenu" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 +msgid "Menus" +msgstr "Menù" -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Elimina" -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:249 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creato" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "Ordine dell'elenco" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:250 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Modificato" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" -msgstr "Salva e termina" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "Salva e continua" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "Menu:" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifica questo menù" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "Destinazione link" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "Modifica il menù" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menù non trovato." -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "Modifica l'elemento" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifica menù" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "Elimina l'elemento" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "Nuovo elemento" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nome del menù" -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titolo del menù" -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installata" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "L'app contiene errori" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Inserisci il codice" -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "Testo del link" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifica app" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea una app" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# account" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nome app" -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# account bloccati" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Obbligatorio" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# account scaduti" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# account in scadenza" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descrizione" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# canali" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL icona" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primari" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# cloni" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Coda messaggi in uscita" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "ID versione" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prezzo app" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:500 -#: ../../Zotlabs/Module/Admin.php:724 ../../Zotlabs/Module/Admin.php:768 -#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 -#: ../../Zotlabs/Module/Admin.php:1342 ../../Zotlabs/Module/Admin.php:1433 -#: ../../Zotlabs/Module/Admin.php:1626 ../../Zotlabs/Module/Admin.php:1660 -#: ../../Zotlabs/Module/Admin.php:1745 -msgid "Administration" -msgstr "Amministrazione" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Riepilogo" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" +msgstr "Modifica post" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Account creati" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento non disponibile." -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:728 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Layout aggiornato." -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Canali creati" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:729 -msgid "Active plugins" -msgstr "Plugin attivi" +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versione" +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." +msgstr "Layout non trovato." -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versione del repository (master)" +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" +msgstr "Nome del modulo:" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versione del repository (dev)" +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" +msgstr "Guida al layout" -#: ../../Zotlabs/Module/Admin.php:377 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Condividi i contenuti su $Projectname da Firefox" -#: ../../Zotlabs/Module/Admin.php:404 ../../include/text.php:2888 -msgid "Default" -msgstr "Predefinito" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Admin.php:416 -msgid "experimental" -msgstr "sperimentale" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Admin.php:418 -msgid "unsupported" -msgstr "non supportato" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" -#: ../../Zotlabs/Module/Admin.php:464 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." -#: ../../Zotlabs/Module/Admin.php:470 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../Zotlabs/Module/Admin.php:471 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Permesso negato." -#: ../../Zotlabs/Module/Admin.php:472 -msgid "My site has free access only" -msgstr "È un servizio gratuito" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "File non trovato." -#: ../../Zotlabs/Module/Admin.php:473 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" -#: ../../Zotlabs/Module/Admin.php:501 ../../include/widgets.php:1490 -msgid "Site" -msgstr "Sito" +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permessi" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "File upload" -msgstr "Caricamento file" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Policies" -msgstr "Politiche" +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" -#: ../../Zotlabs/Module/Admin.php:506 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzate" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Site name" -msgstr "Nome del sito" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/incolla questo codice per far comparire il file in un post" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Banner/Logo" -msgstr "Banner o logo" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Condividi questo file" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "System language" -msgstr "Lingua di sistema" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Notifica ai contatti che hai caricato questo file" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "System theme" -msgstr "Tema di sistema" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "rete" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppo di canali creato." -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Impossibile creare il gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3950 +msgid "Privacy group not found." +msgstr "Gruppo di canali non trovato." -#: ../../Zotlabs/Module/Admin.php:520 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Gruppo di canali aggiornato." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Crea un gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Nome del gruppo di canali:" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "I membri potranno vedere gli altri canali del gruppo" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Invitation only" -msgstr "Solo con invito" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Gruppo di canali rimosso." -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Impossibile rimuovere il gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:524 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Editor dei gruppi di canali" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Register text" -msgstr "Testo di registrazione" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Membri" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" -#: ../../Zotlabs/Module/Admin.php:526 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Admin.php:526 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Preserve site homepage URL" -msgstr "Conserva l'URL della homepage" +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Foto del profilo" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Elimina album" -#: ../../Zotlabs/Module/Admin.php:528 +#: ../../Zotlabs/Module/Photos.php:151 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." +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" +msgstr "Titolo (facoltativo):" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" +msgstr "Descrizione (facoltativa):" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Import Public Streams" -msgstr "Suggerisci contenuti pubblici della rete Hubzilla" +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." +#: ../../Zotlabs/Module/Photos.php:745 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../Zotlabs/Module/Admin.php:535 -msgid "Login on Homepage" -msgstr "Login sulla homepage" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Newest First" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Admin.php:535 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." +#: ../../Zotlabs/Module/Photos.php:770 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Admin.php:536 -msgid "Enable context help" -msgstr "Abilita la guida contestuale" +#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1640 +msgid "View Photo" +msgstr "Guarda la foto" -#: ../../Zotlabs/Module/Admin.php:536 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" +#: ../../Zotlabs/Module/Photos.php:825 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1657 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "Directory Server URL" -msgstr "URL del directory server" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." -#: ../../Zotlabs/Module/Admin.php:538 -msgid "Default directory server" -msgstr "Directory server predefinito" +#: ../../Zotlabs/Module/Photos.php:874 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../Zotlabs/Module/Admin.php:540 -msgid "Proxy user" -msgstr "Utente proxy" +#: ../../Zotlabs/Module/Photos.php:932 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../Zotlabs/Module/Admin.php:541 -msgid "Proxy URL" -msgstr "URL proxy" +#: ../../Zotlabs/Module/Photos.php:933 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" -#: ../../Zotlabs/Module/Admin.php:542 -msgid "Network timeout" -msgstr "Timeout rete" +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Private Photo" +msgstr "Foto privata" -#: ../../Zotlabs/Module/Admin.php:542 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." +#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 +msgid "Previous" +msgstr "Precendente" -#: ../../Zotlabs/Module/Admin.php:543 -msgid "Delivery interval" -msgstr "Recapito ritardato" +#: ../../Zotlabs/Module/Photos.php:955 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" -#: ../../Zotlabs/Module/Admin.php:543 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Edit photo" +msgstr "Modifica la foto" -#: ../../Zotlabs/Module/Admin.php:544 -msgid "Deliveries per process" -msgstr "Tentativi di recapito per processo" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" -#: ../../Zotlabs/Module/Admin.php:544 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" -#: ../../Zotlabs/Module/Admin.php:545 -msgid "Poll interval" -msgstr "Intervallo di polling" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" -#: ../../Zotlabs/Module/Admin.php:545 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" -#: ../../Zotlabs/Module/Admin.php:546 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "Didascalia" -#: ../../Zotlabs/Module/Admin.php:546 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../Zotlabs/Module/Admin.php:547 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../Zotlabs/Module/Admin.php:547 -msgid "0 for no expiration of imported content" -msgstr "0 per non avere scadenza" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" -#: ../../Zotlabs/Module/Admin.php:691 -#, php-format -msgid "Lock feature %s" -msgstr "Rendi non modificabile %s" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" -#: ../../Zotlabs/Module/Admin.php:699 -msgid "Manage Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" -#: ../../Zotlabs/Module/Admin.php:716 -msgid "No server found" -msgstr "Server non trovato" +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../include/conversation.php:1227 +msgid "Share" +msgstr "Condividi" -#: ../../Zotlabs/Module/Admin.php:723 ../../Zotlabs/Module/Admin.php:1059 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Attendere" -#: ../../Zotlabs/Module/Admin.php:723 -msgid "for channel" -msgstr "per il canale" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:709 +msgid "This is you" +msgstr "Questo sei tu" -#: ../../Zotlabs/Module/Admin.php:723 -msgid "on server" -msgstr "sul server" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" -#: ../../Zotlabs/Module/Admin.php:725 -msgid "Server" -msgstr "Server" +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:245 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:721 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 +msgid "Preview" +msgstr "Anteprima" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/https://vimeo.com/
    https://soundcloud.com/
    " -msgstr "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    " +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" -#: ../../Zotlabs/Module/Admin.php:764 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" + +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" -#: ../../Zotlabs/Module/Admin.php:769 ../../include/widgets.php:1493 -msgid "Security" -msgstr "Sicurezza" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" -#: ../../Zotlabs/Module/Admin.php:771 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" -#: ../../Zotlabs/Module/Admin.php:771 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" -#: ../../Zotlabs/Module/Admin.php:772 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Imposta il \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1758 +msgid "View all" +msgstr "Vedi tutto" -#: ../../Zotlabs/Module/Admin.php:773 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Imposta il \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1782 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" -#: ../../Zotlabs/Module/Admin.php:774 -msgid "Allow communications only from these sites" -msgstr "Permetti la comunicazione solo da questi siti" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1785 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" -#: ../../Zotlabs/Module/Admin.php:774 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "Gestione foto" -#: ../../Zotlabs/Module/Admin.php:775 -msgid "Block communications from these sites" -msgstr "Blocca la comunicazione da questi siti" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "In questa foto:" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "Allow communications only from these channels" -msgstr "Permetti la comunicazione solo da questi canali" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "Mappa" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Admin.php:777 -msgid "Block communications from these channels" -msgstr "Blocca la comunicazione da questi canali" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Admin.php:778 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "Chiudi" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "Guarda l'album" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../Zotlabs/Module/Admin.php:780 -msgid "Block embedded HTML from these domains" -msgstr "Blocca i contenuti incorporati HTML da questi domini" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pagina web" -#: ../../Zotlabs/Module/Admin.php:798 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "block" -#: ../../Zotlabs/Module/Admin.php:808 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" -#: ../../Zotlabs/Module/Admin.php:811 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Admin.php:815 +#: ../../Zotlabs/Module/Impel.php:191 #, 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." +msgid "%s element installed" +msgstr "%s elemento installato" -#: ../../Zotlabs/Module/Admin.php:818 +#: ../../Zotlabs/Module/Impel.php:194 #, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" - -#: ../../Zotlabs/Module/Admin.php:834 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: ../../Zotlabs/Module/Admin.php:838 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" -#: ../../Zotlabs/Module/Admin.php:840 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." +#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." -#: ../../Zotlabs/Module/Admin.php:841 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." +#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio hub" -#: ../../Zotlabs/Module/Admin.php:872 -msgid "Queue Statistics" -msgstr "Statistiche della coda" +#: ../../Zotlabs/Module/Import_items.php:72 +#: ../../Zotlabs/Module/Import.php:101 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." -#: ../../Zotlabs/Module/Admin.php:873 -msgid "Total Entries" -msgstr "Totale" +#: ../../Zotlabs/Module/Import_items.php:88 +#: ../../Zotlabs/Module/Import.php:123 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." -#: ../../Zotlabs/Module/Admin.php:874 -msgid "Priority" -msgstr "Priorità" +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Importazione completata" -#: ../../Zotlabs/Module/Admin.php:875 -msgid "Destination URL" -msgstr "URL di destinazione" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importa i contenuti" -#: ../../Zotlabs/Module/Admin.php:876 -msgid "Mark hub permanently offline" -msgstr "Questo hub è definitivamente offline" +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza." -#: ../../Zotlabs/Module/Admin.php:877 -msgid "Empty queue for this hub" -msgstr "Svuota la coda per questo hub" +#: ../../Zotlabs/Module/Import_items.php:121 +#: ../../Zotlabs/Module/Import.php:549 +msgid "File to Upload" +msgstr "File da caricare" -#: ../../Zotlabs/Module/Admin.php:878 -msgid "Last known contact" -msgstr "Ultimo scambio dati" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." -#: ../../Zotlabs/Module/Admin.php:914 +#: ../../Zotlabs/Module/Invite.php:53 #, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "Modificato il blocco su %s account" -msgstr[1] "Modificato il blocco verso %s" +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." -#: ../../Zotlabs/Module/Admin.php:921 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account eliminato" -msgstr[1] "%s account eliminati" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Unisciti a noi su $Projectname" -#: ../../Zotlabs/Module/Admin.php:957 -msgid "Account not found" -msgstr "Account non trovato" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." -#: ../../Zotlabs/Module/Admin.php:968 +#: ../../Zotlabs/Module/Invite.php:79 #, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' eliminato" +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." -#: ../../Zotlabs/Module/Admin.php:976 +#: ../../Zotlabs/Module/Invite.php:83 #, php-format -msgid "Account '%s' blocked" -msgstr "Aggiunto un blocco verso '%s'" +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." -#: ../../Zotlabs/Module/Admin.php:984 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Rimosso il blocco verso '%s'" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Spedisci inviti" -#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 -#: ../../include/widgets.php:1491 -msgid "Accounts" -msgstr "Account" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" -#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 -msgid "select all" -msgstr "seleziona tutti" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" +msgstr "Il tuo messaggio:" -#: ../../Zotlabs/Module/Admin.php:1047 -msgid "Registrations waiting for confirm" -msgstr "Registrazioni in attesa di conferma" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Entra nella mia comunità su $Projectname." -#: ../../Zotlabs/Module/Admin.php:1048 -msgid "Request date" -msgstr "Data richiesta" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Dovrai fornire questo codice invito:" -#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 -#: ../../include/network.php:2208 -msgid "Email" -msgstr "Email" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "No registrations." -msgstr "Nessuna registrazione." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Deny" -msgstr "Nega" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oppure visita" -#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 -msgid "Block" -msgstr "Blocca" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Clicca su [Aggiungi]" -#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 -msgid "Unblock" -msgstr "Sblocca" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Indirizzo non trovato." -#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 -msgid "All Channels" -msgstr "Tutti i canali" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "La ricerca dell'indirizzo è fallita." -#: ../../Zotlabs/Module/Admin.php:1062 -msgid "Register date" -msgstr "Data registrazione" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." -#: ../../Zotlabs/Module/Admin.php:1063 -msgid "Last login" -msgstr "Ultimo accesso" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronizzazione tra hub" -#: ../../Zotlabs/Module/Admin.php:1064 -msgid "Expires" -msgstr "Con scadenza" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Nessun indirizzo trovato." -#: ../../Zotlabs/Module/Admin.php:1065 -msgid "Service Class" -msgstr "Classe dell'account" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Modifica gli indirizzi del canale" -#: ../../Zotlabs/Module/Admin.php:1067 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 +#: ../../Zotlabs/Module/Pubsites.php:46 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Posizione geografica" -#: ../../Zotlabs/Module/Admin.php:1068 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" -#: ../../Zotlabs/Module/Admin.php:1104 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizza ora" -#: ../../Zotlabs/Module/Admin.php:1113 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s canale permette/non permette codice nei contenuti" -msgstr[1] "%s canali permettono/non permettono codice nei contenuti" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." -#: ../../Zotlabs/Module/Admin.php:1119 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." -#: ../../Zotlabs/Module/Admin.php:1139 -msgid "Channel not found" -msgstr "Canale non trovato" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." -#: ../../Zotlabs/Module/Admin.php:1149 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub non trovato." -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Mi piace/Non mi piace" -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Questa funzionalità è riservata agli iscritti." -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Il canale '%s' permette codice nei contenuti" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Il canale '%s' non permette codice nei contenuti" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Richiesta non valida." -#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1492 -msgid "Channels" -msgstr "Canali" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "il canale" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "Censor" -msgstr "Applica censura" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "Oggetto" -#: ../../Zotlabs/Module/Admin.php:1228 -msgid "Uncensor" -msgstr "Rimuovi censura" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Admin.php:1229 -msgid "Allow Code" -msgstr "Permetti codice" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Il comando precedente è stato annullato." -#: ../../Zotlabs/Module/Admin.php:1230 -msgid "Disallow Code" -msgstr "Non permettere codice" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 +#: ../../include/conversation.php:120 +msgid "photo" +msgstr "la foto" -#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1644 -msgid "Channel" -msgstr "Canale" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1951 ../../include/conversation.php:148 +msgid "status" +msgstr "il messaggio di stato" -#: ../../Zotlabs/Module/Admin.php:1235 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 +#: ../../include/conversation.php:123 ../../include/event.php:958 +msgid "event" +msgstr "l'evento" -#: ../../Zotlabs/Module/Admin.php:1239 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../Zotlabs/Module/Admin.php:1240 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: ../../Zotlabs/Module/Admin.php:1297 +#: ../../Zotlabs/Module/Like.php:423 #, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s è d'accordo" -#: ../../Zotlabs/Module/Admin.php:1301 +#: ../../Zotlabs/Module/Like.php:425 #, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non è d'accordo" -#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1599 -msgid "Disable" -msgstr "Disattiva" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non si esprime" -#: ../../Zotlabs/Module/Admin.php:1314 ../../Zotlabs/Module/Admin.php:1601 -msgid "Enable" -msgstr "Attiva" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s partecipa" -#: ../../Zotlabs/Module/Admin.php:1343 ../../Zotlabs/Module/Admin.php:1434 -#: ../../include/widgets.php:1495 -msgid "Plugins" -msgstr "Plugin" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non partecipa" -#: ../../Zotlabs/Module/Admin.php:1344 ../../Zotlabs/Module/Admin.php:1628 -msgid "Toggle" -msgstr "Attiva/disattiva" +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s forse partecipa" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1629 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 -#: ../../include/nav.php:212 -msgid "Settings" -msgstr "Impostazioni" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Comando completato." -#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1638 -msgid "Author: " -msgstr "Autore:" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Grazie." -#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1639 -msgid "Maintainer: " -msgstr "Gestore:" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." -#: ../../Zotlabs/Module/Admin.php:1354 -msgid "Minimum project version: " -msgstr "Minima versione hubzilla" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" -#: ../../Zotlabs/Module/Admin.php:1355 -msgid "Maximum project version: " -msgstr "Massima versione hubzilla" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Crea nuova" -#: ../../Zotlabs/Module/Admin.php:1356 -msgid "Minimum PHP version: " -msgstr "Minima versione PHP:" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" +msgstr "Gestione canali" -#: ../../Zotlabs/Module/Admin.php:1357 -msgid "Compatible Server Roles: " -msgstr "Ruoli compatibili per questo server" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canale attuale" -#: ../../Zotlabs/Module/Admin.php:1358 -msgid "Requires: " -msgstr "Necessita di:" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." -#: ../../Zotlabs/Module/Admin.php:1359 ../../Zotlabs/Module/Admin.php:1439 -msgid "Disabled - version incompatibility" -msgstr "Disabilitato - incompatibilità di versione" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canale predefinito" -#: ../../Zotlabs/Module/Admin.php:1408 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Inserisci lo URL del repository git dei plugin." +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Rendi predefinito" -#: ../../Zotlabs/Module/Admin.php:1409 -msgid "Plugin repo git URL" -msgstr "URL git del repository del plugin" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" -#: ../../Zotlabs/Module/Admin.php:1410 -msgid "Custom repo name" -msgstr "Nome repository personalizzato" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" -#: ../../Zotlabs/Module/Admin.php:1410 -msgid "(optional)" -msgstr "(facoltativo)" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canale delegato" -#: ../../Zotlabs/Module/Admin.php:1411 -msgid "Download Plugin Repo" -msgstr "Scarica il repository del plugin" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossibile creare l'elemento." -#: ../../Zotlabs/Module/Admin.php:1418 -msgid "Install new repo" -msgstr "Installa un nuovo repository" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." -#: ../../Zotlabs/Module/Admin.php:1419 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installa" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." -#: ../../Zotlabs/Module/Admin.php:1441 -msgid "Manage Repos" -msgstr "Gestisci i repository" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" -#: ../../Zotlabs/Module/Admin.php:1442 -msgid "Installed Plugin Repositories" -msgstr "Repository per i plugin installati" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nome link" -#: ../../Zotlabs/Module/Admin.php:1443 -msgid "Install a New Plugin Repository" -msgstr "Installa un nuovo repository per i plugin" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" -#: ../../Zotlabs/Module/Admin.php:1450 -msgid "Switch branch" -msgstr "Cambia branch" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" -#: ../../Zotlabs/Module/Admin.php:1564 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" -#: ../../Zotlabs/Module/Admin.php:1620 -msgid "Screenshot" -msgstr "Istantanea dello schermo" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" -#: ../../Zotlabs/Module/Admin.php:1627 ../../Zotlabs/Module/Admin.php:1661 -#: ../../include/widgets.php:1496 -msgid "Themes" -msgstr "Temi" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Ordine dell'elenco" -#: ../../Zotlabs/Module/Admin.php:1666 -msgid "[Experimental]" -msgstr "[Sperimentale]" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti andranno in fondo all'elenco" -#: ../../Zotlabs/Module/Admin.php:1667 -msgid "[Unsupported]" -msgstr "[Non supportato]" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Salva e termina" -#: ../../Zotlabs/Module/Admin.php:1691 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Salva e continua" -#: ../../Zotlabs/Module/Admin.php:1746 ../../include/widgets.php:1517 -#: ../../include/widgets.php:1527 -msgid "Logs" -msgstr "Log" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menu:" -#: ../../Zotlabs/Module/Admin.php:1748 -msgid "Clear" -msgstr "Pulisci" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Destinazione link" -#: ../../Zotlabs/Module/Admin.php:1754 -msgid "Debugging" -msgstr "Debugging" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Modifica il menù" -#: ../../Zotlabs/Module/Admin.php:1755 -msgid "Log file" -msgstr "File di log" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Modifica l'elemento" -#: ../../Zotlabs/Module/Admin.php:1755 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Relativo alla directory base del server web. Deve essere scrivibile." +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Elimina l'elemento" -#: ../../Zotlabs/Module/Admin.php:1756 -msgid "Log level" -msgstr "Livello di log" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nuovo elemento" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" -#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 -msgid "Field nickname" -msgstr "Nome breve del campo" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" -#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 -msgid "System name of field" -msgstr "Nome di sistema del campo" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" -#: ../../Zotlabs/Module/Admin.php:2044 ../../Zotlabs/Module/Admin.php:2064 -msgid "Input type" -msgstr "Tipo di dati" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" -#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 -msgid "Field Name" -msgstr "Nome del campo" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." -#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 -msgid "Label on profile pages" -msgstr "Etichetta da mostrare sulla pagina del profilo" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." -#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 -msgid "Help text" -msgstr "Testo di aiuto" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." -#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (facoltative)" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" -#: ../../Zotlabs/Module/Admin.php:2056 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Testo del link" -#: ../../Zotlabs/Module/Admin.php:2062 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../Zotlabs/Module/Admin.php:2120 ../../include/widgets.php:1498 -msgid "Profile Fields" -msgstr "Campi del profilo" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." -#: ../../Zotlabs/Module/Admin.php:2121 -msgid "Basic Profile Fields" -msgstr "Campi base del profilo" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../Zotlabs/Module/Admin.php:2122 -msgid "Advanced Profile Fields" -msgstr "Campi avanzati del profilo" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "I post duplicati sono scartati." -#: ../../Zotlabs/Module/Admin.php:2122 -msgid "(In addition to basic fields)" -msgstr "(In aggiunta ai campi di base)" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." -#: ../../Zotlabs/Module/Admin.php:2124 -msgid "All available fields" -msgstr "Tutti i campi disponibili" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." -#: ../../Zotlabs/Module/Admin.php:2125 -msgid "Custom Fields" -msgstr "Campi personalizzati" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." -#: ../../Zotlabs/Module/Admin.php:2129 -msgid "Create Custom Field" -msgstr "Aggiungi campo personalizzato" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." #: ../../Zotlabs/Module/Lostpass.php:19 msgid "No valid account found." @@ -4815,8 +4799,8 @@ msgstr "Elimina questo profilo" msgid "Add profile things" msgstr "Aggiungi oggetti al profilo" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1559 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1559 +#: ../../include/widgets.php:105 msgid "Personal" msgstr "Personali" @@ -4965,7 +4949,7 @@ msgid "Profile Image" msgstr "Immagine del profilo" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 -#: ../../include/nav.php:90 +#: ../../include/nav.php:91 msgid "Edit Profiles" msgstr "Modifica i tuoi profili" @@ -4995,48 +4979,62 @@ msgstr "interessi personali:" msgid "No matches" msgstr "Nessun risultato" -#: ../../Zotlabs/Module/Webpages.php:53 +#: ../../Zotlabs/Module/Webpages.php:52 msgid "Import Webpage Elements" msgstr "Importa gli elementi della pagina web" -#: ../../Zotlabs/Module/Webpages.php:54 +#: ../../Zotlabs/Module/Webpages.php:53 msgid "Import selected" msgstr "Importa i selezionati" -#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/conversation.php:1718 ../../include/nav.php:108 +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" +msgstr "Esporta gli elementi della pagina web" + +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" +msgstr "Esporta i selezionati" + +#: ../../Zotlabs/Module/Webpages.php:235 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/conversation.php:1720 ../../include/nav.php:109 msgid "Webpages" msgstr "Pagine web" -#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +#: ../../Zotlabs/Module/Webpages.php:244 ../../Zotlabs/Module/Events.php:680 +#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Guarda" + +#: ../../Zotlabs/Module/Webpages.php:246 ../../include/page_widgets.php:44 msgid "Actions" msgstr "Azioni" -#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +#: ../../Zotlabs/Module/Webpages.php:247 ../../include/page_widgets.php:45 msgid "Page Link" msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Webpages.php:227 +#: ../../Zotlabs/Module/Webpages.php:248 msgid "Page Title" msgstr "Titolo della pagina" -#: ../../Zotlabs/Module/Webpages.php:258 +#: ../../Zotlabs/Module/Webpages.php:278 msgid "Invalid file type." msgstr "Tipo di file non valido." -#: ../../Zotlabs/Module/Webpages.php:270 +#: ../../Zotlabs/Module/Webpages.php:290 msgid "Error opening zip file" msgstr "Errore nell'apertura del file zip" -#: ../../Zotlabs/Module/Webpages.php:281 +#: ../../Zotlabs/Module/Webpages.php:301 msgid "Invalid folder path." msgstr "La cartella indicata non è valida." -#: ../../Zotlabs/Module/Webpages.php:308 +#: ../../Zotlabs/Module/Webpages.php:328 msgid "No webpage elements detected." msgstr "Nella pagina web non sono presenti elementi." -#: ../../Zotlabs/Module/Webpages.php:382 +#: ../../Zotlabs/Module/Webpages.php:403 msgid "Import complete." msgstr "Importazione completata." @@ -5265,18 +5263,18 @@ msgid "" "only once and leave this page open until finished." msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." -#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/New_channel.php:140 msgid "Create Channel" msgstr "Crea un canale" -#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/New_channel.php:141 msgid "" "A channel is your identity on this network. It can represent a person, a " "blog, or a forum to name a few. Channels can make connections with other " "channels to share information with highly detailed permissions." msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/New_channel.php:142 msgid "" "or import an existing channel from another location." msgstr "oppure importa un canale esistente da un altro server/hub." @@ -5309,7 +5307,7 @@ msgstr "L'identificativo della richiesta non è valido." msgid "Discard" msgstr "Rifiuta" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 msgid "Mark all system notifications seen" msgstr "Segna come lette le notifiche di sistema" @@ -5385,22 +5383,47 @@ msgid "" " to correctly use this feature." msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1384 +msgid "Public Hubs" +msgstr "Hub pubblici" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Post e commenti" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo post" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "URL del hub" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo di accesso" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Politica di registrazione" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiche" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Valutazioni" + +#: ../../Zotlabs/Module/Pubsites.php:43 +msgid "Rate" +msgstr "Valuta" #: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format @@ -5473,6 +5496,12 @@ msgstr "Titolo del block" msgid "Layouts" msgstr "Layout" +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Help.php:86 +#: ../../Zotlabs/Module/Help.php:91 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:164 +msgid "Help" +msgstr "Guida" + #: ../../Zotlabs/Module/Layouts.php:185 msgid "Comanche page description language help" msgstr "Guida di Comanche Page Description Language" @@ -5485,21 +5514,27 @@ msgstr "Descrizione del layout" msgid "Download PDL file" msgstr "Scarica il file PDL" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Nessuna valutazione" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Valutazione:" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" msgstr "Sito web:" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" #: ../../Zotlabs/Module/Profile_photo.php:186 msgid "" @@ -5599,7 +5634,7 @@ msgid "Set expiration date" msgstr "Data di scadenza" #: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 #: ../../include/conversation.php:1289 msgid "Encrypt text" msgstr "Cifratura del messaggio" @@ -5639,6 +5674,22 @@ msgstr "Invia la risposta" msgid "Your message for %s (%s):" msgstr "Il tuo messaggio per %s (%s):" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Nessuna valutazione" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valutazione:" + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sito web:" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descrizione:" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Non è possibile accedere alle informazioni sul contatto." @@ -5678,7 +5729,7 @@ msgid "Connection has been removed." msgstr "Il contatto è stato rimosso." #: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/conversation.php:955 ../../include/nav.php:88 +#: ../../include/conversation.php:955 ../../include/nav.php:89 msgid "View Profile" msgstr "Profilo" @@ -5760,15 +5811,15 @@ msgstr "Questa connessione è tra quelle nascoste!" msgid "Delete this connection" msgstr "Elimina questo contatto" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 msgid "Me" msgstr "Me" -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 msgid "Family" msgstr "Famiglia" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 msgid "Acquaintances" msgstr "Conoscenti" @@ -5796,11 +5847,11 @@ msgstr "Affinità e profilo" msgid "none" msgstr "--" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 msgid "Connection Default Permissions" msgstr "Permessi predefiniti dei nuovi contatti" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3964 +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 #, php-format msgid "Connection: %s" msgstr "Contatto: %s" @@ -5888,10 +5939,18 @@ msgstr "Alcuni permessi derivano dalle impostazioni msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:167 -msgid "Apps" -msgstr "App" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Ricerca nella guida" + +#: ../../Zotlabs/Module/Help.php:68 ../../Zotlabs/Module/Help.php:74 +#: ../../Zotlabs/Module/Help.php:80 +msgid "Help:" +msgstr "Guida:" + +#: ../../Zotlabs/Module/Help.php:121 +msgid "$Projectname Documentation" +msgstr "Guida di $Projectname" #: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 msgid "Continue" @@ -6101,10 +6160,6 @@ msgstr "Questi contenuti potranno essere importati o ripristinati visitando These" -" permissions set who is allowed to view the post." -msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." -#: ../../include/api.php:1330 -msgid "Public Timeline" -msgstr "Diario pubblico" +#: ../../include/items.php:1172 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nome vuoto" +#: ../../include/items.php:1176 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" +#: ../../include/items.php:3966 +msgid "Privacy group is empty." +msgstr "Gruppo di canali vuoto." + +#: ../../include/items.php:3973 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppo di canali: %s" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Account senza identificativo" +#: ../../include/items.php:3985 +msgid "Connection not found." +msgstr "Contatto non trovato." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." +#: ../../include/items.php:4338 +msgid "profile photo" +msgstr "foto del profilo" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." +#: ../../include/security.php:109 +msgid "guest:" +msgstr "ospite:" -#: ../../include/channel.php:212 +#: ../../include/security.php:527 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/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profilo predefinito" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" -#: ../../include/channel.php:813 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/channel.php:960 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../include/channel.php:963 ../../include/nav.php:92 -msgid "Edit Profile" -msgstr "Modifica il profilo" +#: ../../include/zot.php:3706 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" -#: ../../include/channel.php:980 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" -msgstr "Sesso:" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso." -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" -msgstr "Stato:" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Aggiungi nuovi contatti a questo gruppo di canali" -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" -msgstr "Home page:" +#: ../../include/group.php:289 +msgid "edit" +msgstr "modifica" -#: ../../include/channel.php:1056 -msgid "Online Now" -msgstr "Online adesso" +#: ../../include/group.php:311 ../../include/features.php:83 +msgid "Privacy Groups" +msgstr "Gruppi di canali" -#: ../../include/channel.php:1171 -msgid "Like this channel" -msgstr "Mi piace questo canale" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Modifica il gruppo" -#: ../../include/channel.php:1195 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Crea un gruppo di canali" -#: ../../include/channel.php:1196 -msgid "j F" -msgstr "j F" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Canali che non sono in nessun gruppo" -#: ../../include/channel.php:1203 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../include/group.php:316 ../../include/widgets.php:284 +msgid "add" +msgstr "aggiungi" -#: ../../include/channel.php:1216 +#: ../../include/photos.php:114 #, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: ../../include/channel.php:1225 -msgid "Tags:" -msgstr "Tag:" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Impossibile salvare la foto." -#: ../../include/channel.php:1227 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "una nuova foto" -#: ../../include/channel.php:1229 -msgid "Religion:" -msgstr "Religione:" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha pubblicato %2$s su %3$s" -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" +#: ../../include/photos.php:506 ../../include/conversation.php:1670 +msgid "Photo Albums" +msgstr "Album foto" -#: ../../include/channel.php:1235 -msgid "Likes:" -msgstr "Mi piace:" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: ../../include/channel.php:1237 -msgid "Dislikes:" -msgstr "Non mi piace:" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nuova pagina web" -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titolo" -#: ../../include/channel.php:1241 -msgid "My other channels:" -msgstr "I miei altri canali:" +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" -#: ../../include/channel.php:1243 -msgid "Musical interests:" -msgstr "Gusti musicali:" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "Elemento non trovato." -#: ../../include/channel.php:1245 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "Nessun file di origine." -#: ../../include/channel.php:1247 -msgid "Television:" -msgstr "Televisione:" +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" -#: ../../include/channel.php:1251 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" -#: ../../include/channel.php:1253 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../include/attach.php:689 +#, 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/channel.php:1255 -msgid "School/education:" -msgstr "Scuola:" +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." -#: ../../include/channel.php:1276 -msgid "Like this thing" -msgstr "Mi piace" +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Compleanno" +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." +msgstr "Percorso non disponibile." -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Età:" +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG oppure MM-GG" +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" +msgstr "il file o il percorso del file è duplicato" -#: ../../include/datetime.php:272 ../../boot.php:2577 -msgid "never" -msgstr "mai" +#: ../../include/attach.php:1026 +msgid "Path not found." +msgstr "Percorso del file non trovato." -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "meno di un secondo fa" +#: ../../include/attach.php:1084 +msgid "mkdir failed." +msgstr "mkdir fallito." -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" +#: ../../include/attach.php:1088 +msgid "database storage failed." +msgstr "scrittura su database fallita." -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "anno" -msgstr[1] "anni" +#: ../../include/attach.php:1136 +msgid "Empty path" +msgstr "La posizione è vuota" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mese" -msgstr[1] "mesi" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Allegati:" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "settimana" -msgstr[1] "settimane" +#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 +#: ../../include/event.php:69 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "giorno" -msgstr[1] "giorni" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notifica evento $Projectname:" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "ora" -msgstr[1] "ore" +#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 +#: ../../include/event.php:73 +msgid "Starts:" +msgstr "Inizio:" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minuti" +#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 +#: ../../include/event.php:77 +msgid "Finishes:" +msgstr "Fine:" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "secondo" -msgstr[1] "secondi" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Eliminare questo elemento?" -#: ../../include/datetime.php:562 +#: ../../include/js_strings.php:8 #, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" +msgid "%s show less" +msgstr "%s riduci" -#: ../../include/datetime.php:563 +#: ../../include/js_strings.php:9 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Buon compleanno %1$s" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Frequentemente" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Ogni ora" +msgid "%s expand" +msgstr "%s mostra tutto" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Due volte al giorno" +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" +msgstr "%s minimizza" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Ogni giorno" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Password troppo corta" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Ogni settimana" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Le password non corrispondono" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Ogni mese" +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "tutti" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Male" -msgstr "Maschio" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Parola chiave per decifrare" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Female" -msgstr "Femmina" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Suggerimento per la parola chiave" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Al momento maschio" +#: ../../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/selectors.php:49 -msgid "Currently Female" -msgstr "Al momento femmina" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "chiudi tutto" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Valuta questo canale (visibile a tutti)" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgender" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Descrizione (facoltativa)" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersex" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Inserisci l'URL di un link" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transessuale" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Ermafrodito" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Neutro" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Non specificato" +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "fa" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indeciso" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "da adesso" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Maschi" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "meno di un minuto" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Femmine" +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "circa un minuto" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Gay" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d minuti" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbica" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "circa un’ora" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Senza preferenza" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "circa %d ore" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisessuale" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "un giorno" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosessuale" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d giorni" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Astinente" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "circa un mese" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Vergine" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d mesi" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Deviato" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "circa un anno" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Feticista" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d anni" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Un sacco" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asessuato" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Single" +#: ../../include/js_strings.php:45 ../../include/text.php:1243 +msgid "January" +msgstr "gennaio" -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Da solo" +#: ../../include/js_strings.php:46 ../../include/text.php:1243 +msgid "February" +msgstr "febbraio" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponibile" +#: ../../include/js_strings.php:47 ../../include/text.php:1243 +msgid "March" +msgstr "marzo" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Non disponibile" +#: ../../include/js_strings.php:48 ../../include/text.php:1243 +msgid "April" +msgstr "aprile" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Ha una cotta" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "maggio" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Infatuato/a" +#: ../../include/js_strings.php:50 ../../include/text.php:1243 +msgid "June" +msgstr "giugno" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Disponibile a un incontro" +#: ../../include/js_strings.php:51 ../../include/text.php:1243 +msgid "July" +msgstr "luglio" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infedele" +#: ../../include/js_strings.php:52 ../../include/text.php:1243 +msgid "August" +msgstr "agosto" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sesso-dipendente" +#: ../../include/js_strings.php:53 ../../include/text.php:1243 +msgid "September" +msgstr "settembre" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amici con qualcosa in più" +#: ../../include/js_strings.php:54 ../../include/text.php:1243 +msgid "October" +msgstr "ottobre" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" +#: ../../include/js_strings.php:55 ../../include/text.php:1243 +msgid "November" +msgstr "novembre" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Impegnato" +#: ../../include/js_strings.php:56 ../../include/text.php:1243 +msgid "December" +msgstr "dicembre" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Sposato/a" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "Gen" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Con matrimonio immaginario" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "Feb" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partner" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "Mar" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Convivente" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "Apr" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio regolare" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "maggio" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felice" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "Mag" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Non in cerca" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "Giu" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Scambista" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "Ago" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Tradito/a" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "Set" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separato/a" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "Ott" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Instabile" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "Nov" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorziato/a" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "Dic" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Sogna il divorzio" +#: ../../include/js_strings.php:69 ../../include/text.php:1239 +msgid "Sunday" +msgstr "domenica" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Vedovo/a" +#: ../../include/js_strings.php:70 ../../include/text.php:1239 +msgid "Monday" +msgstr "lunedì" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incerto/a" +#: ../../include/js_strings.php:71 ../../include/text.php:1239 +msgid "Tuesday" +msgstr "martedì" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Relazione complicata" +#: ../../include/js_strings.php:72 ../../include/text.php:1239 +msgid "Wednesday" +msgstr "mercoledì" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Chi se ne frega" +#: ../../include/js_strings.php:73 ../../include/text.php:1239 +msgid "Thursday" +msgstr "giovedì" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Chiedimelo" +#: ../../include/js_strings.php:74 ../../include/text.php:1239 +msgid "Friday" +msgstr "venerdì" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" +#: ../../include/js_strings.php:75 ../../include/text.php:1239 +msgid "Saturday" +msgstr "sabato" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "Dom" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "Lun" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nuova foto" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "Mar" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha pubblicato %2$s su %3$s" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "Mer" -#: ../../include/photos.php:506 ../../include/conversation.php:1668 -msgid "Photo Albums" -msgstr "Album foto" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "Gio" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Carica nuove foto" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "Ven" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "ospite:" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "Sab" -#: ../../include/security.php:527 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "oggi" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "mese" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "settimana" + +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "giorno" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Tutto il giorno" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categorie:" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Classificato come:" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Vedi nel contesto" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../include/conversation.php:851 -msgid "remove" -msgstr "rimuovi" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." -#: ../../include/conversation.php:855 ../../include/nav.php:251 -msgid "Loading..." -msgstr "Caricamento in corso..." +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." -#: ../../include/conversation.php:856 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." -#: ../../include/conversation.php:949 -msgid "View Source" -msgstr "Vedi il sorgente" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." -#: ../../include/conversation.php:950 -msgid "Follow Thread" -msgstr "Segui la discussione" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "Chi può vederlo?" -#: ../../include/conversation.php:951 -msgid "Unfollow Thread" -msgstr "Non seguire la discussione" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Selezione personalizzata" -#: ../../include/conversation.php:956 -msgid "Activity/Posts" -msgstr "Attività e Post" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." -#: ../../include/conversation.php:958 -msgid "Edit Connection" -msgstr "Modifica il contatto" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Mostra" -#: ../../include/conversation.php:959 -msgid "Message" -msgstr "Messaggio" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "Non mostrare" -#: ../../include/conversation.php:1076 +#: ../../include/acl_selectors.php:207 #, php-format -msgid "%s likes this." -msgstr "Piace a %s." +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." -#: ../../include/conversation.php:1076 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." +#: ../../include/text.php:404 +msgid "prev" +msgstr "prec" -#: ../../include/conversation.php:1080 -#, 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/text.php:406 +msgid "first" +msgstr "inizio" -#: ../../include/conversation.php:1082 -#, 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/text.php:435 +msgid "last" +msgstr "fine" -#: ../../include/conversation.php:1088 -msgid "and" -msgstr "e" +#: ../../include/text.php:438 +msgid "next" +msgstr "succ" -#: ../../include/conversation.php:1091 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "e altre %d persone" +#: ../../include/text.php:448 +msgid "older" +msgstr "più recenti" -#: ../../include/conversation.php:1092 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." +#: ../../include/text.php:450 +msgid "newer" +msgstr "più nuovi" -#: ../../include/conversation.php:1092 +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Nessun contatto" + +#: ../../include/text.php:868 #, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." +msgid "View all %s connections" +msgstr "Mostra tutti i %s contatti" -#: ../../include/conversation.php:1135 -msgid "Set your location" -msgstr "La tua località" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "poke" -#: ../../include/conversation.php:1136 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" +#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha mandato un poke" -#: ../../include/conversation.php:1184 -msgid "Tag term:" -msgstr "Tag:" +#: ../../include/text.php:1019 +msgid "ping" +msgstr "ping" -#: ../../include/conversation.php:1185 -msgid "Where are you right now?" -msgstr "Dove sei ora?" +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "ha effettuato un ping" -#: ../../include/conversation.php:1194 -msgid "Comments enabled" -msgstr "Commenti abilitati" +#: ../../include/text.php:1020 +msgid "prod" +msgstr "spintone" -#: ../../include/conversation.php:1195 -msgid "Comments disabled" -msgstr "Commenti disabilitati" +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "ha ricevuto uno spintone" -#: ../../include/conversation.php:1229 -msgid "Page link name" -msgstr "Nome del link alla pagina" +#: ../../include/text.php:1021 +msgid "slap" +msgstr "schiaffo" -#: ../../include/conversation.php:1232 -msgid "Post as" -msgstr "Pubblica come " +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" -#: ../../include/conversation.php:1246 -msgid "Toggle voting" -msgstr "Abilita/disabilita il voto" +#: ../../include/text.php:1022 +msgid "finger" +msgstr "finger" -#: ../../include/conversation.php:1249 -msgid "Disable comments" -msgstr "Disabilita i commenti" +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "ha ricevuto un finger" -#: ../../include/conversation.php:1250 -msgid "Toggle comments" -msgstr "Abilita/disabilita i commenti" +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "rifiuto" -#: ../../include/conversation.php:1258 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" -#: ../../include/conversation.php:1281 -msgid "Other networks and post services" -msgstr "Invio ad altre reti o a siti esterni" +#: ../../include/text.php:1035 +msgid "happy" +msgstr "felice" -#: ../../include/conversation.php:1287 -msgid "Set publish date" -msgstr "Data di uscita programmata" +#: ../../include/text.php:1036 +msgid "sad" +msgstr "triste" -#: ../../include/conversation.php:1536 -msgid "Discover" -msgstr "Scopri" +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "calmo" -#: ../../include/conversation.php:1539 -msgid "Imported public streams" -msgstr "Contenuti pubblici importati" +#: ../../include/text.php:1038 +msgid "tired" +msgstr "stanco" -#: ../../include/conversation.php:1544 -msgid "Commented Order" -msgstr "Commenti recenti" +#: ../../include/text.php:1039 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:1040 +msgid "angry" +msgstr "arrabbiato" + +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "stupito" -#: ../../include/conversation.php:1547 -msgid "Sort by Comment Date" -msgstr "Per data del commento" +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "confuso" -#: ../../include/conversation.php:1551 -msgid "Posted Order" -msgstr "Post recenti" +#: ../../include/text.php:1043 +msgid "interested" +msgstr "attento" -#: ../../include/conversation.php:1554 -msgid "Sort by Post Date" -msgstr "Per data di creazione" +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "amaro" -#: ../../include/conversation.php:1562 -msgid "Posts that mention or involve you" -msgstr "Post che ti riguardano" +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "allegro" -#: ../../include/conversation.php:1571 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" +#: ../../include/text.php:1046 +msgid "alive" +msgstr "vivace" -#: ../../include/conversation.php:1577 -msgid "Starred" -msgstr "Preferiti" +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "seccato" -#: ../../include/conversation.php:1580 -msgid "Favourite Posts" -msgstr "Post preferiti" +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "ansioso" -#: ../../include/conversation.php:1587 -msgid "Spam" -msgstr "Spam" +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "irritabile" -#: ../../include/conversation.php:1590 -msgid "Posts flagged as SPAM" -msgstr "Post marcati come spam" +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "turbato" -#: ../../include/conversation.php:1647 -msgid "Status Messages and Posts" -msgstr "Post e messaggi di stato" +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustrato" -#: ../../include/conversation.php:1656 -msgid "About" -msgstr "Informazioni" +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "in depressione" -#: ../../include/conversation.php:1659 -msgid "Profile Details" -msgstr "Dettagli del profilo" +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motivato" -#: ../../include/conversation.php:1675 -msgid "Files and Storage" -msgstr "Archivio file" +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "rilassato" -#: ../../include/conversation.php:1708 ../../include/nav.php:104 -msgid "Bookmarks" -msgstr "Segnalibri" +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "sorpreso" -#: ../../include/conversation.php:1711 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" +#: ../../include/text.php:1243 +msgid "May" +msgstr "Mag" -#: ../../include/conversation.php:1721 -msgid "Manage Webpages" -msgstr "Gestisci le pagine web" +#: ../../include/text.php:1320 ../../include/text.php:1324 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" -#: ../../include/conversation.php:1786 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" +#: ../../include/text.php:1326 +msgid "unknown" +msgstr "sconosciuta" -#: ../../include/conversation.php:1789 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" +#: ../../include/text.php:1362 +msgid "remove category" +msgstr "rimuovi la categoria" -#: ../../include/conversation.php:1792 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indecisi" +#: ../../include/text.php:1439 +msgid "remove from file" +msgstr "rimuovi dal file" -#: ../../include/conversation.php:1795 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accordo" -msgstr[1] "D'accordo" +#: ../../include/text.php:1738 ../../include/text.php:1809 +msgid "default" +msgstr "predefinito" -#: ../../include/conversation.php:1798 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Non d'accordo" -msgstr[1] "Non d'accordo" +#: ../../include/text.php:1746 +msgid "Page layout" +msgstr "Layout della pagina" -#: ../../include/conversation.php:1801 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Astenuto" -msgstr[1] "Astenuti" +#: ../../include/text.php:1746 +msgid "You can create your own with the layouts tool" +msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" +#: ../../include/text.php:1788 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso." +#: ../../include/text.php:1821 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Aggiungi nuovi contatti a questo gruppo di canali" +#: ../../include/text.php:1958 +msgid "activity" +msgstr "l'attività" -#: ../../include/group.php:289 -msgid "edit" -msgstr "modifica" +#: ../../include/text.php:2259 +msgid "Design Tools" +msgstr "Strumenti di design" -#: ../../include/group.php:311 ../../include/features.php:84 -msgid "Privacy Groups" -msgstr "Gruppi di canali" +#: ../../include/text.php:2265 +msgid "Pages" +msgstr "Pagine" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Modifica il gruppo" +#: ../../include/text.php:2287 +msgid "Import website..." +msgstr "Importazione sito web..." -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Crea un gruppo di canali" +#: ../../include/text.php:2288 +msgid "Select folder to import" +msgstr "Scegli la cartella da importare" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Canali che non sono in nessun gruppo" +#: ../../include/text.php:2289 +msgid "Import from a zipped folder:" +msgstr "Importa da un file zip:" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nuova pagina web" +#: ../../include/text.php:2290 +msgid "Import from cloud files:" +msgstr "Importa da un file su cloud:" -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titolo" +#: ../../include/text.php:2291 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/percorso/alla/cartella" -#: ../../include/wiki.php:525 ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" +#: ../../include/text.php:2292 +msgid "Enter path to website files" +msgstr "Inserisci la posizione dei file del sito web" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/text.php:2293 +msgid "Select folder" +msgstr "Scegli la cartella" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Inizio:" +#: ../../include/text.php:2294 +msgid "Export website..." +msgstr "Esporta il sito web..." -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fine:" +#: ../../include/text.php:2295 +msgid "Export to a zip file" +msgstr "Esporta come file zip" -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" +#: ../../include/text.php:2296 +msgid "website.zip" +msgstr "sitoweb.zip" -#: ../../include/event.php:1021 -msgid "Not specified" -msgstr "Non specificato" +#: ../../include/text.php:2297 +msgid "Enter a name for the zip file." +msgstr "Scegli il nome del file zip." -#: ../../include/event.php:1022 -msgid "Needs Action" -msgstr "Necessita di un intervento" +#: ../../include/text.php:2298 +msgid "Export to cloud files" +msgstr "Esporta nell'archivio cloud" -#: ../../include/event.php:1023 -msgid "Completed" -msgstr "Completato" +#: ../../include/text.php:2299 +msgid "/path/to/export/folder" +msgstr "/percorso/alla/cartella" -#: ../../include/event.php:1024 -msgid "In Process" -msgstr "In corso" +#: ../../include/text.php:2300 +msgid "Enter a path to a cloud files destination." +msgstr "Scegli la posizione su una cartella cloud." -#: ../../include/event.php:1025 -msgid "Cancelled" -msgstr "Annullato" +#: ../../include/text.php:2301 +msgid "Specify folder" +msgstr "Scegli la cartella" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Allegati:" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notifica evento $Projectname:" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Eliminare questo elemento?" +#: ../../include/import.php:1441 +msgid "Unable to import element \"" +msgstr "Impossibile importare l'elemento \"" -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "%s riduci" +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "Email non valida" -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s mostra tutto" +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" +msgstr "Il dominio della tua email attualmente non è permesso su questo sito" -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s minimizza" +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Password troppo corta" +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "È necessario un invito." -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Le password non corrispondono" +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "tutti" +#: ../../include/account.php:129 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Parola chiave per decifrare" +#: ../../include/account.php:196 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Suggerimento per la parola chiave" +#: ../../include/account.php:256 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" -#: ../../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/account.php:322 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "chiudi tutto" +#: ../../include/account.php:346 +msgid "your registration password" +msgstr "la password di registrazione" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" +#: ../../include/account.php:349 ../../include/account.php:409 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Valuta questo canale (visibile a tutti)" +#: ../../include/account.php:421 +msgid "Account approved." +msgstr "Account approvato." -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Descrizione (facoltativa)" +#: ../../include/account.php:461 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Inserisci l'URL di un link" +#: ../../include/account.php:746 ../../include/account.php:748 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" +#: ../../include/account.php:754 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione supera i limiti del tuo abbonamento." -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/account.php:759 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "fa" +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "Autenticazione fallita" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "da adesso" +#: ../../include/auth.php:286 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "meno di un minuto" +#: ../../include/activities.php:41 +msgid " and " +msgstr "e" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "circa un minuto" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "profilo pubblico" -#: ../../include/js_strings.php:33 +#: ../../include/activities.php:58 #, php-format -msgid "%d minutes" -msgstr "%d minuti" - -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "circa un’ora" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" -#: ../../include/js_strings.php:35 +#: ../../include/activities.php:59 #, php-format -msgid "about %d hours" -msgstr "circa %d ore" +msgid "Visit %1$s's %2$s" +msgstr "Guarda %2$s di %1$s " -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "un giorno" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha aggiornato %2$s cambiando %3$s." -#: ../../include/js_strings.php:37 +#: ../../include/conversation.php:204 #, php-format -msgid "%d days" -msgstr "%d giorni" +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "circa un mese" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" -#: ../../include/js_strings.php:39 +#: ../../include/conversation.php:694 #, php-format -msgid "%d months" -msgstr "%d mesi" +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "circa un anno" +#: ../../include/conversation.php:713 +msgid "Categories:" +msgstr "Categorie:" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d anni" +#: ../../include/conversation.php:714 +msgid "Filed under:" +msgstr "Classificato come:" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/conversation.php:741 +msgid "View in context" +msgstr "Vedi nel contesto" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/conversation.php:851 +msgid "remove" +msgstr "rimuovi" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "maggio" +#: ../../include/conversation.php:855 ../../include/nav.php:252 +msgid "Loading..." +msgstr "Caricamento in corso..." -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "Gen" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "Feb" +#: ../../include/conversation.php:949 +msgid "View Source" +msgstr "Vedi il sorgente" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "Mar" +#: ../../include/conversation.php:950 +msgid "Follow Thread" +msgstr "Segui la discussione" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "Apr" +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Non seguire la discussione" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "maggio" +#: ../../include/conversation.php:956 +msgid "Activity/Posts" +msgstr "Attività e Post" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "Mag" +#: ../../include/conversation.php:958 +msgid "Edit Connection" +msgstr "Modifica il contatto" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "Giu" +#: ../../include/conversation.php:959 +msgid "Message" +msgstr "Messaggio" + +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1080 +#, 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:1082 +#, 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:1088 +msgid "and" +msgstr "e" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "Ago" +#: ../../include/conversation.php:1091 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "e altre %d persone" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "Set" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "Ott" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "Nov" +#: ../../include/conversation.php:1135 +msgid "Set your location" +msgstr "La tua località" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "Dic" +#: ../../include/conversation.php:1136 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "Dom" +#: ../../include/conversation.php:1184 +msgid "Tag term:" +msgstr "Tag:" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "Lun" +#: ../../include/conversation.php:1185 +msgid "Where are you right now?" +msgstr "Dove sei ora?" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "Mar" +#: ../../include/conversation.php:1194 +msgid "Comments enabled" +msgstr "Commenti abilitati" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "Mer" +#: ../../include/conversation.php:1195 +msgid "Comments disabled" +msgstr "Commenti disabilitati" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "Gio" +#: ../../include/conversation.php:1229 +msgid "Page link name" +msgstr "Nome del link alla pagina" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "Ven" +#: ../../include/conversation.php:1232 +msgid "Post as" +msgstr "Pubblica come " -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "Sab" +#: ../../include/conversation.php:1246 +msgid "Toggle voting" +msgstr "Abilita/disabilita il voto" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "oggi" +#: ../../include/conversation.php:1249 +msgid "Disable comments" +msgstr "Disabilita i commenti" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "mese" +#: ../../include/conversation.php:1250 +msgid "Toggle comments" +msgstr "Abilita/disabilita i commenti" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "settimana" +#: ../../include/conversation.php:1258 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "giorno" +#: ../../include/conversation.php:1281 +msgid "Other networks and post services" +msgstr "Invio ad altre reti o a siti esterni" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Tutto il giorno" +#: ../../include/conversation.php:1287 +msgid "Set publish date" +msgstr "Data di uscita programmata" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." +#: ../../include/conversation.php:1536 +msgid "Discover" +msgstr "Scopri" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." +#: ../../include/conversation.php:1539 +msgid "Imported public streams" +msgstr "Contenuti pubblici importati" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." +#: ../../include/conversation.php:1544 +msgid "Commented Order" +msgstr "Commenti recenti" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." +#: ../../include/conversation.php:1547 +msgid "Sort by Comment Date" +msgstr "Per data del commento" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." +#: ../../include/conversation.php:1551 +msgid "Posted Order" +msgstr "Post recenti" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." +#: ../../include/conversation.php:1554 +msgid "Sort by Post Date" +msgstr "Per data di creazione" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." +#: ../../include/conversation.php:1562 +msgid "Posts that mention or involve you" +msgstr "Post che ti riguardano" -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." -msgstr "Elemento non trovato." +#: ../../include/conversation.php:1571 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" -#: ../../include/attach.php:500 -msgid "No source file." -msgstr "Nessun file di origine." +#: ../../include/conversation.php:1577 +msgid "Starred" +msgstr "Preferiti" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" +#: ../../include/conversation.php:1580 +msgid "Favourite Posts" +msgstr "Post preferiti" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" +#: ../../include/conversation.php:1587 +msgid "Spam" +msgstr "Spam" -#: ../../include/attach.php:675 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" +#: ../../include/conversation.php:1590 +msgid "Posts flagged as SPAM" +msgstr "Post marcati come spam" -#: ../../include/attach.php:689 -#, 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/conversation.php:1649 +msgid "Status Messages and Posts" +msgstr "Post e messaggi di stato" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." +#: ../../include/conversation.php:1658 +msgid "About" +msgstr "Informazioni" -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." +#: ../../include/conversation.php:1661 +msgid "Profile Details" +msgstr "Dettagli del profilo" -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." -msgstr "Percorso non disponibile." +#: ../../include/conversation.php:1677 +msgid "Files and Storage" +msgstr "Archivio file" -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" +#: ../../include/conversation.php:1697 ../../include/conversation.php:1700 +#: ../../include/widgets.php:883 +msgid "Chatrooms" +msgstr "Chat" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" +#: ../../include/conversation.php:1710 ../../include/nav.php:105 +msgid "Bookmarks" +msgstr "Segnalibri" -#: ../../include/attach.php:1026 -msgid "Path not found." -msgstr "Percorso del file non trovato." +#: ../../include/conversation.php:1713 +msgid "Saved Bookmarks" +msgstr "Segnalibri salvati" -#: ../../include/attach.php:1084 -msgid "mkdir failed." -msgstr "mkdir fallito." +#: ../../include/conversation.php:1723 +msgid "Manage Webpages" +msgstr "Gestisci le pagine web" -#: ../../include/attach.php:1088 -msgid "database storage failed." -msgstr "scrittura su database fallita." +#: ../../include/conversation.php:1788 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" -#: ../../include/attach.php:1136 -msgid "Empty path" -msgstr "La posizione è vuota" +#: ../../include/conversation.php:1791 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" -#: ../../include/auth.php:148 -msgid "Logged out." -msgstr "Uscita effettuata." +#: ../../include/conversation.php:1794 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indecisi" + +#: ../../include/conversation.php:1797 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "D'accordo" +msgstr[1] "D'accordo" -#: ../../include/auth.php:275 -msgid "Failed authentication" -msgstr "Autenticazione fallita" +#: ../../include/conversation.php:1800 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Non d'accordo" +msgstr[1] "Non d'accordo" -#: ../../include/auth.php:286 -msgid "Login failed." -msgstr "Accesso fallito." +#: ../../include/conversation.php:1803 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Astenuto" +msgstr[1] "Astenuti" -#: ../../include/activities.php:41 -msgid " and " -msgstr "e" +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/widgets.php:46 ../../include/widgets.php:465 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "Categorie" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "profilo pubblico" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Tag" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Parole chiave" -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Guarda %2$s di %1$s " +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "ho" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha aggiornato %2$s cambiando %3$s." +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "ha" -#: ../../include/zot.php:700 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "voglio" -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "vuole" -#: ../../include/zot.php:2329 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "gli piace" -#: ../../include/zot.php:3706 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "non gli piace" #: ../../include/features.php:50 msgid "General Features" @@ -9245,7 +9162,7 @@ msgstr "Chat ad accesso riservato" #: ../../include/features.php:62 msgid "Provide chatrooms and chat services with access control." -msgstr "Il servizio di chat con accesso riservato" +msgstr "Il servizio di chat con accesso riservato." #: ../../include/features.php:63 msgid "Smart Birthdays" @@ -9257,308 +9174,459 @@ msgid "" "across the planet." msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." -#: ../../include/features.php:64 -msgid "Expert Mode" -msgstr "Modalità esperto" - -#: ../../include/features.php:64 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" - -#: ../../include/features.php:69 +#: ../../include/features.php:68 msgid "Post Composition Features" msgstr "Modalità di scrittura post" -#: ../../include/features.php:70 +#: ../../include/features.php:69 msgid "Large Photos" msgstr "Foto grandi" -#: ../../include/features.php:70 +#: ../../include/features.php:69 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" -#: ../../include/features.php:71 +#: ../../include/features.php:70 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:72 +#: ../../include/features.php:71 msgid "Even More Encryption" msgstr "Cifratura addizionale" -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Enable Voting Tools" msgstr "Permetti i post con votazione" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Provide a class of post which others can vote on" msgstr "Rende possibile la creazione di post in cui sarà possibile votare" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Disable Comments" msgstr "Disabilita i commenti" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide the option to disable comments for a post" msgstr "Permetti di disabilitare i commenti" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Pubblicazione ritardata" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Per scegliere una data e un'ora a cui far uscire i post" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Impedisci post e commenti duplicati" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Filtraggio dei contenuti" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Ricerca per data" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Per selezionare i post in un intervallo tra date" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Abilita i gruppi di canali" -#: ../../include/features.php:85 +#: ../../include/features.php:84 ../../include/widgets.php:283 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Attività personale" -#: ../../include/features.php:86 +#: ../../include/features.php:85 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:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Contenuti nuovi" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Filtro per affinità" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Filtro per affinità" + +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" + +#: ../../include/features.php:88 +msgid "Show friend and connection suggestions" +msgstr "Mostra suggerimenti di contatti e amici" + +#: ../../include/features.php:93 +msgid "Post/Comment Tools" +msgstr "Gestione post e commenti" + +#: ../../include/features.php:94 +msgid "Community Tagging" +msgstr "Tag della comunità" + +#: ../../include/features.php:94 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su post già esistenti" + +#: ../../include/features.php:95 +msgid "Post Categories" +msgstr "Categorie dei post" + +#: ../../include/features.php:95 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi post" + +#: ../../include/features.php:96 +msgid "Emoji Reactions" +msgstr "Risposte emoji" + +#: ../../include/features.php:96 +msgid "Add emoji reaction ability to posts" +msgstr "Permetti di rispondere ai post con degli emoji" + +#: ../../include/features.php:97 ../../include/widgets.php:346 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Cartelle salvate" + +#: ../../include/features.php:97 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" + +#: ../../include/features.php:98 +msgid "Dislike Posts" +msgstr "Non mi piace" + +#: ../../include/features.php:98 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" + +#: ../../include/features.php:99 +msgid "Star Posts" +msgstr "Post con stella" + +#: ../../include/features.php:99 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per segnare i post preferiti" + +#: ../../include/features.php:100 +msgid "Tag Cloud" +msgstr "Nuvola di tag" + +#: ../../include/features.php:100 +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/features.php:109 +msgid "Connection Filtering" +msgstr "Filtro sui contatti" + +#: ../../include/features.php:110 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtra i post che ricevi con parole chiave" + +#: ../../include/features.php:120 +msgid "Premium Channel" +msgstr "Canale premium" + +#: ../../include/features.php:121 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" + +#: ../../include/features.php:128 +msgid "Advanced Directory Search" +msgstr "Ricerca avanzata sugli elenchi pubblici" + +#: ../../include/features.php:129 +msgid "Allows creation of complex directory search queries" +msgstr "Permette la creazione di ricerche complesse negli elenchi" + +#: ../../include/features.php:135 +msgid "Advanced Theme and Layout Settings" +msgstr "Impostazioni avanzate del tema e dei layout" + +#: ../../include/features.php:136 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Permette una personalizzazione accurata del tema e dei layout" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nuova app" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Altro..." + +#: ../../include/widgets.php:175 +#, 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:181 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Indirizzo del canale" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Per esempio: bob@example.com, https://example.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Note" + +#: ../../include/widgets.php:275 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tutto" + +#: ../../include/widgets.php:390 +msgid "Archives" +msgstr "Archivi" + +#: ../../include/widgets.php:552 +msgid "Refresh" +msgstr "Aggiorna" + +#: ../../include/widgets.php:592 +msgid "Account settings" +msgstr "Il tuo account" -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" +#: ../../include/widgets.php:598 +msgid "Channel settings" +msgstr "Impostazioni del canale" -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Filtro sui contatti" +#: ../../include/widgets.php:607 +msgid "Additional features" +msgstr "Funzionalità opzionali" -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra i post che ricevi con parole chiave" +#: ../../include/widgets.php:614 +msgid "Feature/Addon settings" +msgstr "Componenti aggiuntivi" -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Mostra alcuni canali che potrebbero interessarti" +#: ../../include/widgets.php:620 +msgid "Display settings" +msgstr "Aspetto" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Gestione post e commenti" +#: ../../include/widgets.php:627 +msgid "Manage locations" +msgstr "Gestione repliche" -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Tag della comunità" +#: ../../include/widgets.php:634 +msgid "Export channel" +msgstr "Esporta il canale" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su post già esistenti" +#: ../../include/widgets.php:640 +msgid "Connected apps" +msgstr "App connesse" -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Categorie dei post" +#: ../../include/widgets.php:664 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi post" +#: ../../include/widgets.php:693 +msgid "Private Mail Menu" +msgstr "Menu messaggi privati" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Reazioni emoji" +#: ../../include/widgets.php:695 +msgid "Combined View" +msgstr "Vista combinata" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti le reazioni emoji ai post" +#: ../../include/widgets.php:700 ../../include/nav.php:201 +msgid "Inbox" +msgstr "In arrivo" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" +#: ../../include/widgets.php:705 ../../include/nav.php:202 +msgid "Outbox" +msgstr "Inviati" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "Non mi piace" +#: ../../include/widgets.php:710 ../../include/nav.php:203 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" +#: ../../include/widgets.php:727 ../../include/widgets.php:739 +msgid "Conversations" +msgstr "Conversazioni" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Post con stella" +#: ../../include/widgets.php:731 +msgid "Received Messages" +msgstr "Ricevuti" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per segnare i post preferiti" +#: ../../include/widgets.php:735 +msgid "Sent Messages" +msgstr "Inviati" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Nuvola di tag" +#: ../../include/widgets.php:749 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../include/features.php:102 -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/widgets.php:767 +msgid "Delete conversation" +msgstr "Elimina la conversazione" -#: ../../include/features.php:111 -msgid "Premium Channel" -msgstr "Canale premium" +#: ../../include/widgets.php:793 +msgid "Events Tools" +msgstr "Gestione eventi" -#: ../../include/features.php:112 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" +#: ../../include/widgets.php:794 +msgid "Export Calendar" +msgstr "Esporta calendario" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Tag" +#: ../../include/widgets.php:795 +msgid "Import Calendar" +msgstr "Importa calendario" -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Parole chiave" +#: ../../include/widgets.php:887 +msgid "Overview" +msgstr "Riepilogo" -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "ho" +#: ../../include/widgets.php:894 +msgid "Chat Members" +msgstr "Partecipanti" -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "ha" +#: ../../include/widgets.php:916 +msgid "Wiki List" +msgstr "Elenco wiki" -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "voglio" +#: ../../include/widgets.php:954 +msgid "Wiki Pages" +msgstr "Pagine wiki" -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "vuole" +#: ../../include/widgets.php:989 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "gli piace" +#: ../../include/widgets.php:1012 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "non gli piace" +#: ../../include/widgets.php:1158 ../../include/widgets.php:1270 +msgid "photo/image" +msgstr "foto/immagine" -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Email non valida" +#: ../../include/widgets.php:1213 +msgid "Click to show more" +msgstr "Clicca per mostrare tutto" -#: ../../include/account.php:30 -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/widgets.php:1364 +msgid "Rating Tools" +msgstr "Valutazione" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." +#: ../../include/widgets.php:1368 ../../include/widgets.php:1370 +msgid "Rate Me" +msgstr "Valutami" -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "È necessario un invito." +#: ../../include/widgets.php:1373 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." +#: ../../include/widgets.php:1457 +msgid "Forums" +msgstr "Forum" -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." +#: ../../include/widgets.php:1486 +msgid "Tasks" +msgstr "Attività" -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." +#: ../../include/widgets.php:1495 +msgid "Documentation" +msgstr "Guida" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" +#: ../../include/widgets.php:1497 +msgid "Project/Site Information" +msgstr "Informazioni sul sito/progetto" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" +#: ../../include/widgets.php:1498 +msgid "For Members" +msgstr "Per gli utenti" -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "la password di registrazione" +#: ../../include/widgets.php:1499 +msgid "For Administrators" +msgstr "Per gli amministratori" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" +#: ../../include/widgets.php:1500 +msgid "For Developers" +msgstr "Per sviluppatori" -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account approvato." +#: ../../include/widgets.php:1524 ../../include/widgets.php:1562 +msgid "Member registrations waiting for confirmation" +msgstr "Richieste in attesa di conferma" -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +#: ../../include/widgets.php:1530 +msgid "Inspect queue" +msgstr "Coda di attesa" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." +#: ../../include/widgets.php:1532 +msgid "DB updates" +msgstr "Aggiornamenti al DB" -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." +#: ../../include/widgets.php:1557 ../../include/nav.php:221 +msgid "Admin" +msgstr "Amministrazione" -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." +#: ../../include/widgets.php:1558 +msgid "Plugin Features" +msgstr "Plugin" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 msgid "Image/photo" msgstr "Immagine" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 msgid "Encrypted content" msgstr "Contenuto cifrato" @@ -9587,7 +9655,7 @@ msgstr "Clicca per aprire/chiudere" msgid "spoiler" msgstr "spoiler" -#: ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 msgid "$1 wrote:" msgstr "$1 ha scritto:" @@ -9669,181 +9737,196 @@ msgstr "Impossibile determinare il mittente." msgid "Stored post could not be verified." msgstr "Non è stato possibile verificare il post." -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Non specificato" + +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Necessita di un intervento" + +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Completato" + +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "In corso" + +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "Annullato" -#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1737 +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1737 msgid "Logout" msgstr "Esci" -#: ../../include/nav.php:84 ../../include/nav.php:117 +#: ../../include/nav.php:85 ../../include/nav.php:118 msgid "End this session" msgstr "Chiudi questa sessione" -#: ../../include/nav.php:87 ../../include/nav.php:148 +#: ../../include/nav.php:88 ../../include/nav.php:149 msgid "Home" msgstr "Bacheca" -#: ../../include/nav.php:87 +#: ../../include/nav.php:88 msgid "Your posts and conversations" msgstr "I tuoi post e conversazioni" -#: ../../include/nav.php:88 +#: ../../include/nav.php:89 msgid "Your profile page" msgstr "Il tuo profilo" -#: ../../include/nav.php:90 +#: ../../include/nav.php:91 msgid "Manage/Edit profiles" msgstr "Gestisci i tuoi profili" -#: ../../include/nav.php:92 +#: ../../include/nav.php:93 msgid "Edit your profile" msgstr "Modifica il tuo profilo" -#: ../../include/nav.php:94 +#: ../../include/nav.php:95 msgid "Your photos" msgstr "Le tue foto" -#: ../../include/nav.php:95 +#: ../../include/nav.php:96 msgid "Your files" msgstr "I tuoi file" -#: ../../include/nav.php:98 +#: ../../include/nav.php:99 msgid "Your chatrooms" msgstr "Le tue chat" -#: ../../include/nav.php:104 +#: ../../include/nav.php:105 msgid "Your bookmarks" msgstr "I tuoi segnalibri" -#: ../../include/nav.php:108 +#: ../../include/nav.php:109 msgid "Your webpages" msgstr "Le tue pagine web" -#: ../../include/nav.php:110 +#: ../../include/nav.php:111 msgid "Your wiki" msgstr "La tua wiki" -#: ../../include/nav.php:114 +#: ../../include/nav.php:115 msgid "Sign in" msgstr "Accedi" -#: ../../include/nav.php:131 +#: ../../include/nav.php:132 #, php-format msgid "%s - click to logout" msgstr "%s - clicca per uscire" -#: ../../include/nav.php:134 +#: ../../include/nav.php:135 msgid "Remote authentication" msgstr "Accedi dal tuo hub" -#: ../../include/nav.php:134 +#: ../../include/nav.php:135 msgid "Click to authenticate to your home hub" msgstr "Clicca per farti riconoscere dal tuo hub principale" -#: ../../include/nav.php:148 +#: ../../include/nav.php:149 msgid "Home Page" msgstr "Bacheca" -#: ../../include/nav.php:151 +#: ../../include/nav.php:152 msgid "Create an account" msgstr "Crea un account" -#: ../../include/nav.php:163 +#: ../../include/nav.php:164 msgid "Help and documentation" msgstr "Guida e documentazione" -#: ../../include/nav.php:167 +#: ../../include/nav.php:168 msgid "Applications, utilities, links, games" msgstr "Applicazioni, utilità, link, giochi" -#: ../../include/nav.php:169 +#: ../../include/nav.php:170 msgid "Search site @name, #tag, ?docs, content" msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" -#: ../../include/nav.php:171 +#: ../../include/nav.php:172 msgid "Channel Directory" msgstr "Elenchi pubblici dei canali" -#: ../../include/nav.php:183 +#: ../../include/nav.php:184 msgid "Your grid" msgstr "La tua rete" -#: ../../include/nav.php:184 +#: ../../include/nav.php:185 msgid "Mark all grid notifications seen" msgstr "Segna come lette le notifiche della tua rete" -#: ../../include/nav.php:186 +#: ../../include/nav.php:187 msgid "Channel home" msgstr "Bacheca del canale" -#: ../../include/nav.php:187 +#: ../../include/nav.php:188 msgid "Mark all channel notifications seen" msgstr "Segna come lette le notifiche del canale" -#: ../../include/nav.php:193 +#: ../../include/nav.php:194 msgid "Notices" msgstr "Avvisi" -#: ../../include/nav.php:193 +#: ../../include/nav.php:194 msgid "Notifications" msgstr "Notifiche" -#: ../../include/nav.php:194 +#: ../../include/nav.php:195 msgid "See all notifications" msgstr "Vedi tutte le notifiche" -#: ../../include/nav.php:197 +#: ../../include/nav.php:198 msgid "Private mail" msgstr "Messaggi privati" -#: ../../include/nav.php:198 +#: ../../include/nav.php:199 msgid "See all private messages" msgstr "Guarda tutti i messaggi privati" -#: ../../include/nav.php:199 +#: ../../include/nav.php:200 msgid "Mark all private messages seen" msgstr "Segna come letti tutti i messaggi privati" -#: ../../include/nav.php:205 +#: ../../include/nav.php:206 msgid "Event Calendar" msgstr "Calendario" -#: ../../include/nav.php:206 +#: ../../include/nav.php:207 msgid "See all events" msgstr "Guarda tutti gli eventi" -#: ../../include/nav.php:207 +#: ../../include/nav.php:208 msgid "Mark all events seen" msgstr "Marca come letti tutti gli eventi" -#: ../../include/nav.php:210 +#: ../../include/nav.php:211 msgid "Manage Your Channels" msgstr "Gestisci i tuoi canali" -#: ../../include/nav.php:212 +#: ../../include/nav.php:213 msgid "Account/Channel Settings" msgstr "Impostazioni dell'account e del canale" -#: ../../include/nav.php:220 +#: ../../include/nav.php:221 msgid "Site Setup and Configuration" msgstr "Installazione e configurazione del sito" -#: ../../include/nav.php:256 +#: ../../include/nav.php:257 msgid "@name, #tag, ?doc, content" msgstr "@nome, #tag, ?guida, contenuto" -#: ../../include/nav.php:257 +#: ../../include/nav.php:258 msgid "Please wait..." msgstr "Attendere..." -#: ../../view/theme/redbasic/php/config.php:6 +#: ../../view/theme/redbasic/php/config.php:9 msgid "Focus (Hubzilla default)" msgstr "Focus (predefinito)" diff --git a/view/it/hstrings.php b/view/it/hstrings.php index cceeeda4e..6d75728bb 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -72,150 +72,6 @@ App::$strings["Requested profile is not available."] = "Il profilo richiesto non App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; App::$strings["Away"] = "Assente"; App::$strings["Online"] = "Online"; -App::$strings["Invalid message"] = "Messaggio non valido"; -App::$strings["no results"] = "nessun risultato"; -App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; -App::$strings["queued"] = "in coda"; -App::$strings["posted"] = "inviato"; -App::$strings["accepted for delivery"] = "accettato per la spedizione"; -App::$strings["updated"] = "aggiornato"; -App::$strings["update ignored"] = "aggiornamento ignorato"; -App::$strings["permission denied"] = "permessi non sufficienti"; -App::$strings["recipient not found"] = "Destinatario non trovato"; -App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; -App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; -App::$strings["mail delivered"] = "messaggio recapitato"; -App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; -App::$strings["Options"] = "Opzioni"; -App::$strings["Redeliver"] = "Reinvia"; -App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -App::$strings["Authorize application connection"] = "Autorizza la app"; -App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; -App::$strings["Please login to continue."] = "Accedi al sito per continuare."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; -App::$strings["Yes"] = "Sì"; -App::$strings["No"] = "No"; -App::$strings["Rating"] = "Valutazioni"; -App::$strings["Website:"] = "Sito web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; -App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; -App::$strings["Submit"] = "Salva"; -App::$strings["Public Hubs"] = "Hub pubblici"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; -App::$strings["Hub URL"] = "URL del hub"; -App::$strings["Access Type"] = "Tipo di accesso"; -App::$strings["Registration Policy"] = "Politica di registrazione"; -App::$strings["Stats"] = "Statistiche"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valutazioni"; -App::$strings["Rate"] = "Valuta"; -App::$strings["Location"] = "Posizione geografica"; -App::$strings["View"] = "Guarda"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; -App::$strings["Passwords do not match."] = "Le password non corrispondono."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; -App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; -App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; -App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; -App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; -App::$strings["
    Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -App::$strings["Terms of Service"] = "Condizioni d'Uso"; -App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; -App::$strings["Your email address"] = "Il tuo indirizzo email"; -App::$strings["Choose a password"] = "Scegli una password"; -App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; -App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; -App::$strings["Name or caption"] = "Nome o titolo"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; -App::$strings["Choose a short nickname"] = "Scegli un nome breve"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; -App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; -App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; -App::$strings["no"] = "no"; -App::$strings["yes"] = "sì"; -App::$strings["Registration"] = "Registrazione"; -App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; -App::$strings["Register"] = "Registrati"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare."; -App::$strings["Bookmark added"] = "Segnalibro aggiunto"; -App::$strings["My Bookmarks"] = "I miei segnalibri"; -App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; -App::$strings["Public access denied."] = "Accesso pubblico negato."; -App::$strings["Item not found."] = "Elemento non trovato."; -App::$strings["Photos"] = "Foto"; -App::$strings["Cancel"] = "Annulla"; -App::$strings["Invalid item."] = "Elemento non valido."; -App::$strings["Channel not found."] = "Canale non trovato."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Salva nella cartella:"; -App::$strings["- select -"] = "- scegli -"; -App::$strings["Save"] = "Salva"; -App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; -App::$strings["No such channel"] = "Canale sconosciuto"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Cerca risultati con:"; -App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; -App::$strings["Privacy group: "] = "Gruppo di canali:"; -App::$strings["Invalid connection."] = "Contatto non valido."; -App::$strings["Blocked"] = "Bloccati"; -App::$strings["Ignored"] = "Ignorati"; -App::$strings["Hidden"] = "Nascosti"; -App::$strings["Archived"] = "Archiviati"; -App::$strings["New"] = "Novità"; -App::$strings["All"] = "Tutti"; -App::$strings["New Connections"] = "Nuovi contatti"; -App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; -App::$strings["All Connections"] = "Tutti i contatti"; -App::$strings["Show all connections"] = "Mostra tutti i contatti"; -App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; -App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; -App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; -App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; -App::$strings["Pending approval"] = "In attesa di conferma"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifica il contatto"; -App::$strings["Delete connection"] = "Elimina il contatto"; -App::$strings["Channel address"] = "Indirizzo del canale"; -App::$strings["Network"] = "Network"; -App::$strings["Status"] = "Stato"; -App::$strings["Connected"] = "In contatto"; -App::$strings["Approve connection"] = "Approva questo contatto"; -App::$strings["Approve"] = "Approva"; -App::$strings["Ignore connection"] = "Ignora il contatto"; -App::$strings["Ignore"] = "Ignora"; -App::$strings["Recent activity"] = "Attività recenti"; -App::$strings["Connections"] = "Contatti"; -App::$strings["Search"] = "Cerca"; -App::$strings["Search your connections"] = "Cerca tra i contatti"; -App::$strings["Connections search"] = "Ricerca tra i contatti"; -App::$strings["Find"] = "Cerca"; -App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -App::$strings["Cover Photos"] = "Copertine del canale"; -App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; -App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; -App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; -App::$strings["female"] = "femmina"; -App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["male"] = "maschio"; -App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["cover photo"] = "Copertina del canale"; -App::$strings["Photo not available."] = "Foto non disponibile."; -App::$strings["Upload File:"] = "Carica un file:"; -App::$strings["Select a profile:"] = "Seleziona un profilo:"; -App::$strings["Upload Cover Photo"] = "Carica una copertina"; -App::$strings["or"] = "o"; -App::$strings["skip this step"] = "salta questo passaggio"; -App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -App::$strings["Crop Image"] = "Ritaglia immagine"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; -App::$strings["Done Editing"] = "Modifica terminata"; App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; @@ -243,6 +99,7 @@ App::$strings["Your account email address must match this in order to use the we App::$strings["Website URL"] = "URL completo del sito"; App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub"; +App::$strings["Submit"] = "Salva"; App::$strings["Basic/Minimal Social Networking"] = "Social network basilare"; App::$strings["Standard Configuration (default)"] = "Configurazione standard (predefinita)"; App::$strings["Professional"] = "Professionale"; @@ -306,117 +163,53 @@ App::$strings["The database configuration file \".htconfig.php\" could not be wr App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; App::$strings["

    What next

    "] = "

    I prossimi passi

    "; App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; -App::$strings["%d rating"] = array( - 0 => "%d valutazione", - 1 => "%d valutazioni", -); -App::$strings["Gender: "] = "Sesso:"; -App::$strings["Status: "] = "Stato:"; -App::$strings["Homepage: "] = "Homepage:"; -App::$strings["Age:"] = "Età:"; -App::$strings["Location:"] = "Luogo:"; -App::$strings["Description:"] = "Descrizione:"; -App::$strings["Hometown:"] = "Città dove vivo:"; -App::$strings["About:"] = "Informazioni:"; -App::$strings["Connect"] = "Aggiungi"; -App::$strings["Public Forum:"] = "Forum pubblico:"; -App::$strings["Keywords: "] = "Parole chiave:"; -App::$strings["Don't suggest"] = "Non fornire suggerimenti"; -App::$strings["Common connections:"] = "Contatti in comune:"; -App::$strings["Global Directory"] = "Elenchi pubblici globali"; -App::$strings["Local Directory"] = "Elenco canali su questo hub"; -App::$strings["Finding:"] = "Ricerca:"; -App::$strings["Channel Suggestions"] = "Canali suggeriti"; -App::$strings["next page"] = "pagina successiva"; -App::$strings["previous page"] = "pagina precedente"; -App::$strings["Sort options"] = "Opzioni di ordinamento"; -App::$strings["Alphabetic"] = "Alfabetico"; -App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; -App::$strings["Newest to Oldest"] = "Prima i più recenti"; -App::$strings["Oldest to Newest"] = "Prima i più vecchi"; -App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; -App::$strings["This site is not a directory server"] = "Questo non è un directory server"; -App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; -App::$strings["Item not found"] = "Elemento non trovato"; -App::$strings["Block Name"] = "Nome del block"; -App::$strings["Insert web link"] = "Inserisci un indirizzo web"; -App::$strings["Title (optional)"] = "Titolo (facoltativo)"; -App::$strings["Edit Block"] = "Modifica il block"; -App::$strings["Layout Name"] = "Nome layout"; -App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; -App::$strings["Edit Layout"] = "Modifica il layout"; -App::$strings["Page link"] = "Link alla pagina"; -App::$strings["Edit Webpage"] = "Modifica la pagina web"; -App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; -App::$strings["Unable to create menu."] = "Impossibile creare il menù."; -App::$strings["Menu Name"] = "Nome del menu"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; -App::$strings["Menu Title"] = "Titolo del menu"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; -App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; -App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; -App::$strings["Submit and proceed"] = "Salva e procedi"; -App::$strings["Menus"] = "Menù"; -App::$strings["Drop"] = "Elimina"; -App::$strings["Created"] = "Creato"; -App::$strings["Edited"] = "Modificato"; -App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; -App::$strings["Delete this menu"] = "Elimina questo menù"; -App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; -App::$strings["Edit this menu"] = "Modifica questo menù"; -App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; -App::$strings["Menu not found."] = "Menù non trovato."; -App::$strings["Edit Menu"] = "Modifica menù"; -App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; -App::$strings["Menu name"] = "Nome del menù"; -App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; -App::$strings["Menu title"] = "Titolo del menù"; -App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; -App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; -App::$strings["Not found."] = "Non trovato."; -App::$strings["App installed."] = "App installata"; -App::$strings["Malformed app."] = "L'app contiene errori"; -App::$strings["Embed code"] = "Inserisci il codice"; -App::$strings["Edit App"] = "Modifica app"; -App::$strings["Create App"] = "Crea una app"; -App::$strings["Name of app"] = "Nome app"; -App::$strings["Required"] = "Obbligatorio"; -App::$strings["Location (URL) of app"] = "Indirizzo (URL) della app"; -App::$strings["Description"] = "Descrizione"; -App::$strings["Photo icon URL"] = "URL icona"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; -App::$strings["Categories (optional, comma separated list)"] = "Categorie (facoltative, lista separata da virgole)"; -App::$strings["Version ID"] = "ID versione"; -App::$strings["Price of app"] = "Prezzo app"; -App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; -App::$strings["Documentation Search"] = "Ricerca nella guida"; -App::$strings["Help:"] = "Guida:"; -App::$strings["Help"] = "Guida"; -App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; -App::$strings["Item not available."] = "Elemento non disponibile."; -App::$strings["Layout updated."] = "Layout aggiornato."; -App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; -App::$strings["Layout not found."] = "Layout non trovato."; -App::$strings["Module Name:"] = "Nome del modulo:"; -App::$strings["Layout Help"] = "Guida al layout"; -App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; -App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; -App::$strings["Visible to:"] = "Visibile a:"; -App::$strings["Permission Denied."] = "Permesso negato."; -App::$strings["File not found."] = "File non trovato."; -App::$strings["Edit file permissions"] = "Modifica i permessi del file"; -App::$strings["Permissions"] = "Permessi"; -App::$strings["Set/edit permissions"] = "Modifica i permessi"; -App::$strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; -App::$strings["Return to file list"] = "Torna all'elenco dei file"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un post"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; -App::$strings["Share this file"] = "Condividi questo file"; -App::$strings["Show URL to this file"] = "Mostra l'URL del file"; -App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; +App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; +App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; +App::$strings["No such channel"] = "Canale sconosciuto"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Cerca risultati con:"; +App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; +App::$strings["Privacy group: "] = "Gruppo di canali:"; +App::$strings["Invalid connection."] = "Contatto non valido."; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; +App::$strings["Passwords do not match."] = "Le password non corrispondono."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; +App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; +App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; +App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; +App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; +App::$strings["Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +App::$strings["Terms of Service"] = "Condizioni d'Uso"; +App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; +App::$strings["Your email address"] = "Il tuo indirizzo email"; +App::$strings["Choose a password"] = "Scegli una password"; +App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; +App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; +App::$strings["Name or caption"] = "Nome o titolo"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; +App::$strings["Choose a short nickname"] = "Scegli un nome breve"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; +App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; +App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; +App::$strings["no"] = "no"; +App::$strings["yes"] = "sì"; +App::$strings["Registration"] = "Registrazione"; +App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; +App::$strings["Register"] = "Registrati"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare."; +App::$strings["Authorize application connection"] = "Autorizza la app"; +App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; +App::$strings["Please login to continue."] = "Accedi al sito per continuare."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; +App::$strings["Yes"] = "Sì"; +App::$strings["No"] = "No"; +App::$strings["Bookmark added"] = "Segnalibro aggiunto"; +App::$strings["My Bookmarks"] = "I miei segnalibri"; +App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; App::$strings["Name is required"] = "Il nome è obbligatorio"; App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; App::$strings["Update"] = "Aggiorna"; @@ -426,6 +219,7 @@ App::$strings["Token saved."] = "Token salvato."; App::$strings["Not valid email."] = "Email non valida."; App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; +App::$strings["Technical skill level updated"] = "Livello tecnico aggiornato"; App::$strings["Password verification failed."] = "Verifica della password fallita."; App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; @@ -434,6 +228,7 @@ App::$strings["Password update failed. Please try again."] = "Modifica password App::$strings["Friends"] = "Amici"; App::$strings["Settings updated."] = "Impostazioni aggiornate."; App::$strings["Add application"] = "Aggiungi una app"; +App::$strings["Cancel"] = "Annulla"; App::$strings["Name of application"] = "Nome dell'applicazione"; App::$strings["Consumer Key"] = "Consumer Key"; App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; @@ -449,15 +244,23 @@ App::$strings["No name"] = "Nessun nome"; App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; +App::$strings["Beginner/Basic"] = "Principiante"; +App::$strings["Novice - not skilled but willing to learn"] = "Novizio - disposto a imparare"; +App::$strings["Intermediate - somewhat comfortable"] = "Intermedio - con alcune conoscenze tecniche"; +App::$strings["Advanced - very comfortable"] = "Avanzato - a mio agio con gli aspetti tecnici"; +App::$strings["Expert - I can write computer code"] = "Esperto - posso scrivere codice"; +App::$strings["Wizard - I probably know more than you do"] = "Genio - probabilmente ne so più di te"; App::$strings["Account Settings"] = "Il tuo account"; App::$strings["Current Password"] = "Password attuale"; App::$strings["Enter New Password"] = "Nuova password"; App::$strings["Confirm New Password"] = "Conferma la nuova password"; App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; +App::$strings["Your technical skill level"] = "Il tuo livello tecnico"; +App::$strings["Used to provide a member experience matched to your comfort level"] = "Serve a vedere solo gli aspetti tecnici che possano metterti a tuo agio"; App::$strings["Email Address:"] = "Indirizzo email:"; App::$strings["Remove Account"] = "Elimina l'account"; App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; App::$strings["Login Name"] = "Nome utente"; @@ -508,6 +311,7 @@ App::$strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso"; App::$strings["Anybody on the internet"] = "Chiunque su internet"; App::$strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito negli elenchi pubblici dei canali"; App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; +App::$strings["or"] = "o"; App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è"; App::$strings["Channel Settings"] = "Impostazioni del canale"; App::$strings["Basic Settings"] = "Impostazioni di base"; @@ -529,7 +333,7 @@ App::$strings["Private - default private, never open or public"] = "Pri App::$strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; App::$strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi post"; App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; -App::$strings["Advanced Privacy Settings"] = "Impostazioni di privacy avanzate"; +App::$strings["Channel Permission Limits"] = "Limiti sui permessi del canale"; App::$strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; App::$strings["0 or blank to use the website limit."] = "0 o vuoto per usare i valori predefiniti."; App::$strings["This website expires after %d days."] = "Per questo sito la scadenza è %d giorni. "; @@ -537,7 +341,7 @@ App::$strings["This website does not expire imported content."] = "I contenuti d App::$strings["The website limit takes precedence if lower than your limit."] = "Il limite del server ha la precedenza, se minore di quello impostato da te."; App::$strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; App::$strings["May reduce spam activity"] = "Serve a ridurre lo spam"; -App::$strings["Default Post and Publish Permissions"] = "Permessi predefiniti per postare e pubblicare"; +App::$strings["Default Access Control List (ACL)"] = "Lista di accesso ai contenuti (ACL)"; App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; App::$strings["Use my default audience setting for the type of object published"] = "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto"; App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; @@ -576,7 +380,6 @@ App::$strings["Notify me of events this many days in advance"] = "Giorni di anti App::$strings["Must be greater than 0"] = "Maggiore di 0"; App::$strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; App::$strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)"; App::$strings["Miscellaneous Settings"] = "Impostazioni varie"; App::$strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate"; App::$strings["%Y - current year, %m - current month"] = "%Y - anno corrente, %m - mese corrente"; @@ -586,199 +389,15 @@ App::$strings["Remove Channel"] = "Elimina questo canale"; App::$strings["Remove this channel."] = "Elimina questo canale."; App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; App::$strings["Start calendar week on monday"] = "La settimana inizia il lunedì"; -App::$strings["network"] = "rete"; -App::$strings["RSS"] = "RSS"; -App::$strings["Privacy group created."] = "Gruppo di canali creato."; -App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; -App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; -App::$strings["Privacy group updated."] = "Gruppo di canali aggiornato."; -App::$strings["Create a group of channels."] = "Crea un gruppo di canali."; -App::$strings["Privacy group name: "] = "Nome del gruppo di canali:"; -App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo"; -App::$strings["Privacy group removed."] = "Gruppo di canali rimosso."; -App::$strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali."; -App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; -App::$strings["Members"] = "Membri"; -App::$strings["All Connected Channels"] = "Tutti i canali connessi"; -App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; -App::$strings["Profile Photos"] = "Foto del profilo"; -App::$strings["Album not found."] = "Album non trovato."; -App::$strings["Delete Album"] = "Elimina album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file "; -App::$strings["Delete Photo"] = "Elimina foto"; -App::$strings["No photos selected"] = "Nessuna foto selezionata"; -App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; -App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; -App::$strings["Upload Photos"] = "Carica foto"; -App::$strings["Enter an album name"] = "Scegli il nome dell'album"; -App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; -App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; -App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; -App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; -App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; -App::$strings["Contact Photos"] = "Foto dei contatti"; -App::$strings["Show Newest First"] = "Prima i più recenti"; -App::$strings["Show Oldest First"] = "Prima i più vecchi"; -App::$strings["View Photo"] = "Guarda la foto"; -App::$strings["Edit Album"] = "Modifica album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; -App::$strings["Photo not available"] = "Foto non disponibile"; -App::$strings["Use as profile photo"] = "Usa come foto del profilo"; -App::$strings["Use as cover photo"] = "Usa come copertina del canale"; -App::$strings["Private Photo"] = "Foto privata"; -App::$strings["Previous"] = "Precendente"; -App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; -App::$strings["Remove"] = "Rimuovi"; -App::$strings["Edit photo"] = "Modifica la foto"; -App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; -App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; -App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; -App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; -App::$strings["Caption"] = "Didascalia"; -App::$strings["Add a Tag"] = "Aggiungi tag"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; -App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; -App::$strings["Share"] = "Condividi"; -App::$strings["Please wait"] = "Attendere"; -App::$strings["This is you"] = "Questo sei tu"; -App::$strings["Comment"] = "Commento"; -App::$strings["Preview"] = "Anteprima"; -App::$strings["__ctx:title__ Likes"] = "Mi piace"; -App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; -App::$strings["__ctx:title__ Agree"] = "D'accordo"; -App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; -App::$strings["__ctx:title__ Abstain"] = "Astenuti"; -App::$strings["__ctx:title__ Attending"] = "Partecipano"; -App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; -App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; -App::$strings["View all"] = "Vedi tutto"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); -App::$strings["Photo Tools"] = "Gestione foto"; -App::$strings["In This Photo:"] = "In questa foto:"; -App::$strings["Map"] = "Mappa"; -App::$strings["__ctx:noun__ Likes"] = "Mi piace"; -App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; -App::$strings["Close"] = "Chiudi"; -App::$strings["View Album"] = "Guarda l'album"; -App::$strings["Recent Photos"] = "Foto recenti"; -App::$strings["webpage"] = "pagina web"; -App::$strings["block"] = "block"; -App::$strings["layout"] = "layout"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s elemento installato"; -App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; -App::$strings["Nothing to import."] = "Non c'è niente da importare."; -App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; -App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; -App::$strings["Import completed"] = "Importazione completata"; -App::$strings["Import Items"] = "Importa i contenuti"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; -App::$strings["File to Upload"] = "File da caricare"; -App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; -App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; -App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; -App::$strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -App::$strings["Send invitations"] = "Spedisci inviti"; -App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -App::$strings["Your message:"] = "Il tuo messaggio:"; -App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; -App::$strings["or visit"] = "oppure visita"; -App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; -App::$strings["Location not found."] = "Indirizzo non trovato."; -App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; -App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; -App::$strings["No locations found."] = "Nessun indirizzo trovato."; -App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; -App::$strings["Address"] = "Indirizzo"; -App::$strings["Primary"] = "Primario"; -App::$strings["Sync Now"] = "Sincronizza ora"; -App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; -App::$strings["Hub not found."] = "Hub non trovato."; -App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; -App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; -App::$strings["Invalid request."] = "Richiesta non valida."; -App::$strings["channel"] = "il canale"; -App::$strings["thing"] = "Oggetto"; -App::$strings["Channel unavailable."] = "Canale non trovato."; -App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; -App::$strings["photo"] = "la foto"; -App::$strings["status"] = "il messaggio di stato"; -App::$strings["event"] = "l'evento"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; -App::$strings["Action completed."] = "Comando completato."; -App::$strings["Thank you."] = "Grazie."; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -App::$strings["Create a new channel"] = "Crea un nuovo canale"; -App::$strings["Create New"] = "Crea nuova"; -App::$strings["Channel Manager"] = "Gestione canali"; -App::$strings["Current Channel"] = "Canale attuale"; -App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; -App::$strings["Default Channel"] = "Canale predefinito"; -App::$strings["Make Default"] = "Rendi predefinito"; -App::$strings["%d new messages"] = "%d nuovi messaggi"; -App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; -App::$strings["Delegated Channel"] = "Canale delegato"; -App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; -App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; -App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; -App::$strings["Menu Item Permissions"] = "Permessi del menu"; -App::$strings["Link Name"] = "Nome link"; -App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; -App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; -App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; -App::$strings["Order in list"] = "Ordine dell'elenco"; -App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; -App::$strings["Submit and finish"] = "Salva e termina"; -App::$strings["Submit and continue"] = "Salva e continua"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Destinazione link"; -App::$strings["Edit menu"] = "Modifica il menù"; -App::$strings["Edit element"] = "Modifica l'elemento"; -App::$strings["Drop element"] = "Elimina l'elemento"; -App::$strings["New element"] = "Nuovo elemento"; -App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; -App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; -App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; -App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; -App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; -App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; -App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; -App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; -App::$strings["Link text"] = "Testo del link"; +App::$strings["Photos"] = "Foto"; +App::$strings["Invalid item."] = "Elemento non valido."; +App::$strings["Channel not found."] = "Canale non trovato."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Salva nella cartella:"; +App::$strings["- select -"] = "- scegli -"; +App::$strings["Save"] = "Salva"; App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; +App::$strings["Item not found."] = "Elemento non trovato."; App::$strings["# Accounts"] = "# account"; App::$strings["# blocked accounts"] = "# account bloccati"; App::$strings["# expired accounts"] = "# account scaduti"; @@ -837,10 +456,6 @@ App::$strings["Accounts abandoned after x days"] = "Account abbandonati dopo X g App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; App::$strings["Allowed friend domains"] = "Domini fidati e consentiti"; App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; -App::$strings["Allowed email domains"] = "Domini email consentiti"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; -App::$strings["Not allowed email domains"] = "Domini email non consentiti"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; App::$strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; App::$strings["Force publish"] = "Forza la publicazione del profilo"; @@ -873,6 +488,7 @@ App::$strings["No server found"] = "Server non trovato"; App::$strings["ID"] = "ID"; App::$strings["for channel"] = "per il canale"; App::$strings["on server"] = "sul server"; +App::$strings["Status"] = "Stato"; App::$strings["Server"] = "Server"; App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura."; App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:"; @@ -883,8 +499,12 @@ App::$strings["Block public"] = "Blocca pagine pubbliche"; App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; App::$strings["Set \"Transport Security\" HTTP header"] = "Imposta il \"Transport Security\" HTTP header"; App::$strings["Set \"Content Security Policy\" HTTP header"] = "Imposta il \"Content Security Policy\" HTTP header"; -App::$strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti"; +App::$strings["Allowed email domains"] = "Domini email consentiti"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; +App::$strings["Not allowed email domains"] = "Domini email non consentiti"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; +App::$strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti"; App::$strings["Block communications from these sites"] = "Blocca la comunicazione da questi siti"; App::$strings["Allow communications only from these channels"] = "Permetti la comunicazione solo da questi canali"; App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali"; @@ -927,6 +547,7 @@ App::$strings["Registrations waiting for confirm"] = "Registrazioni in attesa di App::$strings["Request date"] = "Data richiesta"; App::$strings["Email"] = "Email"; App::$strings["No registrations."] = "Nessuna registrazione."; +App::$strings["Approve"] = "Approva"; App::$strings["Deny"] = "Nega"; App::$strings["Block"] = "Blocca"; App::$strings["Unblock"] = "Sblocca"; @@ -941,84 +562,462 @@ App::$strings["%s channel censored/uncensored"] = array( 0 => "Censura modificata per %s canale", 1 => "Censura modificata per %s canali", ); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s canale permette/non permette codice nei contenuti", - 1 => "%s canali permettono/non permettono codice nei contenuti", +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "%s canale permette/non permette codice nei contenuti", + 1 => "%s canali permettono/non permettono codice nei contenuti", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s canale è stato rimosso", + 1 => "%s canali sono stati rimossi", +); +App::$strings["Channel not found"] = "Canale non trovato"; +App::$strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; +App::$strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; +App::$strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; +App::$strings["Channel '%s' code allowed"] = "Il canale '%s' permette codice nei contenuti"; +App::$strings["Channel '%s' code disallowed"] = "Il canale '%s' non permette codice nei contenuti"; +App::$strings["Channels"] = "Canali"; +App::$strings["Censor"] = "Applica censura"; +App::$strings["Uncensor"] = "Rimuovi censura"; +App::$strings["Allow Code"] = "Permetti codice"; +App::$strings["Disallow Code"] = "Non permettere codice"; +App::$strings["Channel"] = "Canale"; +App::$strings["UID"] = "UID"; +App::$strings["Address"] = "Indirizzo"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +App::$strings["Plugin %s disabled."] = "Plugin %s non attivo."; +App::$strings["Plugin %s enabled."] = "Plugin %s attivo."; +App::$strings["Disable"] = "Disattiva"; +App::$strings["Enable"] = "Attiva"; +App::$strings["Plugins"] = "Plugin"; +App::$strings["Toggle"] = "Attiva/disattiva"; +App::$strings["Settings"] = "Impostazioni"; +App::$strings["Author: "] = "Autore:"; +App::$strings["Maintainer: "] = "Gestore:"; +App::$strings["Minimum project version: "] = "Minima versione hubzilla"; +App::$strings["Maximum project version: "] = "Massima versione hubzilla"; +App::$strings["Minimum PHP version: "] = "Minima versione PHP:"; +App::$strings["Compatible Server Roles: "] = "Ruoli compatibili per questo server"; +App::$strings["Requires: "] = "Necessita di:"; +App::$strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione"; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Inserisci lo URL del repository git dei plugin."; +App::$strings["Plugin repo git URL"] = "URL git del repository del plugin"; +App::$strings["Custom repo name"] = "Nome repository personalizzato"; +App::$strings["(optional)"] = "(facoltativo)"; +App::$strings["Download Plugin Repo"] = "Scarica il repository del plugin"; +App::$strings["Install new repo"] = "Installa un nuovo repository"; +App::$strings["Install"] = "Installa"; +App::$strings["Manage Repos"] = "Gestisci i repository"; +App::$strings["Installed Plugin Repositories"] = "Repository per i plugin installati"; +App::$strings["Install a New Plugin Repository"] = "Installa un nuovo repository per i plugin"; +App::$strings["Switch branch"] = "Cambia branch"; +App::$strings["Remove"] = "Rimuovi"; +App::$strings["No themes found."] = "Nessun tema trovato."; +App::$strings["Screenshot"] = "Istantanea dello schermo"; +App::$strings["Themes"] = "Temi"; +App::$strings["[Experimental]"] = "[Sperimentale]"; +App::$strings["[Unsupported]"] = "[Non supportato]"; +App::$strings["Log settings updated."] = "Impostazioni di log aggiornate."; +App::$strings["Logs"] = "Log"; +App::$strings["Clear"] = "Pulisci"; +App::$strings["Debugging"] = "Debugging"; +App::$strings["Log file"] = "File di log"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Relativo alla directory base del server web. Deve essere scrivibile."; +App::$strings["Log level"] = "Livello di log"; +App::$strings["New Profile Field"] = "Nuovo campo del profilo"; +App::$strings["Field nickname"] = "Nome breve del campo"; +App::$strings["System name of field"] = "Nome di sistema del campo"; +App::$strings["Input type"] = "Tipo di dati"; +App::$strings["Field Name"] = "Nome del campo"; +App::$strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo"; +App::$strings["Help text"] = "Testo di aiuto"; +App::$strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)"; +App::$strings["Field definition not found"] = "Impossibile trovare la definizione del campo"; +App::$strings["Edit Profile Field"] = "Modifica campo del profilo"; +App::$strings["Profile Fields"] = "Campi del profilo"; +App::$strings["Basic Profile Fields"] = "Campi base del profilo"; +App::$strings["Advanced Profile Fields"] = "Campi avanzati del profilo"; +App::$strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base)"; +App::$strings["All available fields"] = "Tutti i campi disponibili"; +App::$strings["Custom Fields"] = "Campi personalizzati"; +App::$strings["Create Custom Field"] = "Aggiungi campo personalizzato"; +App::$strings["Blocked"] = "Bloccati"; +App::$strings["Ignored"] = "Ignorati"; +App::$strings["Hidden"] = "Nascosti"; +App::$strings["Archived"] = "Archiviati"; +App::$strings["New"] = "Novità"; +App::$strings["All"] = "Tutti"; +App::$strings["New Connections"] = "Nuovi contatti"; +App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; +App::$strings["All Connections"] = "Tutti i contatti"; +App::$strings["Show all connections"] = "Mostra tutti i contatti"; +App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; +App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; +App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; +App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; +App::$strings["Pending approval"] = "In attesa di conferma"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Modifica il contatto"; +App::$strings["Delete connection"] = "Elimina il contatto"; +App::$strings["Channel address"] = "Indirizzo del canale"; +App::$strings["Network"] = "Network"; +App::$strings["Connected"] = "In contatto"; +App::$strings["Approve connection"] = "Approva questo contatto"; +App::$strings["Ignore connection"] = "Ignora il contatto"; +App::$strings["Ignore"] = "Ignora"; +App::$strings["Recent activity"] = "Attività recenti"; +App::$strings["Connections"] = "Contatti"; +App::$strings["Search"] = "Cerca"; +App::$strings["Search your connections"] = "Cerca tra i contatti"; +App::$strings["Connections search"] = "Ricerca tra i contatti"; +App::$strings["Find"] = "Cerca"; +App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +App::$strings["Cover Photos"] = "Copertine del canale"; +App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; +App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; +App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +App::$strings["female"] = "femmina"; +App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["male"] = "maschio"; +App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["cover photo"] = "Copertina del canale"; +App::$strings["Photo not available."] = "Foto non disponibile."; +App::$strings["Upload File:"] = "Carica un file:"; +App::$strings["Select a profile:"] = "Seleziona un profilo:"; +App::$strings["Upload Cover Photo"] = "Carica una copertina"; +App::$strings["skip this step"] = "salta questo passaggio"; +App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +App::$strings["Crop Image"] = "Ritaglia immagine"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; +App::$strings["Done Editing"] = "Modifica terminata"; +App::$strings["Invalid message"] = "Messaggio non valido"; +App::$strings["no results"] = "nessun risultato"; +App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; +App::$strings["queued"] = "in coda"; +App::$strings["posted"] = "inviato"; +App::$strings["accepted for delivery"] = "accettato per la spedizione"; +App::$strings["updated"] = "aggiornato"; +App::$strings["update ignored"] = "aggiornamento ignorato"; +App::$strings["permission denied"] = "permessi non sufficienti"; +App::$strings["recipient not found"] = "Destinatario non trovato"; +App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; +App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; +App::$strings["mail delivered"] = "messaggio recapitato"; +App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; +App::$strings["Options"] = "Opzioni"; +App::$strings["Redeliver"] = "Reinvia"; +App::$strings["Public access denied."] = "Accesso pubblico negato."; +App::$strings["%d rating"] = array( + 0 => "%d valutazione", + 1 => "%d valutazioni", +); +App::$strings["Gender: "] = "Sesso:"; +App::$strings["Status: "] = "Stato:"; +App::$strings["Homepage: "] = "Homepage:"; +App::$strings["Age:"] = "Età:"; +App::$strings["Location:"] = "Luogo:"; +App::$strings["Description:"] = "Descrizione:"; +App::$strings["Hometown:"] = "Città dove vivo:"; +App::$strings["About:"] = "Informazioni:"; +App::$strings["Connect"] = "Aggiungi"; +App::$strings["Public Forum:"] = "Forum pubblico:"; +App::$strings["Keywords: "] = "Parole chiave:"; +App::$strings["Don't suggest"] = "Non fornire suggerimenti"; +App::$strings["Common connections:"] = "Contatti in comune:"; +App::$strings["Global Directory"] = "Elenchi pubblici globali"; +App::$strings["Local Directory"] = "Elenco canali su questo hub"; +App::$strings["Finding:"] = "Ricerca:"; +App::$strings["Channel Suggestions"] = "Canali suggeriti"; +App::$strings["next page"] = "pagina successiva"; +App::$strings["previous page"] = "pagina precedente"; +App::$strings["Sort options"] = "Opzioni di ordinamento"; +App::$strings["Alphabetic"] = "Alfabetico"; +App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; +App::$strings["Newest to Oldest"] = "Prima i più recenti"; +App::$strings["Oldest to Newest"] = "Prima i più vecchi"; +App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; +App::$strings["This site is not a directory server"] = "Questo non è un directory server"; +App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; +App::$strings["Item not found"] = "Elemento non trovato"; +App::$strings["Block Name"] = "Nome del block"; +App::$strings["Insert web link"] = "Inserisci un indirizzo web"; +App::$strings["Title (optional)"] = "Titolo (facoltativo)"; +App::$strings["Edit Block"] = "Modifica il block"; +App::$strings["Layout Name"] = "Nome layout"; +App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; +App::$strings["Edit Layout"] = "Modifica il layout"; +App::$strings["Page link"] = "Link alla pagina"; +App::$strings["Edit Webpage"] = "Modifica la pagina web"; +App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; +App::$strings["Unable to create menu."] = "Impossibile creare il menù."; +App::$strings["Menu Name"] = "Nome del menu"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; +App::$strings["Menu Title"] = "Titolo del menu"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; +App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; +App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; +App::$strings["Submit and proceed"] = "Salva e procedi"; +App::$strings["Menus"] = "Menù"; +App::$strings["Drop"] = "Elimina"; +App::$strings["Created"] = "Creato"; +App::$strings["Edited"] = "Modificato"; +App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; +App::$strings["Delete this menu"] = "Elimina questo menù"; +App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; +App::$strings["Edit this menu"] = "Modifica questo menù"; +App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; +App::$strings["Menu not found."] = "Menù non trovato."; +App::$strings["Edit Menu"] = "Modifica menù"; +App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; +App::$strings["Menu name"] = "Nome del menù"; +App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; +App::$strings["Menu title"] = "Titolo del menù"; +App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; +App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; +App::$strings["Not found."] = "Non trovato."; +App::$strings["App installed."] = "App installata"; +App::$strings["Malformed app."] = "L'app contiene errori"; +App::$strings["Embed code"] = "Inserisci il codice"; +App::$strings["Edit App"] = "Modifica app"; +App::$strings["Create App"] = "Crea una app"; +App::$strings["Name of app"] = "Nome app"; +App::$strings["Required"] = "Obbligatorio"; +App::$strings["Location (URL) of app"] = "Indirizzo (URL) della app"; +App::$strings["Description"] = "Descrizione"; +App::$strings["Photo icon URL"] = "URL icona"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; +App::$strings["Categories (optional, comma separated list)"] = "Categorie (facoltative, lista separata da virgole)"; +App::$strings["Version ID"] = "ID versione"; +App::$strings["Price of app"] = "Prezzo app"; +App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; +App::$strings["Edit post"] = "Modifica post"; +App::$strings["Item not available."] = "Elemento non disponibile."; +App::$strings["Layout updated."] = "Layout aggiornato."; +App::$strings["Feature disabled."] = "Funzionalità disattivata."; +App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; +App::$strings["Layout not found."] = "Layout non trovato."; +App::$strings["Module Name:"] = "Nome del modulo:"; +App::$strings["Layout Help"] = "Guida al layout"; +App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; +App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; +App::$strings["Visible to:"] = "Visibile a:"; +App::$strings["Permission Denied."] = "Permesso negato."; +App::$strings["File not found."] = "File non trovato."; +App::$strings["Edit file permissions"] = "Modifica i permessi del file"; +App::$strings["Permissions"] = "Permessi"; +App::$strings["Set/edit permissions"] = "Modifica i permessi"; +App::$strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; +App::$strings["Return to file list"] = "Torna all'elenco dei file"; +App::$strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un post"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; +App::$strings["Share this file"] = "Condividi questo file"; +App::$strings["Show URL to this file"] = "Mostra l'URL del file"; +App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; +App::$strings["network"] = "rete"; +App::$strings["RSS"] = "RSS"; +App::$strings["Privacy group created."] = "Gruppo di canali creato."; +App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; +App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; +App::$strings["Privacy group updated."] = "Gruppo di canali aggiornato."; +App::$strings["Create a group of channels."] = "Crea un gruppo di canali."; +App::$strings["Privacy group name: "] = "Nome del gruppo di canali:"; +App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo"; +App::$strings["Privacy group removed."] = "Gruppo di canali rimosso."; +App::$strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali."; +App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; +App::$strings["Members"] = "Membri"; +App::$strings["All Connected Channels"] = "Tutti i canali connessi"; +App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; +App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; +App::$strings["Profile Photos"] = "Foto del profilo"; +App::$strings["Album not found."] = "Album non trovato."; +App::$strings["Delete Album"] = "Elimina album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file "; +App::$strings["Delete Photo"] = "Elimina foto"; +App::$strings["No photos selected"] = "Nessuna foto selezionata"; +App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; +App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; +App::$strings["Upload Photos"] = "Carica foto"; +App::$strings["Enter an album name"] = "Scegli il nome dell'album"; +App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; +App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; +App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; +App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; +App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; +App::$strings["Contact Photos"] = "Foto dei contatti"; +App::$strings["Show Newest First"] = "Prima i più recenti"; +App::$strings["Show Oldest First"] = "Prima i più vecchi"; +App::$strings["View Photo"] = "Guarda la foto"; +App::$strings["Edit Album"] = "Modifica album"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; +App::$strings["Photo not available"] = "Foto non disponibile"; +App::$strings["Use as profile photo"] = "Usa come foto del profilo"; +App::$strings["Use as cover photo"] = "Usa come copertina del canale"; +App::$strings["Private Photo"] = "Foto privata"; +App::$strings["Previous"] = "Precendente"; +App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; +App::$strings["Edit photo"] = "Modifica la foto"; +App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; +App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; +App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; +App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; +App::$strings["Caption"] = "Didascalia"; +App::$strings["Add a Tag"] = "Aggiungi tag"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; +App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; +App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; +App::$strings["Share"] = "Condividi"; +App::$strings["Please wait"] = "Attendere"; +App::$strings["This is you"] = "Questo sei tu"; +App::$strings["Comment"] = "Commento"; +App::$strings["Preview"] = "Anteprima"; +App::$strings["__ctx:title__ Likes"] = "Mi piace"; +App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; +App::$strings["__ctx:title__ Agree"] = "D'accordo"; +App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; +App::$strings["__ctx:title__ Abstain"] = "Astenuti"; +App::$strings["__ctx:title__ Attending"] = "Partecipano"; +App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; +App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; +App::$strings["View all"] = "Vedi tutto"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", ); -App::$strings["%s channel deleted"] = array( - 0 => "%s canale è stato rimosso", - 1 => "%s canali sono stati rimossi", +App::$strings["Photo Tools"] = "Gestione foto"; +App::$strings["In This Photo:"] = "In questa foto:"; +App::$strings["Map"] = "Mappa"; +App::$strings["__ctx:noun__ Likes"] = "Mi piace"; +App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; +App::$strings["Close"] = "Chiudi"; +App::$strings["View Album"] = "Guarda l'album"; +App::$strings["Recent Photos"] = "Foto recenti"; +App::$strings["webpage"] = "pagina web"; +App::$strings["block"] = "block"; +App::$strings["layout"] = "layout"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s elemento installato"; +App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; +App::$strings["Nothing to import."] = "Non c'è niente da importare."; +App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; +App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; +App::$strings["Import completed"] = "Importazione completata"; +App::$strings["Import Items"] = "Importa i contenuti"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; +App::$strings["File to Upload"] = "File da caricare"; +App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; +App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; +App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; +App::$strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", ); -App::$strings["Channel not found"] = "Canale non trovato"; -App::$strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; -App::$strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; -App::$strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; -App::$strings["Channel '%s' code allowed"] = "Il canale '%s' permette codice nei contenuti"; -App::$strings["Channel '%s' code disallowed"] = "Il canale '%s' non permette codice nei contenuti"; -App::$strings["Channels"] = "Canali"; -App::$strings["Censor"] = "Applica censura"; -App::$strings["Uncensor"] = "Rimuovi censura"; -App::$strings["Allow Code"] = "Permetti codice"; -App::$strings["Disallow Code"] = "Non permettere codice"; -App::$strings["Channel"] = "Canale"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -App::$strings["Plugin %s disabled."] = "Plugin %s non attivo."; -App::$strings["Plugin %s enabled."] = "Plugin %s attivo."; -App::$strings["Disable"] = "Disattiva"; -App::$strings["Enable"] = "Attiva"; -App::$strings["Plugins"] = "Plugin"; -App::$strings["Toggle"] = "Attiva/disattiva"; -App::$strings["Settings"] = "Impostazioni"; -App::$strings["Author: "] = "Autore:"; -App::$strings["Maintainer: "] = "Gestore:"; -App::$strings["Minimum project version: "] = "Minima versione hubzilla"; -App::$strings["Maximum project version: "] = "Massima versione hubzilla"; -App::$strings["Minimum PHP version: "] = "Minima versione PHP:"; -App::$strings["Compatible Server Roles: "] = "Ruoli compatibili per questo server"; -App::$strings["Requires: "] = "Necessita di:"; -App::$strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Inserisci lo URL del repository git dei plugin."; -App::$strings["Plugin repo git URL"] = "URL git del repository del plugin"; -App::$strings["Custom repo name"] = "Nome repository personalizzato"; -App::$strings["(optional)"] = "(facoltativo)"; -App::$strings["Download Plugin Repo"] = "Scarica il repository del plugin"; -App::$strings["Install new repo"] = "Installa un nuovo repository"; -App::$strings["Install"] = "Installa"; -App::$strings["Manage Repos"] = "Gestisci i repository"; -App::$strings["Installed Plugin Repositories"] = "Repository per i plugin installati"; -App::$strings["Install a New Plugin Repository"] = "Installa un nuovo repository per i plugin"; -App::$strings["Switch branch"] = "Cambia branch"; -App::$strings["No themes found."] = "Nessun tema trovato."; -App::$strings["Screenshot"] = "Istantanea dello schermo"; -App::$strings["Themes"] = "Temi"; -App::$strings["[Experimental]"] = "[Sperimentale]"; -App::$strings["[Unsupported]"] = "[Non supportato]"; -App::$strings["Log settings updated."] = "Impostazioni di log aggiornate."; -App::$strings["Logs"] = "Log"; -App::$strings["Clear"] = "Pulisci"; -App::$strings["Debugging"] = "Debugging"; -App::$strings["Log file"] = "File di log"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Relativo alla directory base del server web. Deve essere scrivibile."; -App::$strings["Log level"] = "Livello di log"; -App::$strings["New Profile Field"] = "Nuovo campo del profilo"; -App::$strings["Field nickname"] = "Nome breve del campo"; -App::$strings["System name of field"] = "Nome di sistema del campo"; -App::$strings["Input type"] = "Tipo di dati"; -App::$strings["Field Name"] = "Nome del campo"; -App::$strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo"; -App::$strings["Help text"] = "Testo di aiuto"; -App::$strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)"; -App::$strings["Field definition not found"] = "Impossibile trovare la definizione del campo"; -App::$strings["Edit Profile Field"] = "Modifica campo del profilo"; -App::$strings["Profile Fields"] = "Campi del profilo"; -App::$strings["Basic Profile Fields"] = "Campi base del profilo"; -App::$strings["Advanced Profile Fields"] = "Campi avanzati del profilo"; -App::$strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base)"; -App::$strings["All available fields"] = "Tutti i campi disponibili"; -App::$strings["Custom Fields"] = "Campi personalizzati"; -App::$strings["Create Custom Field"] = "Aggiungi campo personalizzato"; +App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +App::$strings["Send invitations"] = "Spedisci inviti"; +App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +App::$strings["Your message:"] = "Il tuo messaggio:"; +App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; +App::$strings["or visit"] = "oppure visita"; +App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; +App::$strings["Location not found."] = "Indirizzo non trovato."; +App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; +App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; +App::$strings["No locations found."] = "Nessun indirizzo trovato."; +App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; +App::$strings["Location"] = "Posizione geografica"; +App::$strings["Primary"] = "Primario"; +App::$strings["Sync Now"] = "Sincronizza ora"; +App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; +App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; +App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; +App::$strings["Invalid request."] = "Richiesta non valida."; +App::$strings["channel"] = "il canale"; +App::$strings["thing"] = "Oggetto"; +App::$strings["Channel unavailable."] = "Canale non trovato."; +App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; +App::$strings["photo"] = "la foto"; +App::$strings["status"] = "il messaggio di stato"; +App::$strings["event"] = "l'evento"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; +App::$strings["Action completed."] = "Comando completato."; +App::$strings["Thank you."] = "Grazie."; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +App::$strings["Create a new channel"] = "Crea un nuovo canale"; +App::$strings["Create New"] = "Crea nuova"; +App::$strings["Channel Manager"] = "Gestione canali"; +App::$strings["Current Channel"] = "Canale attuale"; +App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; +App::$strings["Default Channel"] = "Canale predefinito"; +App::$strings["Make Default"] = "Rendi predefinito"; +App::$strings["%d new messages"] = "%d nuovi messaggi"; +App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; +App::$strings["Delegated Channel"] = "Canale delegato"; +App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; +App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; +App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; +App::$strings["Menu Item Permissions"] = "Permessi del menu"; +App::$strings["Link Name"] = "Nome link"; +App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; +App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; +App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; +App::$strings["Order in list"] = "Ordine dell'elenco"; +App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; +App::$strings["Submit and finish"] = "Salva e termina"; +App::$strings["Submit and continue"] = "Salva e continua"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Destinazione link"; +App::$strings["Edit menu"] = "Modifica il menù"; +App::$strings["Edit element"] = "Modifica l'elemento"; +App::$strings["Drop element"] = "Elimina l'elemento"; +App::$strings["New element"] = "Nuovo elemento"; +App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; +App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; +App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; +App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; +App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; +App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; +App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; +App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; +App::$strings["Link text"] = "Testo del link"; +App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; +App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; +App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; +App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; +App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; App::$strings["No valid account found."] = "Nessun account valido trovato."; App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; @@ -1114,7 +1113,10 @@ App::$strings["is interested in:"] = "interessi personali:"; App::$strings["No matches"] = "Nessun risultato"; App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; App::$strings["Import selected"] = "Importa i selezionati"; +App::$strings["Export Webpage Elements"] = "Esporta gli elementi della pagina web"; +App::$strings["Export selected"] = "Esporta i selezionati"; App::$strings["Webpages"] = "Pagine web"; +App::$strings["View"] = "Guarda"; App::$strings["Actions"] = "Azioni"; App::$strings["Page Link"] = "Link alla pagina"; App::$strings["Page Title"] = "Titolo della pagina"; @@ -1203,10 +1205,15 @@ App::$strings["Visible To"] = "Visibile a"; App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; App::$strings["Configuration Editor"] = "Editor di configurazione"; App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."; -App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; -App::$strings["Posts and comments"] = "Post e commenti"; -App::$strings["Only posts"] = "Solo post"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; +App::$strings["Public Hubs"] = "Hub pubblici"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; +App::$strings["Hub URL"] = "URL del hub"; +App::$strings["Access Type"] = "Tipo di accesso"; +App::$strings["Registration Policy"] = "Politica di registrazione"; +App::$strings["Stats"] = "Statistiche"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valutazioni"; +App::$strings["Rate"] = "Valuta"; App::$strings["Version %s"] = "Versione %s"; App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; @@ -1223,13 +1230,15 @@ App::$strings["Site Administrators"] = "Amministratori del sito"; App::$strings["Blocks"] = "Block"; App::$strings["Block Title"] = "Titolo del block"; App::$strings["Layouts"] = "Layout"; +App::$strings["Help"] = "Guida"; App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; App::$strings["Layout Description"] = "Descrizione del layout"; App::$strings["Download PDL file"] = "Scarica il file PDL"; -App::$strings["No ratings"] = "Nessuna valutazione"; -App::$strings["Rating: "] = "Valutazione:"; -App::$strings["Website: "] = "Sito web:"; -App::$strings["Description: "] = "Descrizione:"; +App::$strings["Rating"] = "Valutazioni"; +App::$strings["Website:"] = "Sito web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."; App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; App::$strings["Permissions denied."] = "Permesso negato."; @@ -1262,6 +1271,10 @@ App::$strings["Delete Conversation"] = "Elimina la conversazione"; App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; App::$strings["Send Reply"] = "Invia la risposta"; App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; +App::$strings["No ratings"] = "Nessuna valutazione"; +App::$strings["Rating: "] = "Valutazione:"; +App::$strings["Website: "] = "Sito web:"; +App::$strings["Description: "] = "Descrizione:"; App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; App::$strings["Connection updated."] = "Contatto aggiornato."; @@ -1320,7 +1333,9 @@ App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazio App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; App::$strings["Last update:"] = "Ultimo aggiornamento:"; -App::$strings["Apps"] = "App"; +App::$strings["Documentation Search"] = "Ricerca nella guida"; +App::$strings["Help:"] = "Guida:"; +App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; App::$strings["Continue"] = "Continua"; App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; @@ -1362,7 +1377,6 @@ App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2\$s"; App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Questi contenuti potranno essere importati o ripristinati visitando %2\$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)"; App::$strings["Item is not editable"] = "L'elemento non è modificabile"; -App::$strings["Edit post"] = "Modifica post"; App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; @@ -1380,18 +1394,12 @@ App::$strings["Name of thing e.g. something"] = "Nome dell'oggetto"; App::$strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto (facoltativo)"; App::$strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; -App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; -App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; -App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; -App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; -App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; +App::$strings["Apps"] = "App"; App::$strings["Files: shared with me"] = "File: condivisi con me"; App::$strings["NEW"] = "NOVITÀ"; App::$strings["Remove all files"] = "Elimina tutti i file"; App::$strings["Remove this file"] = "Elimina questo file"; +App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; App::$strings["Not found"] = "Non trovato"; App::$strings["Wiki"] = "Wiki"; App::$strings["Sandbox"] = "Sandbox"; @@ -1437,6 +1445,9 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s App::$strings["Tag removed"] = "Tag rimosso"; App::$strings["Remove Item Tag"] = "Rimuovi il tag"; App::$strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +App::$strings["Posts and comments"] = "Post e commenti"; +App::$strings["Only posts"] = "Solo post"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; App::$strings["Channel added."] = "Canale aggiunto."; App::$strings["No connections."] = "Nessun contatto."; App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; @@ -1448,7 +1459,6 @@ App::$strings["Delete Room"] = "Elimina questa chat"; App::$strings["I am away right now"] = "Non sono presente"; App::$strings["I am online"] = "Sono online"; App::$strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri"; -App::$strings["Feature disabled."] = "Funzionalità disattivata."; App::$strings["New Chatroom"] = "Nuova chat"; App::$strings["Chatroom name"] = "Nome chat"; App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; @@ -1505,6 +1515,20 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Visita App::$strings["[Hubzilla:Notify]"] = "[Hubzilla]"; App::$strings["created a new post"] = "Ha creato un nuovo post"; App::$strings["commented on %s's post"] = "ha commentato il post di %s"; +App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; +App::$strings["Only me"] = "Solo io"; +App::$strings["Public"] = "Pubblico"; +App::$strings["Anybody in the \$Projectname network"] = "Tutti sulla rete \$Projectname"; +App::$strings["Any account on %s"] = "Tutti gli account su %s"; +App::$strings["Any of my connections"] = "Chiunque tra i miei contatti"; +App::$strings["Only connections I specifically allow"] = "Solo chi riceve il mio permesso"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Chiunque sia autenticato (inclusi visitatori di altre reti)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Tutti i contatti inclusi quelli non ancora approvati"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca"; +App::$strings["This is your default setting for who can view your default channel profile"] = "Impostazione predefinita di chi può vedere il profilo standard del tuo canale"; +App::$strings["This is your default setting for who can view your connections"] = "Impostazione predefinita di chi può vedere i tuoi contatti/amici"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Impostazione predefinita di chi può vedere le foto e il tuo archivio file"; +App::$strings["This is your default setting for the audience of your webpages"] = "Impostazione predefinita di chi può vedere le tue pagine web"; App::$strings["Site Admin"] = "Amministrazione sito"; App::$strings["Bug Report"] = "Bug Report"; App::$strings["View Bookmarks"] = "Vedi i segnalibri"; @@ -1528,20 +1552,6 @@ App::$strings["Language"] = "Lingua"; App::$strings["Post"] = "Post"; App::$strings["Profile Photo"] = "Foto del profilo"; App::$strings["Purchase"] = "Acquista"; -App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; -App::$strings["Only me"] = "Solo io"; -App::$strings["Public"] = "Pubblico"; -App::$strings["Anybody in the \$Projectname network"] = "Tutti sulla rete \$Projectname"; -App::$strings["Any account on %s"] = "Tutti gli account su %s"; -App::$strings["Any of my connections"] = "Chiunque tra i miei contatti"; -App::$strings["Only connections I specifically allow"] = "Solo chi riceve il mio permesso"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Chiunque sia autenticato (inclusi visitatori di altre reti)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Tutti i contatti inclusi quelli non ancora approvati"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca"; -App::$strings["This is your default setting for who can view your default channel profile"] = "Impostazione predefinita di chi può vedere il profilo standard del tuo canale"; -App::$strings["This is your default setting for who can view your connections"] = "Impostazione predefinita di chi può vedere i tuoi contatti/amici"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Impostazione predefinita di chi può vedere le foto e il tuo archivio file"; -App::$strings["This is your default setting for the audience of your webpages"] = "Impostazione predefinita di chi può vedere le tue pagine web"; App::$strings["Private Message"] = "Messaggio privato"; App::$strings["Select"] = "Scegli"; App::$strings["Save to Folder"] = "Salva nella cartella"; @@ -1560,228 +1570,67 @@ App::$strings["Message signature incorrect"] = "Massaggio con firma non corretta App::$strings["Add Tag"] = "Aggiungi un tag"; App::$strings["like"] = "mi piace"; App::$strings["dislike"] = "non mi piace"; -App::$strings["Share This"] = "Condividi"; -App::$strings["share"] = "condividi"; -App::$strings["Delivery Report"] = "Rapporto di trasmissione"; -App::$strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", -); -App::$strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s"; -App::$strings["to"] = "a"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -App::$strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; -App::$strings["from %s"] = "da %s"; -App::$strings["last edited: %s"] = "ultima modifica: %s"; -App::$strings["Expires: %s"] = "Scadenza: %s"; -App::$strings["Save Bookmarks"] = "Salva segnalibro"; -App::$strings["Add to Calendar"] = "Aggiungi al calendario"; -App::$strings["Mark all seen"] = "Marca tutto come letto"; -App::$strings["%s show all"] = "%s mostra tutto"; -App::$strings["Bold"] = "Grassetto"; -App::$strings["Italic"] = "Corsivo"; -App::$strings["Underline"] = "Sottolineato"; -App::$strings["Quote"] = "Citazione"; -App::$strings["Code"] = "Codice"; -App::$strings["Image"] = "Immagine"; -App::$strings["Insert Link"] = "Collegamento"; -App::$strings["Video"] = "Video"; -App::$strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -App::$strings["view full size"] = "guarda nelle dimensioni reali"; -App::$strings["Administrator"] = "Amministratore"; -App::$strings["No Subject"] = "Nessun titolo"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Embedded content"] = "Contenuti incorporati"; -App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; -App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; -App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; -App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; -App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -App::$strings["(Unknown)"] = "(Sconosciuto)"; -App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; -App::$strings["Visible to you only."] = "Visibile solo a te."; -App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; -App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; -App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; -App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; -App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; -App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; -App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; -App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; -App::$strings["Connection not found."] = "Contatto non trovato."; -App::$strings["profile photo"] = "foto del profilo"; -App::$strings["prev"] = "prec"; -App::$strings["first"] = "inizio"; -App::$strings["last"] = "fine"; -App::$strings["next"] = "succ"; -App::$strings["older"] = "più recenti"; -App::$strings["newer"] = "più nuovi"; -App::$strings["No connections"] = "Nessun contatto"; -App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; -App::$strings["poke"] = "poke"; -App::$strings["poked"] = "ha mandato un poke"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "ha effettuato un ping"; -App::$strings["prod"] = "spintone"; -App::$strings["prodded"] = "ha ricevuto uno spintone"; -App::$strings["slap"] = "schiaffo"; -App::$strings["slapped"] = "ha ricevuto uno schiaffo"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "ha ricevuto un finger"; -App::$strings["rebuff"] = "rifiuto"; -App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; -App::$strings["happy"] = "felice"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "calmo"; -App::$strings["tired"] = "stanco"; -App::$strings["perky"] = "vivace"; -App::$strings["angry"] = "arrabbiato"; -App::$strings["stupefied"] = "stupito"; -App::$strings["puzzled"] = "confuso"; -App::$strings["interested"] = "attento"; -App::$strings["bitter"] = "amaro"; -App::$strings["cheerful"] = "allegro"; -App::$strings["alive"] = "vivace"; -App::$strings["annoyed"] = "seccato"; -App::$strings["anxious"] = "ansioso"; -App::$strings["cranky"] = "irritabile"; -App::$strings["disturbed"] = "turbato"; -App::$strings["frustrated"] = "frustrato"; -App::$strings["depressed"] = "in depressione"; -App::$strings["motivated"] = "motivato"; -App::$strings["relaxed"] = "rilassato"; -App::$strings["surprised"] = "sorpreso"; -App::$strings["Monday"] = "lunedì"; -App::$strings["Tuesday"] = "martedì"; -App::$strings["Wednesday"] = "mercoledì"; -App::$strings["Thursday"] = "giovedì"; -App::$strings["Friday"] = "venerdì"; -App::$strings["Saturday"] = "sabato"; -App::$strings["Sunday"] = "domenica"; -App::$strings["January"] = "gennaio"; -App::$strings["February"] = "febbraio"; -App::$strings["March"] = "marzo"; -App::$strings["April"] = "aprile"; -App::$strings["May"] = "Mag"; -App::$strings["June"] = "giugno"; -App::$strings["July"] = "luglio"; -App::$strings["August"] = "agosto"; -App::$strings["September"] = "settembre"; -App::$strings["October"] = "ottobre"; -App::$strings["November"] = "novembre"; -App::$strings["December"] = "dicembre"; -App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; -App::$strings["unknown"] = "sconosciuta"; -App::$strings["remove category"] = "rimuovi la categoria"; -App::$strings["remove from file"] = "rimuovi dal file"; -App::$strings["default"] = "predefinito"; -App::$strings["Page layout"] = "Layout della pagina"; -App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; -App::$strings["Page content type"] = "Tipo di contenuto della pagina"; -App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; -App::$strings["activity"] = "l'attività"; -App::$strings["Design Tools"] = "Strumenti di design"; -App::$strings["Pages"] = "Pagine"; -App::$strings["Import website..."] = "Importazione sito web..."; -App::$strings["Select folder to import"] = "Scegli la cartella da importare"; -App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; -App::$strings["Import from cloud files:"] = "Importa i file da un cloud:"; -App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/percorso/alla/cartella"; -App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; -App::$strings["Select folder"] = "Scegli la cartella"; -App::$strings["Categories"] = "Categorie"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nuova app"; -App::$strings["Suggestions"] = "Suggerimenti"; -App::$strings["See more..."] = "Altro..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; -App::$strings["Add New Connection"] = "Aggiungi un contatto"; -App::$strings["Enter channel address"] = "Indirizzo del canale"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; -App::$strings["Notes"] = "Note"; -App::$strings["Remove term"] = "Rimuovi termine"; -App::$strings["Saved Searches"] = "Ricerche salvate"; -App::$strings["add"] = "aggiungi"; -App::$strings["Saved Folders"] = "Cartelle salvate"; -App::$strings["Everything"] = "Tutto"; -App::$strings["Archives"] = "Archivi"; -App::$strings["Refresh"] = "Aggiorna"; -App::$strings["Account settings"] = "Il tuo account"; -App::$strings["Channel settings"] = "Impostazioni del canale"; -App::$strings["Additional features"] = "Funzionalità opzionali"; -App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; -App::$strings["Display settings"] = "Aspetto"; -App::$strings["Manage locations"] = "Gestione repliche"; -App::$strings["Export channel"] = "Esporta il canale"; -App::$strings["Connected apps"] = "App connesse"; -App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -App::$strings["Private Mail Menu"] = "Menu messaggi privati"; -App::$strings["Combined View"] = "Vista combinata"; -App::$strings["Inbox"] = "In arrivo"; -App::$strings["Outbox"] = "Inviati"; -App::$strings["New Message"] = "Nuovo messaggio"; -App::$strings["Conversations"] = "Conversazioni"; -App::$strings["Received Messages"] = "Ricevuti"; -App::$strings["Sent Messages"] = "Inviati"; -App::$strings["No messages."] = "Nessun messaggio."; -App::$strings["Delete conversation"] = "Elimina la conversazione"; -App::$strings["Events Tools"] = "Gestione eventi"; -App::$strings["Export Calendar"] = "Esporta calendario"; -App::$strings["Import Calendar"] = "Importa calendario"; -App::$strings["Chatrooms"] = "Chat"; -App::$strings["Overview"] = "Riepilogo"; -App::$strings["Chat Members"] = "Partecipanti"; -App::$strings["Wiki List"] = "Elenco wiki"; -App::$strings["Wiki Pages"] = "Pagine wiki"; -App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; -App::$strings["Suggested Chatrooms"] = "Chat suggerite"; -App::$strings["photo/image"] = "foto/immagine"; -App::$strings["Click to show more"] = "Clicca per mostrare tutto"; -App::$strings["Rating Tools"] = "Valutazione"; -App::$strings["Rate Me"] = "Valutami"; -App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Attività"; -App::$strings["Documentation"] = "Guida"; -App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; -App::$strings["For Members"] = "Per gli utenti"; -App::$strings["For Administrators"] = "Per gli amministratori"; -App::$strings["For Developers"] = "Per sviluppatori"; -App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; -App::$strings["Inspect queue"] = "Coda di attesa"; -App::$strings["DB updates"] = "Aggiornamenti al DB"; -App::$strings["Admin"] = "Amministrazione"; -App::$strings["Plugin Features"] = "Plugin"; +App::$strings["Share This"] = "Condividi"; +App::$strings["share"] = "condividi"; +App::$strings["Delivery Report"] = "Rapporto di trasmissione"; +App::$strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +App::$strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s"; +App::$strings["to"] = "a"; +App::$strings["via"] = "via"; +App::$strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +App::$strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; +App::$strings["from %s"] = "da %s"; +App::$strings["last edited: %s"] = "ultima modifica: %s"; +App::$strings["Expires: %s"] = "Scadenza: %s"; +App::$strings["Save Bookmarks"] = "Salva segnalibro"; +App::$strings["Add to Calendar"] = "Aggiungi al calendario"; +App::$strings["Mark all seen"] = "Marca tutto come letto"; +App::$strings["%s show all"] = "%s mostra tutto"; +App::$strings["Bold"] = "Grassetto"; +App::$strings["Italic"] = "Corsivo"; +App::$strings["Underline"] = "Sottolineato"; +App::$strings["Quote"] = "Citazione"; +App::$strings["Code"] = "Codice"; +App::$strings["Image"] = "Immagine"; +App::$strings["Insert Link"] = "Collegamento"; +App::$strings["Video"] = "Video"; +App::$strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; +App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; +App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +App::$strings["view full size"] = "guarda nelle dimensioni reali"; +App::$strings["Administrator"] = "Amministratore"; +App::$strings["No Subject"] = "Nessun titolo"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Embedded content"] = "Contenuti incorporati"; +App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; +App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; +App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; +App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; +App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; +App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; App::$strings["New window"] = "Nuova finestra"; App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; -App::$strings["Who can see this?"] = "Chi può vederlo?"; -App::$strings["Custom selection"] = "Selezione personalizzata"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"."; -App::$strings["Show"] = "Mostra"; -App::$strings["Don't show"] = "Non mostrare"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post."; App::$strings["Public Timeline"] = "Diario pubblico"; App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; App::$strings["Empty name"] = "Nome vuoto"; @@ -1920,6 +1769,34 @@ App::$strings["Uncertain"] = "Incerto/a"; App::$strings["It's complicated"] = "Relazione complicata"; App::$strings["Don't care"] = "Chi se ne frega"; App::$strings["Ask me"] = "Chiedimelo"; +App::$strings["(Unknown)"] = "(Sconosciuto)"; +App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; +App::$strings["Visible to you only."] = "Visibile solo a te."; +App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; +App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; +App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; +App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; +App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; +App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; +App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; +App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; +App::$strings["Connection not found."] = "Contatto non trovato."; +App::$strings["profile photo"] = "foto del profilo"; +App::$strings["guest:"] = "ospite:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; +App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; +App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; +App::$strings["edit"] = "modifica"; +App::$strings["Privacy Groups"] = "Gruppi di canali"; +App::$strings["Edit group"] = "Modifica il gruppo"; +App::$strings["Add privacy group"] = "Crea un gruppo di canali"; +App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; +App::$strings["add"] = "aggiungi"; App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; @@ -1927,8 +1804,214 @@ App::$strings["a new photo"] = "una nuova foto"; App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; App::$strings["Photo Albums"] = "Album foto"; App::$strings["Upload New Photos"] = "Carica nuove foto"; -App::$strings["guest:"] = "ospite:"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["New Page"] = "Nuova pagina web"; +App::$strings["Title"] = "Titolo"; +App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; +App::$strings["Item was not found."] = "Elemento non trovato."; +App::$strings["No source file."] = "Nessun file di origine."; +App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; +App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; +App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; +App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; +App::$strings["Path not available."] = "Percorso non disponibile."; +App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; +App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; +App::$strings["Path not found."] = "Percorso del file non trovato."; +App::$strings["mkdir failed."] = "mkdir fallito."; +App::$strings["database storage failed."] = "scrittura su database fallita."; +App::$strings["Empty path"] = "La posizione è vuota"; +App::$strings["Attachments:"] = "Allegati:"; +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; +App::$strings["Starts:"] = "Inizio:"; +App::$strings["Finishes:"] = "Fine:"; +App::$strings["Delete this item?"] = "Eliminare questo elemento?"; +App::$strings["%s show less"] = "%s riduci"; +App::$strings["%s expand"] = "%s mostra tutto"; +App::$strings["%s collapse"] = "%s minimizza"; +App::$strings["Password too short"] = "Password troppo corta"; +App::$strings["Passwords do not match"] = "Le password non corrispondono"; +App::$strings["everybody"] = "tutti"; +App::$strings["Secret Passphrase"] = "Parola chiave per decifrare"; +App::$strings["Passphrase hint"] = "Suggerimento per la parola chiave"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; +App::$strings["close all"] = "chiudi tutto"; +App::$strings["Nothing new here"] = "Niente di nuovo qui"; +App::$strings["Rate This Channel (this is public)"] = "Valuta questo canale (visibile a tutti)"; +App::$strings["Describe (optional)"] = "Descrizione (facoltativa)"; +App::$strings["Please enter a link URL"] = "Inserisci l'URL di un link"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?"; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["ago"] = "fa"; +App::$strings["from now"] = "da adesso"; +App::$strings["less than a minute"] = "meno di un minuto"; +App::$strings["about a minute"] = "circa un minuto"; +App::$strings["%d minutes"] = "%d minuti"; +App::$strings["about an hour"] = "circa un’ora"; +App::$strings["about %d hours"] = "circa %d ore"; +App::$strings["a day"] = "un giorno"; +App::$strings["%d days"] = "%d giorni"; +App::$strings["about a month"] = "circa un mese"; +App::$strings["%d months"] = "%d mesi"; +App::$strings["about a year"] = "circa un anno"; +App::$strings["%d years"] = "%d anni"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["January"] = "gennaio"; +App::$strings["February"] = "febbraio"; +App::$strings["March"] = "marzo"; +App::$strings["April"] = "aprile"; +App::$strings["__ctx:long__ May"] = "maggio"; +App::$strings["June"] = "giugno"; +App::$strings["July"] = "luglio"; +App::$strings["August"] = "agosto"; +App::$strings["September"] = "settembre"; +App::$strings["October"] = "ottobre"; +App::$strings["November"] = "novembre"; +App::$strings["December"] = "dicembre"; +App::$strings["Jan"] = "Gen"; +App::$strings["Feb"] = "Feb"; +App::$strings["Mar"] = "Mar"; +App::$strings["Apr"] = "Apr"; +App::$strings["__ctx:short__ May"] = "maggio"; +App::$strings["Jun"] = "Mag"; +App::$strings["Jul"] = "Giu"; +App::$strings["Aug"] = "Ago"; +App::$strings["Sep"] = "Set"; +App::$strings["Oct"] = "Ott"; +App::$strings["Nov"] = "Nov"; +App::$strings["Dec"] = "Dic"; +App::$strings["Sunday"] = "domenica"; +App::$strings["Monday"] = "lunedì"; +App::$strings["Tuesday"] = "martedì"; +App::$strings["Wednesday"] = "mercoledì"; +App::$strings["Thursday"] = "giovedì"; +App::$strings["Friday"] = "venerdì"; +App::$strings["Saturday"] = "sabato"; +App::$strings["Sun"] = "Dom"; +App::$strings["Mon"] = "Lun"; +App::$strings["Tue"] = "Mar"; +App::$strings["Wed"] = "Mer"; +App::$strings["Thu"] = "Gio"; +App::$strings["Fri"] = "Ven"; +App::$strings["Sat"] = "Sab"; +App::$strings["__ctx:calendar__ today"] = "oggi"; +App::$strings["__ctx:calendar__ month"] = "mese"; +App::$strings["__ctx:calendar__ week"] = "settimana"; +App::$strings["__ctx:calendar__ day"] = "giorno"; +App::$strings["__ctx:calendar__ All day"] = "Tutto il giorno"; +App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; +App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; +App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; +App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; +App::$strings["Protocol disabled."] = "Protocollo disabilitato."; +App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; +App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; +App::$strings["Who can see this?"] = "Chi può vederlo?"; +App::$strings["Custom selection"] = "Selezione personalizzata"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"."; +App::$strings["Show"] = "Mostra"; +App::$strings["Don't show"] = "Non mostrare"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post."; +App::$strings["prev"] = "prec"; +App::$strings["first"] = "inizio"; +App::$strings["last"] = "fine"; +App::$strings["next"] = "succ"; +App::$strings["older"] = "più recenti"; +App::$strings["newer"] = "più nuovi"; +App::$strings["No connections"] = "Nessun contatto"; +App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; +App::$strings["poke"] = "poke"; +App::$strings["poked"] = "ha mandato un poke"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "ha effettuato un ping"; +App::$strings["prod"] = "spintone"; +App::$strings["prodded"] = "ha ricevuto uno spintone"; +App::$strings["slap"] = "schiaffo"; +App::$strings["slapped"] = "ha ricevuto uno schiaffo"; +App::$strings["finger"] = "finger"; +App::$strings["fingered"] = "ha ricevuto un finger"; +App::$strings["rebuff"] = "rifiuto"; +App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; +App::$strings["happy"] = "felice"; +App::$strings["sad"] = "triste"; +App::$strings["mellow"] = "calmo"; +App::$strings["tired"] = "stanco"; +App::$strings["perky"] = "vivace"; +App::$strings["angry"] = "arrabbiato"; +App::$strings["stupefied"] = "stupito"; +App::$strings["puzzled"] = "confuso"; +App::$strings["interested"] = "attento"; +App::$strings["bitter"] = "amaro"; +App::$strings["cheerful"] = "allegro"; +App::$strings["alive"] = "vivace"; +App::$strings["annoyed"] = "seccato"; +App::$strings["anxious"] = "ansioso"; +App::$strings["cranky"] = "irritabile"; +App::$strings["disturbed"] = "turbato"; +App::$strings["frustrated"] = "frustrato"; +App::$strings["depressed"] = "in depressione"; +App::$strings["motivated"] = "motivato"; +App::$strings["relaxed"] = "rilassato"; +App::$strings["surprised"] = "sorpreso"; +App::$strings["May"] = "Mag"; +App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; +App::$strings["unknown"] = "sconosciuta"; +App::$strings["remove category"] = "rimuovi la categoria"; +App::$strings["remove from file"] = "rimuovi dal file"; +App::$strings["default"] = "predefinito"; +App::$strings["Page layout"] = "Layout della pagina"; +App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; +App::$strings["Page content type"] = "Tipo di contenuto della pagina"; +App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; +App::$strings["activity"] = "l'attività"; +App::$strings["Design Tools"] = "Strumenti di design"; +App::$strings["Pages"] = "Pagine"; +App::$strings["Import website..."] = "Importazione sito web..."; +App::$strings["Select folder to import"] = "Scegli la cartella da importare"; +App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; +App::$strings["Import from cloud files:"] = "Importa da un file su cloud:"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/percorso/alla/cartella"; +App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; +App::$strings["Select folder"] = "Scegli la cartella"; +App::$strings["Export website..."] = "Esporta il sito web..."; +App::$strings["Export to a zip file"] = "Esporta come file zip"; +App::$strings["website.zip"] = "sitoweb.zip"; +App::$strings["Enter a name for the zip file."] = "Scegli il nome del file zip."; +App::$strings["Export to cloud files"] = "Esporta nell'archivio cloud"; +App::$strings["/path/to/export/folder"] = "/percorso/alla/cartella"; +App::$strings["Enter a path to a cloud files destination."] = "Scegli la posizione su una cartella cloud."; +App::$strings["Specify folder"] = "Scegli la cartella"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; +App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +App::$strings["Unable to import element \""] = "Impossibile importare l'elemento \""; +App::$strings["Not a valid email address"] = "Email non valida"; +App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; +App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; +App::$strings["An invitation is required."] = "È necessario un invito."; +App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; +App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; +App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; +App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +App::$strings["your registration password"] = "la password di registrazione"; +App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +App::$strings["Account approved."] = "Account approvato."; +App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; +App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +App::$strings["Logged out."] = "Uscita effettuata."; +App::$strings["Failed authentication"] = "Autenticazione fallita"; +App::$strings["Login failed."] = "Accesso fallito."; +App::$strings[" and "] = "e"; +App::$strings["public profile"] = "profilo pubblico"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; @@ -1991,6 +2074,7 @@ App::$strings["Status Messages and Posts"] = "Post e messaggi di stato"; App::$strings["About"] = "Informazioni"; App::$strings["Profile Details"] = "Dettagli del profilo"; App::$strings["Files and Storage"] = "Archivio file"; +App::$strings["Chatrooms"] = "Chat"; App::$strings["Bookmarks"] = "Segnalibri"; App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; App::$strings["Manage Webpages"] = "Gestisci le pagine web"; @@ -2018,120 +2102,15 @@ App::$strings["__ctx:noun__ Abstain"] = array( 0 => "Astenuto", 1 => "Astenuti", ); -App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; -App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; -App::$strings["edit"] = "modifica"; -App::$strings["Privacy Groups"] = "Gruppi di canali"; -App::$strings["Edit group"] = "Modifica il gruppo"; -App::$strings["Add privacy group"] = "Crea un gruppo di canali"; -App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; -App::$strings["New Page"] = "Nuova pagina web"; -App::$strings["Title"] = "Titolo"; -App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Inizio:"; -App::$strings["Finishes:"] = "Fine:"; -App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; -App::$strings["Not specified"] = "Non specificato"; -App::$strings["Needs Action"] = "Necessita di un intervento"; -App::$strings["Completed"] = "Completato"; -App::$strings["In Process"] = "In corso"; -App::$strings["Cancelled"] = "Annullato"; -App::$strings["Attachments:"] = "Allegati:"; -App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; -App::$strings["Delete this item?"] = "Eliminare questo elemento?"; -App::$strings["%s show less"] = "%s riduci"; -App::$strings["%s expand"] = "%s mostra tutto"; -App::$strings["%s collapse"] = "%s minimizza"; -App::$strings["Password too short"] = "Password troppo corta"; -App::$strings["Passwords do not match"] = "Le password non corrispondono"; -App::$strings["everybody"] = "tutti"; -App::$strings["Secret Passphrase"] = "Parola chiave per decifrare"; -App::$strings["Passphrase hint"] = "Suggerimento per la parola chiave"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; -App::$strings["close all"] = "chiudi tutto"; -App::$strings["Nothing new here"] = "Niente di nuovo qui"; -App::$strings["Rate This Channel (this is public)"] = "Valuta questo canale (visibile a tutti)"; -App::$strings["Describe (optional)"] = "Descrizione (facoltativa)"; -App::$strings["Please enter a link URL"] = "Inserisci l'URL di un link"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "fa"; -App::$strings["from now"] = "da adesso"; -App::$strings["less than a minute"] = "meno di un minuto"; -App::$strings["about a minute"] = "circa un minuto"; -App::$strings["%d minutes"] = "%d minuti"; -App::$strings["about an hour"] = "circa un’ora"; -App::$strings["about %d hours"] = "circa %d ore"; -App::$strings["a day"] = "un giorno"; -App::$strings["%d days"] = "%d giorni"; -App::$strings["about a month"] = "circa un mese"; -App::$strings["%d months"] = "%d mesi"; -App::$strings["about a year"] = "circa un anno"; -App::$strings["%d years"] = "%d anni"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "maggio"; -App::$strings["Jan"] = "Gen"; -App::$strings["Feb"] = "Feb"; -App::$strings["Mar"] = "Mar"; -App::$strings["Apr"] = "Apr"; -App::$strings["__ctx:short__ May"] = "maggio"; -App::$strings["Jun"] = "Mag"; -App::$strings["Jul"] = "Giu"; -App::$strings["Aug"] = "Ago"; -App::$strings["Sep"] = "Set"; -App::$strings["Oct"] = "Ott"; -App::$strings["Nov"] = "Nov"; -App::$strings["Dec"] = "Dic"; -App::$strings["Sun"] = "Dom"; -App::$strings["Mon"] = "Lun"; -App::$strings["Tue"] = "Mar"; -App::$strings["Wed"] = "Mer"; -App::$strings["Thu"] = "Gio"; -App::$strings["Fri"] = "Ven"; -App::$strings["Sat"] = "Sab"; -App::$strings["__ctx:calendar__ today"] = "oggi"; -App::$strings["__ctx:calendar__ month"] = "mese"; -App::$strings["__ctx:calendar__ week"] = "settimana"; -App::$strings["__ctx:calendar__ day"] = "giorno"; -App::$strings["__ctx:calendar__ All day"] = "Tutto il giorno"; -App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; -App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; -App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; -App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; -App::$strings["Protocol disabled."] = "Protocollo disabilitato."; -App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; -App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -App::$strings["Item was not found."] = "Elemento non trovato."; -App::$strings["No source file."] = "Nessun file di origine."; -App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; -App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; -App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; -App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; -App::$strings["Path not available."] = "Percorso non disponibile."; -App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; -App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; -App::$strings["Path not found."] = "Percorso del file non trovato."; -App::$strings["mkdir failed."] = "mkdir fallito."; -App::$strings["database storage failed."] = "scrittura su database fallita."; -App::$strings["Empty path"] = "La posizione è vuota"; -App::$strings["Logged out."] = "Uscita effettuata."; -App::$strings["Failed authentication"] = "Autenticazione fallita"; -App::$strings["Login failed."] = "Accesso fallito."; -App::$strings[" and "] = "e"; -App::$strings["public profile"] = "profilo pubblico"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; -App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; -App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["Categories"] = "Categorie"; +App::$strings["Tags"] = "Tag"; +App::$strings["Keywords"] = "Parole chiave"; +App::$strings["have"] = "ho"; +App::$strings["has"] = "ha"; +App::$strings["want"] = "voglio"; +App::$strings["wants"] = "vuole"; +App::$strings["likes"] = "gli piace"; +App::$strings["dislikes"] = "non gli piace"; App::$strings["General Features"] = "Funzionalità di base"; App::$strings["Content Expiration"] = "Scadenza"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; @@ -2151,11 +2130,9 @@ App::$strings["Change channels directly from within the navigation dropdown menu App::$strings["Photo Location"] = "Posizione geografica"; App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; App::$strings["Access Controlled Chatrooms"] = "Chat ad accesso riservato"; -App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato"; +App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato."; App::$strings["Smart Birthdays"] = "Compleanni intelligenti"; App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo."; -App::$strings["Expert Mode"] = "Modalità esperto"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate"; App::$strings["Post Composition Features"] = "Modalità di scrittura post"; App::$strings["Large Photos"] = "Foto grandi"; App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)"; @@ -2174,6 +2151,7 @@ App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; App::$strings["Search by Date"] = "Ricerca per data"; App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; +App::$strings["Saved Searches"] = "Ricerche salvate"; App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; App::$strings["Network Personal Tab"] = "Attività personale"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; @@ -2181,16 +2159,15 @@ App::$strings["Network New Tab"] = "Contenuti nuovi"; App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; App::$strings["Affinity Tool"] = "Filtro per affinità"; App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; -App::$strings["Connection Filtering"] = "Filtro sui contatti"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; -App::$strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; +App::$strings["Show friend and connection suggestions"] = "Mostra suggerimenti di contatti e amici"; App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; App::$strings["Community Tagging"] = "Tag della comunità"; App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; App::$strings["Post Categories"] = "Categorie dei post"; App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; -App::$strings["Emoji Reactions"] = "Reazioni emoji"; -App::$strings["Add emoji reaction ability to posts"] = "Permetti le reazioni emoji ai post"; +App::$strings["Emoji Reactions"] = "Risposte emoji"; +App::$strings["Add emoji reaction ability to posts"] = "Permetti di rispondere ai post con degli emoji"; +App::$strings["Saved Folders"] = "Cartelle salvate"; App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; App::$strings["Dislike Posts"] = "Non mi piace"; App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; @@ -2198,32 +2175,72 @@ App::$strings["Star Posts"] = "Post con stella"; App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; App::$strings["Tag Cloud"] = "Nuvola di tag"; App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; +App::$strings["Connection Filtering"] = "Filtro sui contatti"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; App::$strings["Premium Channel"] = "Canale premium"; App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale"; -App::$strings["Tags"] = "Tag"; -App::$strings["Keywords"] = "Parole chiave"; -App::$strings["have"] = "ho"; -App::$strings["has"] = "ha"; -App::$strings["want"] = "voglio"; -App::$strings["wants"] = "vuole"; -App::$strings["likes"] = "gli piace"; -App::$strings["dislikes"] = "non gli piace"; -App::$strings["Not a valid email address"] = "Email non valida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; -App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; -App::$strings["An invitation is required."] = "È necessario un invito."; -App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; -App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; -App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; -App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; -App::$strings["your registration password"] = "la password di registrazione"; -App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -App::$strings["Account approved."] = "Account approvato."; -App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; -App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +App::$strings["Advanced Directory Search"] = "Ricerca avanzata sugli elenchi pubblici"; +App::$strings["Allows creation of complex directory search queries"] = "Permette la creazione di ricerche complesse negli elenchi"; +App::$strings["Advanced Theme and Layout Settings"] = "Impostazioni avanzate del tema e dei layout"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Permette una personalizzazione accurata del tema e dei layout"; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nuova app"; +App::$strings["Suggestions"] = "Suggerimenti"; +App::$strings["See more..."] = "Altro..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; +App::$strings["Add New Connection"] = "Aggiungi un contatto"; +App::$strings["Enter channel address"] = "Indirizzo del canale"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; +App::$strings["Notes"] = "Note"; +App::$strings["Remove term"] = "Rimuovi termine"; +App::$strings["Everything"] = "Tutto"; +App::$strings["Archives"] = "Archivi"; +App::$strings["Refresh"] = "Aggiorna"; +App::$strings["Account settings"] = "Il tuo account"; +App::$strings["Channel settings"] = "Impostazioni del canale"; +App::$strings["Additional features"] = "Funzionalità opzionali"; +App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; +App::$strings["Display settings"] = "Aspetto"; +App::$strings["Manage locations"] = "Gestione repliche"; +App::$strings["Export channel"] = "Esporta il canale"; +App::$strings["Connected apps"] = "App connesse"; +App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +App::$strings["Private Mail Menu"] = "Menu messaggi privati"; +App::$strings["Combined View"] = "Vista combinata"; +App::$strings["Inbox"] = "In arrivo"; +App::$strings["Outbox"] = "Inviati"; +App::$strings["New Message"] = "Nuovo messaggio"; +App::$strings["Conversations"] = "Conversazioni"; +App::$strings["Received Messages"] = "Ricevuti"; +App::$strings["Sent Messages"] = "Inviati"; +App::$strings["No messages."] = "Nessun messaggio."; +App::$strings["Delete conversation"] = "Elimina la conversazione"; +App::$strings["Events Tools"] = "Gestione eventi"; +App::$strings["Export Calendar"] = "Esporta calendario"; +App::$strings["Import Calendar"] = "Importa calendario"; +App::$strings["Overview"] = "Riepilogo"; +App::$strings["Chat Members"] = "Partecipanti"; +App::$strings["Wiki List"] = "Elenco wiki"; +App::$strings["Wiki Pages"] = "Pagine wiki"; +App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +App::$strings["Suggested Chatrooms"] = "Chat suggerite"; +App::$strings["photo/image"] = "foto/immagine"; +App::$strings["Click to show more"] = "Clicca per mostrare tutto"; +App::$strings["Rating Tools"] = "Valutazione"; +App::$strings["Rate Me"] = "Valutami"; +App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Attività"; +App::$strings["Documentation"] = "Guida"; +App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; +App::$strings["For Members"] = "Per gli utenti"; +App::$strings["For Administrators"] = "Per gli amministratori"; +App::$strings["For Developers"] = "Per sviluppatori"; +App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; +App::$strings["Inspect queue"] = "Coda di attesa"; +App::$strings["DB updates"] = "Aggiornamenti al DB"; +App::$strings["Admin"] = "Amministrazione"; +App::$strings["Plugin Features"] = "Plugin"; App::$strings["Image/photo"] = "Immagine"; App::$strings["Encrypted content"] = "Contenuto cifrato"; App::$strings["Install %s element: "] = "Installa l'elemento %s:"; @@ -2256,8 +2273,12 @@ App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; App::$strings["[no subject]"] = "[nessun titolo]"; App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; -App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; +App::$strings["Not specified"] = "Non specificato"; +App::$strings["Needs Action"] = "Necessita di un intervento"; +App::$strings["Completed"] = "Completato"; +App::$strings["In Process"] = "In corso"; +App::$strings["Cancelled"] = "Annullato"; App::$strings["Logout"] = "Esci"; App::$strings["End this session"] = "Chiudi questa sessione"; App::$strings["Home"] = "Bacheca"; -- cgit v1.2.3 From 57dc362d5dcc1b842d6f8a97940a217efc5875ac Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 9 Sep 2016 14:29:20 +0200 Subject: whitelist button tag in htmlpurifier --- include/text.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/text.php b/include/text.php index 8b2e8b9e0..9c4a4a5c5 100644 --- a/include/text.php +++ b/include/text.php @@ -234,12 +234,15 @@ function purify_html($s, $allow_position = false) { $def->info_global_attr['data-offset-bottom'] = new HTMLPurifier_AttrDef_Text; //some html5 elements + //Block $def->addElement('section', 'Block', 'Flow', 'Common'); $def->addElement('nav', 'Block', 'Flow', 'Common'); $def->addElement('article', 'Block', 'Flow', 'Common'); $def->addElement('aside', 'Block', 'Flow', 'Common'); $def->addElement('header', 'Block', 'Flow', 'Common'); $def->addElement('footer', 'Block', 'Flow', 'Common'); + //Inline + $def->addElement('button', 'Inline', 'Inline', 'Common'); if($allow_position) { -- cgit v1.2.3 From 7121d8e42715b0f14a05d497fbe4fdeff6e76fd8 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 9 Sep 2016 21:25:57 -0700 Subject: issue #511, postgres schema issues --- install/schema_postgres.sql | 4 +- util/hmessages.po | 9591 ++++++++++++++++++++++--------------------- 2 files changed, 4822 insertions(+), 4773 deletions(-) diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index b190a810a..caa182b14 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -219,7 +219,7 @@ CREATE TABLE "cal" ( "pass" text NOT NULL, "ctag" text NOT NULL, "synctoken" text NOT NULL, - "cal_types" text NOT NULL DEFAULT "0", + "cal_types" text NOT NULL DEFAULT '0', PRIMARY KEY ("cal_id") ); create index "cal_hash_idx" on cal ("cal_hash"); @@ -940,7 +940,7 @@ create index "photo_album" on photo ("album"); create index "photo_imgscale" on photo ("imgscale"); create index "photo_profile" on photo ("profile"); create index "photo_flags" on photo ("photo_flags"); -create index "photo_type" on photo ("type"); +create index "photo_mimetype" on photo ("mimetype"); create index "photo_aid" on photo ("aid"); create index "photo_xchan" on photo ("xchan"); create index "photo_filesize" on photo ("filesize"); diff --git a/util/hmessages.po b/util/hmessages.po index 405544d27..71cf4ef02 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 00:02-0700\n" +"POT-Creation-Date: 2016-09-09 00:02-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -88,11 +88,12 @@ msgid "Special - Group Repository" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:204 +#: ../../Zotlabs/Module/New_channel.php:132 #: ../../Zotlabs/Module/Register.php:213 -#: ../../Zotlabs/Module/Settings.php:1245 -#: ../../Zotlabs/Module/New_channel.php:132 ../../include/permissions.php:949 +#: ../../Zotlabs/Module/Settings/Channel.php:442 #: ../../include/selectors.php:49 ../../include/selectors.php:66 #: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:949 msgid "Other" msgstr "" @@ -169,7 +170,7 @@ msgstr "" msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2665 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2708 msgid "Collection" msgstr "" @@ -193,17 +194,17 @@ msgstr "" msgid "Schedule Outbox" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:789 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 #: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1033 -#: ../../include/widgets.php:1646 +#: ../../include/widgets.php:1679 msgid "Unknown" msgstr "" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1674 -#: ../../include/nav.php:96 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:96 +#: ../../include/conversation.php:1678 msgid "Files" msgstr "" @@ -216,23 +217,25 @@ msgid "Shared" msgstr "" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:237 -#: ../../Zotlabs/Module/New_channel.php:147 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:147 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 +#: ../../Zotlabs/Module/Webpages.php:239 msgid "Create" msgstr "" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 +#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1659 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1692 msgid "Upload" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:694 -#: ../../Zotlabs/Module/Settings.php:720 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Storage/Browser.php:235 +#: ../../Zotlabs/Module/Admin/Channels.php:163 #: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 msgid "Name" msgstr "" @@ -241,7 +244,7 @@ msgid "Type" msgstr "" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1326 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1369 msgid "Size" msgstr "" @@ -250,32 +253,35 @@ msgstr "" msgid "Last Modified" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Admin.php:2135 +#: ../../Zotlabs/Storage/Browser.php:240 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Webpages.php:238 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Module/Admin/Profs.php:154 +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Editpost.php:84 ../../Zotlabs/Module/Webpages.php:240 +#: ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 ../../Zotlabs/Lib/Apps.php:341 #: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 #: ../../include/channel.php:963 ../../include/page_widgets.php:9 #: ../../include/page_widgets.php:39 ../../include/menu.php:113 msgid "Edit" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Settings.php:755 -#: ../../Zotlabs/Module/Admin.php:1052 ../../Zotlabs/Module/Admin.php:1226 -#: ../../Zotlabs/Module/Admin.php:2136 +#: ../../Zotlabs/Storage/Browser.php:241 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Webpages.php:240 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Connedit.php:607 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Module/Editwebpage.php:170 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Channels.php:153 +#: ../../Zotlabs/Module/Admin/Profs.php:155 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Webpages.php:242 +#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Connedit.php:607 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 ../../Zotlabs/Lib/Apps.php:342 #: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "" @@ -307,58 +313,58 @@ msgid "Drop files here to immediately upload" msgstr "" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Setup.php:220 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Api.php:12 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Settings.php:674 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Api.php:12 #: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 #: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 #: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:29 -#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Setup.php:220 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Item.php:214 ../../Zotlabs/Module/Item.php:222 -#: ../../Zotlabs/Module/Item.php:1073 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 +#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 #: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Rate.php:113 #: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Mail.php:121 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 +#: ../../Zotlabs/Module/Regmod.php:21 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Webpages.php:116 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 -#: ../../Zotlabs/Module/Channel.php:268 +#: ../../Zotlabs/Module/Connedit.php:395 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 #: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/items.php:3496 ../../include/photos.php:27 +#: ../../include/photos.php:27 ../../include/items.php:3496 #: ../../include/attach.php:142 ../../include/attach.php:190 #: ../../include/attach.php:253 ../../include/attach.php:267 #: ../../include/attach.php:274 ../../include/attach.php:339 @@ -368,13 +374,13 @@ msgstr "" msgid "Permission denied." msgstr "" -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:95 +#: ../../Zotlabs/Web/Router.php:146 ../../include/help.php:53 msgid "Not Found" msgstr "" #: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 #: ../../Zotlabs/Module/Display.php:120 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Help.php:98 +#: ../../include/help.php:56 msgid "Page not found." msgstr "" @@ -401,11 +407,10 @@ msgstr "" #: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 -#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../include/channel.php:859 +#: ../../Zotlabs/Module/Webpages.php:33 ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "" @@ -421,647 +426,410 @@ msgstr "" msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Setup.php:184 -msgid "$Projectname Server - Setup" +#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 +#: ../../include/widgets.php:102 +msgid "Apps" msgstr "" -#: ../../Zotlabs/Module/Setup.php:188 -msgid "Could not connect to database." +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:192 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Could not create table." +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:509 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." msgstr "" -#: ../../Zotlabs/Module/Setup.php:204 -msgid "Your site database has been installed." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:208 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 -#: ../../Zotlabs/Module/Setup.php:734 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "System check" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:960 -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/bb2diaspora.php:507 ../../include/event.php:52 +#: ../../include/event.php:84 +msgid "Location:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:273 -msgid "Check again" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database connection" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:296 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 +#: ../../include/connections.php:78 ../../include/conversation.php:957 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Server Name" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" msgstr "" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Port" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Name" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" msgstr "" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Login Password" +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../include/contact_widgets.php:23 +msgid "Find" msgstr "" -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Name" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:307 -msgid "Database Type" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" msgstr "" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "Site administrator email address" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" msgstr "" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" msgstr "" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Website URL" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" msgstr "" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 -msgid "Please select a default timezone for your website" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 -#: ../../Zotlabs/Module/Settings.php:692 ../../Zotlabs/Module/Settings.php:815 -#: ../../Zotlabs/Module/Settings.php:906 ../../Zotlabs/Module/Settings.php:932 -#: ../../Zotlabs/Module/Settings.php:955 -#: ../../Zotlabs/Module/Settings.php:1060 -#: ../../Zotlabs/Module/Settings.php:1255 ../../Zotlabs/Module/Admin.php:498 -#: ../../Zotlabs/Module/Admin.php:699 ../../Zotlabs/Module/Admin.php:784 -#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 -#: ../../Zotlabs/Module/Admin.php:1443 ../../Zotlabs/Module/Admin.php:1670 -#: ../../Zotlabs/Module/Admin.php:1755 ../../Zotlabs/Module/Admin.php:2138 -#: ../../Zotlabs/Module/Appman.php:126 ../../Zotlabs/Module/Pdledit.php:74 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 -#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Events.php:484 -#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 -#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:712 -#: ../../include/js_strings.php:22 ../../include/widgets.php:796 -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Submit" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" msgstr "" -#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:485 -msgid "Basic/Minimal Social Networking" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" msgstr "" -#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:486 -msgid "Standard Configuration (default)" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../Zotlabs/Module/Setup.php:338 ../../Zotlabs/Module/Admin.php:487 -msgid "Professional" +#: ../../Zotlabs/Module/Admin.php:62 ../../Zotlabs/Module/Display.php:40 +#: ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin/Plugins.php:254 +#: ../../Zotlabs/Module/Admin/Themes.php:69 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3417 +msgid "Item not found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:344 -msgid "Site settings" +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# Accounts" msgstr "" -#: ../../Zotlabs/Module/Setup.php:359 ../../Zotlabs/Module/Admin.php:508 -msgid "Server Configuration/Role" +#: ../../Zotlabs/Module/Admin.php:98 +msgid "# blocked accounts" msgstr "" -#: ../../Zotlabs/Module/Setup.php:400 -msgid "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Admin.php:99 +msgid "# expired accounts" msgstr "" -#: ../../Zotlabs/Module/Setup.php:401 -msgid "PHP version" +#: ../../Zotlabs/Module/Admin.php:100 +msgid "# expiring accounts" msgstr "" -#: ../../Zotlabs/Module/Setup.php:416 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Admin.php:111 +msgid "# Channels" msgstr "" -#: ../../Zotlabs/Module/Setup.php:417 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." +#: ../../Zotlabs/Module/Admin.php:112 +msgid "# primary" msgstr "" -#: ../../Zotlabs/Module/Setup.php:421 -msgid "PHP executable path" +#: ../../Zotlabs/Module/Admin.php:113 +msgid "# clones" msgstr "" -#: ../../Zotlabs/Module/Setup.php:421 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Message queues" msgstr "" -#: ../../Zotlabs/Module/Setup.php:426 -msgid "Command line PHP" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Setup.php:435 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../Zotlabs/Module/Admin.php:141 +#: ../../Zotlabs/Module/Admin/Accounts.php:165 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Plugins.php:336 +#: ../../Zotlabs/Module/Admin/Plugins.php:427 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Themes.php:120 +#: ../../Zotlabs/Module/Admin/Themes.php:154 +msgid "Administration" msgstr "" -#: ../../Zotlabs/Module/Setup.php:436 -msgid "This is required for message delivery to work." +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" msgstr "" -#: ../../Zotlabs/Module/Setup.php:439 -msgid "PHP register_argc_argv" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" msgstr "" -#: ../../Zotlabs/Module/Setup.php:457 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" msgstr "" -#: ../../Zotlabs/Module/Setup.php:462 -msgid "You can adjust these settings in the servers php.ini." +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" msgstr "" -#: ../../Zotlabs/Module/Setup.php:464 -msgid "PHP upload limits" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active plugins" msgstr "" -#: ../../Zotlabs/Module/Setup.php:487 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" msgstr "" -#: ../../Zotlabs/Module/Setup.php:488 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "Generate encryption keys" +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:503 -msgid "libCurl PHP module" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" msgstr "" -#: ../../Zotlabs/Module/Setup.php:504 -msgid "GD graphics PHP module" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "OpenSSL PHP module" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mysqli or postgres PHP module" +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 +msgid "Public Hubs" msgstr "" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "mb_string PHP module" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." msgstr "" -#: ../../Zotlabs/Module/Setup.php:508 -msgid "xml PHP module" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" msgstr "" -#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 -msgid "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" msgstr "" -#: ../../Zotlabs/Module/Setup.php:512 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 -msgid "proc_open" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:526 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:530 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:538 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:542 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:546 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:564 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:565 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:566 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:567 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:570 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:584 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:585 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:587 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:590 -#, php-format -msgid "%s is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:606 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:610 -msgid "store is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:643 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:644 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:645 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:646 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:648 -msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:650 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:653 -msgid "SSL certificate validation" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:659 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:662 -msgid "Url rewrite is working" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:671 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:695 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:732 -msgid "

    What next

    " -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:733 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:95 -msgid "No such group" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:135 -msgid "No such channel" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:140 -msgid "forum" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:152 -msgid "Search Results For:" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:218 -msgid "Privacy group is empty" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:227 -msgid "Privacy group: " -msgstr "" - -#: ../../Zotlabs/Module/Network.php:253 -msgid "Invalid connection." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" msgstr "" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation instructions." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:960 +msgid "Ratings" msgstr "" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." +#: ../../Zotlabs/Module/Pubsites.php:51 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" msgstr "" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." +#: ../../Zotlabs/Module/Pubsites.php:59 ../../Zotlabs/Module/Events.php:680 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Webpages.php:246 ../../include/page_widgets.php:42 +msgid "View" msgstr "" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." msgstr "" -#: ../../Zotlabs/Module/Register.php:221 -msgid "Terms of Service" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." msgstr "" -#: ../../Zotlabs/Module/Register.php:227 -#, php-format -msgid "I accept the %s for this website" +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" msgstr "" -#: ../../Zotlabs/Module/Register.php:229 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." msgstr "" -#: ../../Zotlabs/Module/Register.php:233 -msgid "Your email address" +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" msgstr "" -#: ../../Zotlabs/Module/Register.php:234 -msgid "Choose a password" +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" msgstr "" -#: ../../Zotlabs/Module/Register.php:235 -msgid "Please re-enter your password" +#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 +#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Plugins.php:429 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:241 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Settings/Account.php:126 +#: ../../Zotlabs/Module/Settings/Channel.php:452 +#: ../../Zotlabs/Module/Settings/Display.php:194 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/js_strings.php:22 +#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" msgstr "" -#: ../../Zotlabs/Module/Register.php:236 -msgid "Please enter your invitation code" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:95 ../../include/conversation.php:1671 +msgid "Photos" msgstr "" -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 -msgid "Name or caption" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../include/conversation.php:1247 ../../include/conversation.php:1296 +msgid "Cancel" msgstr "" -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." msgstr "" -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "Choose a short nickname" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." msgstr "" -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -#, php-format +#: ../../Zotlabs/Module/Page.php:131 msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Channel role and privacy" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Select a channel role with your privacy requirements." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Read more about roles" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:241 -msgid "no" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:241 -msgid "yes" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:253 ../../Zotlabs/Module/Admin.php:499 -msgid "Registration" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." msgstr "" -#: ../../Zotlabs/Module/Register.php:258 -msgid "Membership on this site is by invitation only." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" msgstr "" -#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 -#: ../../boot.php:1720 -msgid "Register" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" msgstr "" -#: ../../Zotlabs/Module/Register.php:271 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:969 +#: ../../include/text.php:981 ../../include/widgets.php:201 +msgid "Save" msgstr "" #: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 @@ -1082,4600 +850,4722 @@ msgid "" "and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Settings.php:683 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 #: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 #: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 +#: ../../Zotlabs/Module/Admin/Site.php:223 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 #: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 msgid "Yes" msgstr "" -#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Settings.php:683 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 #: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 #: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Connedit.php:686 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 msgid "No" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:718 -#: ../../Zotlabs/Module/Admin.php:1457 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:316 -msgid "Not valid email." +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" msgstr "" -#: ../../Zotlabs/Module/Settings.php:319 -msgid "Protected email address. Cannot change to that email." +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" msgstr "" -#: ../../Zotlabs/Module/Settings.php:328 -msgid "System failure storing new email. Please try again." +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" msgstr "" -#: ../../Zotlabs/Module/Settings.php:336 -msgid "Technical skill level updated" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" msgstr "" -#: ../../Zotlabs/Module/Settings.php:352 -msgid "Password verification failed." +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1572 +msgid "New" msgstr "" -#: ../../Zotlabs/Module/Settings.php:359 -msgid "Passwords do not match. Password unchanged." +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 +msgid "All" msgstr "" -#: ../../Zotlabs/Module/Settings.php:363 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:377 -msgid "Password changed." +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:379 -msgid "Password update failed. Please try again." +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:440 ../../Zotlabs/Module/Settings.php:444 -#: ../../Zotlabs/Module/Settings.php:445 ../../Zotlabs/Module/Settings.php:448 -#: ../../Zotlabs/Module/Settings.php:459 ../../Zotlabs/Module/Connedit.php:627 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:531 -msgid "Friends" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:628 -msgid "Settings updated." +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:691 ../../Zotlabs/Module/Settings.php:717 -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Add application" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:693 ../../Zotlabs/Module/Settings.php:719 -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1428 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 -#: ../../include/conversation.php:1292 -msgid "Cancel" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:694 -msgid "Name of application" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:695 ../../Zotlabs/Module/Settings.php:721 -msgid "Consumer Key" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" msgstr "" -#: ../../Zotlabs/Module/Settings.php:695 ../../Zotlabs/Module/Settings.php:696 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Settings.php:696 ../../Zotlabs/Module/Settings.php:722 -msgid "Consumer Secret" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Settings.php:697 ../../Zotlabs/Module/Settings.php:723 -msgid "Redirect" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Settings.php:697 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Settings.php:698 ../../Zotlabs/Module/Settings.php:724 -msgid "Icon url" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" msgstr "" -#: ../../Zotlabs/Module/Settings.php:698 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" +#: ../../Zotlabs/Module/Connections.php:270 +msgid "Status" msgstr "" -#: ../../Zotlabs/Module/Settings.php:709 -msgid "Application not found." +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" msgstr "" -#: ../../Zotlabs/Module/Settings.php:752 -msgid "Connected Apps" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Client key starts with" +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "Approve" msgstr "" -#: ../../Zotlabs/Module/Settings.php:757 -msgid "No name" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" msgstr "" -#: ../../Zotlabs/Module/Settings.php:758 -msgid "Remove authorization" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Settings.php:771 -msgid "No feature settings configured" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Settings.php:778 -msgid "Feature/Addon Settings" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:898 ../../include/nav.php:191 +msgid "Connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:798 -msgid "Beginner/Basic" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:968 +#: ../../include/text.php:980 ../../include/nav.php:170 +#: ../../include/acl_selectors.php:174 ../../include/widgets.php:315 +msgid "Search" msgstr "" -#: ../../Zotlabs/Module/Settings.php:799 -msgid "Novice - not skilled but willing to learn" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:800 -msgid "Intermediate - somewhat comfortable" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" msgstr "" -#: ../../Zotlabs/Module/Settings.php:801 -msgid "Advanced - very comfortable" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:802 -msgid "Expert - I can write computer code" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" msgstr "" -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Wizard - I probably know more than you do" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:810 -msgid "Account Settings" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" msgstr "" -#: ../../Zotlabs/Module/Settings.php:811 -msgid "Current Password" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:812 -msgid "Enter New Password" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Settings.php:813 -msgid "Confirm New Password" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 +msgid "female" msgstr "" -#: ../../Zotlabs/Module/Settings.php:813 -msgid "Leave password fields blank unless changing" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 +#, php-format +msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:814 -msgid "Your technical skill level" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 +msgid "male" msgstr "" -#: ../../Zotlabs/Module/Settings.php:814 -msgid "Used to provide a member experience matched to your comfort level" +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 +#, php-format +msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:816 -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "Email Address:" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 +#, php-format +msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings.php:817 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 +msgid "cover photo" msgstr "" -#: ../../Zotlabs/Module/Settings.php:818 -msgid "Remove this account including all its channels" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." msgstr "" -#: ../../Zotlabs/Module/Settings.php:852 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:889 ../../include/widgets.php:647 -msgid "Guest Access Tokens" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" msgstr "" -#: ../../Zotlabs/Module/Settings.php:896 -msgid "Login Name" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings/Channel.php:399 +msgid "or" msgstr "" -#: ../../Zotlabs/Module/Settings.php:897 -msgid "Login Password" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" msgstr "" -#: ../../Zotlabs/Module/Settings.php:898 -msgid "Expires (yyyy-mm-dd)" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" msgstr "" -#: ../../Zotlabs/Module/Settings.php:899 ../../Zotlabs/Module/Connedit.php:782 -msgid "Their Settings" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" msgstr "" -#: ../../Zotlabs/Module/Settings.php:900 ../../Zotlabs/Module/Connedit.php:783 -msgid "My Settings" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../Zotlabs/Module/Settings.php:902 ../../Zotlabs/Module/Connedit.php:778 -msgid "inherited" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" msgstr "" -#: ../../Zotlabs/Module/Settings.php:904 ../../Zotlabs/Module/Connedit.php:785 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Settings.php:905 ../../Zotlabs/Module/Connedit.php:786 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Settings.php:923 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:689 -msgid "Off" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" msgstr "" -#: ../../Zotlabs/Module/Settings.php:923 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:689 -msgid "On" +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:930 -msgid "Additional Features" +#: ../../Zotlabs/Module/Network.php:218 +msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Settings.php:954 -msgid "Connector Settings" +#: ../../Zotlabs/Module/Network.php:227 +msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Settings.php:1001 -msgid "No special theme for mobile devices" +#: ../../Zotlabs/Module/Network.php:253 +msgid "Invalid connection." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1004 -#, php-format -msgid "%s - (Experimental)" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1007 ../../Zotlabs/Module/Admin.php:410 -msgid "mobile" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Display Settings" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1056 -msgid "Theme Settings" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "Custom Theme Settings" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Content Settings" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1259 +msgid "Title (optional)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1064 -msgid "Display Theme:" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "Select scheme" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1067 -msgid "Mobile Theme:" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "Preload images before rendering the page" +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1069 -msgid "Enable user zoom on mobile devices" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1070 -msgid "Update browser every xx seconds" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1070 -msgid "Minimum of 10 seconds, no maximum" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1071 -msgid "Maximum number of conversations to load at any time:" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1071 -msgid "Maximum of 100 items" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1072 -msgid "Show emoticons (smilies) as images" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1073 -msgid "Link post titles to source" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1074 -msgid "System Page Layout Editor - (advanced)" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1077 -msgid "Use blog/list mode on channel page" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1077 -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "(comments displayed separately)" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Use blog/list mode on grid page" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2306 +msgid "Menus" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1079 -msgid "Channel page max height of content (in pixels)" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1079 -#: ../../Zotlabs/Module/Settings.php:1080 -msgid "click to expand content exceeding this height" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Webpages.php:251 +#: ../../include/page_widgets.php:47 +msgid "Created" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1080 -msgid "Grid page max height of content (in pixels)" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Blocks.php:158 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:252 +#: ../../include/page_widgets.php:48 +msgid "Edited" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1110 -msgid "Nobody except yourself" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1111 -msgid "Only those you specifically allow" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Approved connections" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1113 -msgid "Any connections" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1114 -msgid "Anybody on this website" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1115 -msgid "Anybody in this network" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1116 -msgid "Anybody authenticated" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1117 -msgid "Anybody on the internet" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1193 -msgid "Publish your default profile in the network directory" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1198 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "or" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Your channel address is" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1253 -msgid "Channel Settings" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "Basic Settings" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1261 ../../include/channel.php:1164 -msgid "Full Name:" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1263 -msgid "Your Timezone:" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "Default Post Location:" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "Geographical location to display on your posts" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1265 -msgid "Use Browser Location:" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1267 -msgid "Adult Content" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1267 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1269 -msgid "Security and Privacy Settings" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1272 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1274 -msgid "Hide my online presence" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1274 -msgid "Prevents displaying in your profile that you are online" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1276 -msgid "Simple Privacy Settings:" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "" -"Very Public - extremely permissive (should be used with caution)" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1278 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1279 -msgid "Private - default private, never open or public" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Blocked - default blocked to/from everybody" +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "Allow others to tag your posts" +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1282 +#: ../../Zotlabs/Module/Setup.php:192 msgid "" -"Often used by the community to retro-actively flag inappropriate content" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1284 -msgid "Channel Permission Limits" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "Expire other channel content after this many days" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "0 or blank to use the website limit." +#: ../../Zotlabs/Module/Setup.php:208 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1286 -#, php-format -msgid "This website expires after %d days." +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "This website does not expire imported content." +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "The website limit takes precedence if lower than your limit." +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:949 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +msgid "Next" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1287 -msgid "Maximum Friend Requests/Day:" +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1287 -msgid "May reduce spam activity" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1288 -msgid "Default Access Control List (ACL)" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1289 ../../Zotlabs/Module/Mitem.php:154 -#: ../../Zotlabs/Module/Mitem.php:231 -msgid "(click to open/close)" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1290 -msgid "Use my default audience setting for the type of object published" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1297 -msgid "Channel permissions category:" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Maximum private messages per day from unknown people:" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Useful to reduce spamming" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1306 -msgid "Notification Settings" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "By default post a status message when:" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1308 -msgid "accepting a friend request" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1309 -msgid "joining a forum/community" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1310 -msgid "making an interesting profile change" +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Send a notification email when:" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1312 -msgid "You receive a connection request" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1313 -msgid "Your connections are confirmed" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1314 -msgid "Someone writes on your profile wall" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1315 -msgid "Someone writes a followup comment" +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1316 -msgid "You receive a private message" +#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin/Site.php:242 +msgid "Basic/Minimal Social Networking" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1317 -msgid "You receive a friend suggestion" +#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin/Site.php:243 +msgid "Standard Configuration (default)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1318 -msgid "You are tagged in a post" +#: ../../Zotlabs/Module/Setup.php:338 ../../Zotlabs/Module/Admin/Site.php:244 +msgid "Professional" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1319 -msgid "You are poked/prodded/etc. in a post" +#: ../../Zotlabs/Module/Setup.php:359 ../../Zotlabs/Module/Admin/Site.php:277 +msgid "Server Configuration/Role" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1322 -msgid "Show visual notifications including:" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1324 -msgid "Unseen grid activity" +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1325 -msgid "Unseen channel activity" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1326 -msgid "Unseen private messages" +#: ../../Zotlabs/Module/Setup.php:417 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1326 -#: ../../Zotlabs/Module/Settings.php:1331 -#: ../../Zotlabs/Module/Settings.php:1332 -#: ../../Zotlabs/Module/Settings.php:1333 -msgid "Recommended" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1327 -msgid "Upcoming events" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1328 -msgid "Events today" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1329 -msgid "Upcoming birthdays" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1329 -msgid "Not available in all themes" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1330 -msgid "System (personal) notifications" +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1331 -msgid "System info messages" +#: ../../Zotlabs/Module/Setup.php:457 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1332 -msgid "System critical alerts" +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1333 -msgid "New connections" +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1334 -msgid "System Registrations" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1335 +#: ../../Zotlabs/Module/Setup.php:488 msgid "" -"Also show new wall posts, private messages and connections under Notices" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1337 -msgid "Notify me of events this many days in advance" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1337 -msgid "Must be greater than 0" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1339 -msgid "Advanced Account/Page Type Settings" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1340 -msgid "Change the behaviour of this account for special situations" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1342 -msgid "Miscellaneous Settings" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1343 -msgid "Default photo upload folder" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1343 -#: ../../Zotlabs/Module/Settings.php:1344 -msgid "%Y - current year, %m - current month" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1344 -msgid "Default file upload folder" +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1346 -msgid "Personal menu to display in your channel pages" +#: ../../Zotlabs/Module/Setup.php:512 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1347 ../../Zotlabs/Module/Removeme.php:64 -msgid "Remove Channel" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1348 -msgid "Remove this channel." +#: ../../Zotlabs/Module/Setup.php:518 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1349 -msgid "Firefox Share $Projectname provider" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1350 -msgid "Start calendar week on monday" +#: ../../Zotlabs/Module/Setup.php:530 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/conversation.php:1667 ../../include/nav.php:95 -msgid "Photos" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." +#: ../../Zotlabs/Module/Setup.php:538 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." msgstr "" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." msgstr "" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2055 -#: ../../Zotlabs/Module/Admin.php:2075 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." msgstr "" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." +#: ../../Zotlabs/Module/Setup.php:567 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." msgstr "" -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 -#: ../../Zotlabs/Module/Admin.php:1583 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3417 -msgid "Item not found." +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" msgstr "" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" +#: ../../Zotlabs/Module/Setup.php:584 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" +#: ../../Zotlabs/Module/Setup.php:585 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." msgstr "" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" +#: ../../Zotlabs/Module/Setup.php:587 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" +#: ../../Zotlabs/Module/Setup.php:590 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" +#: ../../Zotlabs/Module/Setup.php:606 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" msgstr "" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" msgstr "" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" msgstr "" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:496 -#: ../../Zotlabs/Module/Admin.php:722 ../../Zotlabs/Module/Admin.php:766 -#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 -#: ../../Zotlabs/Module/Admin.php:1350 ../../Zotlabs/Module/Admin.php:1441 -#: ../../Zotlabs/Module/Admin.php:1634 ../../Zotlabs/Module/Admin.php:1668 -#: ../../Zotlabs/Module/Admin.php:1753 -msgid "Administration" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:726 -msgid "Pending registrations" +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." msgstr "" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:727 -msgid "Active plugins" +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" msgstr "" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" msgstr "" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" +#: ../../Zotlabs/Module/Setup.php:671 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." msgstr "" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2896 -msgid "Default" +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " msgstr "" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" +#: ../../Zotlabs/Module/Setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." msgstr "" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" msgstr "" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" +#: ../../Zotlabs/Module/Photos.php:112 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" +#: ../../Zotlabs/Module/Photos.php:133 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" msgstr "" -#: ../../Zotlabs/Module/Admin.php:497 ../../include/widgets.php:1523 -msgid "Site" +#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "File upload" +#: ../../Zotlabs/Module/Photos.php:520 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Policies" +#: ../../Zotlabs/Module/Photos.php:569 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 ../../include/contact_widgets.php:16 -msgid "Advanced" +#: ../../Zotlabs/Module/Photos.php:608 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Admin.php:506 -msgid "Site name" +#: ../../Zotlabs/Module/Photos.php:611 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Banner/Logo" +#: ../../Zotlabs/Module/Photos.php:647 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Administrator Information" +#: ../../Zotlabs/Module/Photos.php:651 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +#: ../../Zotlabs/Module/Photos.php:652 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "System language" +#: ../../Zotlabs/Module/Photos.php:653 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "System theme" +#: ../../Zotlabs/Module/Photos.php:654 +msgid "Caption (optional):" msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +#: ../../Zotlabs/Module/Photos.php:655 +msgid "Description (optional):" msgstr "" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Mobile system theme" +#: ../../Zotlabs/Module/Photos.php:658 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 +#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Chat.php:234 +#: ../../include/acl_selectors.php:179 +msgid "Permissions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Theme for mobile devices" +#: ../../Zotlabs/Module/Photos.php:686 +msgid "Album name could not be decoded" msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allow Feeds as Connections" +#: ../../Zotlabs/Module/Photos.php:734 +msgid "Contact Photos" msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "(Heavy system resource usage)" +#: ../../Zotlabs/Module/Photos.php:757 +msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Maximum image size" +#: ../../Zotlabs/Module/Photos.php:759 +msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Does this site allow new member registration?" +#: ../../Zotlabs/Module/Photos.php:814 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Invitation only" +#: ../../Zotlabs/Module/Photos.php:861 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Which best describes the types of account offered by this hub?" +#: ../../Zotlabs/Module/Photos.php:921 +msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Register text" +#: ../../Zotlabs/Module/Photos.php:922 +msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Will be displayed prominently on the registration page." +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Site homepage to show visitors (default: login box)" +#: ../../Zotlabs/Module/Photos.php:940 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 +msgid "Previous" msgstr "" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." +#: ../../Zotlabs/Module/Photos.php:944 +msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Preserve site homepage URL" +#: ../../Zotlabs/Module/Photos.php:989 +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" msgstr "" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:524 -msgid "Accounts abandoned after x days" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:524 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CCW (left)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Allowed friend domains" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Move photo to album" msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:526 -msgid "Verify Email Addresses" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:526 -msgid "" -"Check to verify email addresses used in account registration (recommended)." +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" msgstr "" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Force publish" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" msgstr "" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Import Public Streams" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" msgstr "" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Login on Homepage" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 +msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Webpages.php:241 +#: ../../include/conversation.php:1231 +msgid "Share" msgstr "" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Enable context help" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 +#: ../../include/conversation.php:743 +msgid "Please wait" msgstr "" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Display contextual help for the current page when the help button is pressed." +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:709 +msgid "This is you" msgstr "" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Directory Server URL" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 +msgid "Comment" msgstr "" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Default directory server" +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:721 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 +msgid "Preview" msgstr "" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Proxy user" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Admin.php:535 -msgid "Proxy URL" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Admin.php:536 -msgid "Network timeout" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../Zotlabs/Module/Admin.php:536 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../Zotlabs/Module/Admin.php:537 -msgid "Delivery interval" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../Zotlabs/Module/Admin.php:537 -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." +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "Deliveries per process" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../Zotlabs/Module/Admin.php:539 -msgid "Poll interval" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1762 +msgid "View all" msgstr "" -#: ../../Zotlabs/Module/Admin.php:539 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1786 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:540 -msgid "Maximum Load Average" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" msgstr "" -#: ../../Zotlabs/Module/Admin.php:540 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:541 -msgid "Expiration period in days for imported (grid/network) content" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" msgstr "" -#: ../../Zotlabs/Module/Admin.php:541 -msgid "0 for no expiration of imported content" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Admin.php:689 -#, php-format -msgid "Lock feature %s" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Admin.php:697 -msgid "Manage Additional Features" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 +#: ../../include/acl_selectors.php:181 +msgid "Close" msgstr "" -#: ../../Zotlabs/Module/Admin.php:714 -msgid "No server found" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" msgstr "" -#: ../../Zotlabs/Module/Admin.php:721 ../../Zotlabs/Module/Admin.php:1059 -msgid "ID" +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Admin.php:721 -msgid "for channel" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" msgstr "" -#: ../../Zotlabs/Module/Admin.php:721 -msgid "on server" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Admin.php:721 ../../Zotlabs/Module/Connections.php:270 -msgid "Status" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" msgstr "" -#: ../../Zotlabs/Module/Admin.php:723 -msgid "Server" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:757 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." msgstr "" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/" -"
    https://vimeo.com/
    https://soundcloud.com/
    " +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." msgstr "" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:767 ../../include/widgets.php:1526 -msgid "Security" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:769 -msgid "Block public" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:769 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" msgstr "" -#: ../../Zotlabs/Module/Admin.php:770 -msgid "Set \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" msgstr "" -#: ../../Zotlabs/Module/Admin.php:771 -msgid "Set \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../Zotlabs/Module/Admin.php:772 -msgid "Allowed email domains" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../Zotlabs/Module/Admin.php:772 -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" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" msgstr "" -#: ../../Zotlabs/Module/Admin.php:773 -msgid "Not allowed email domains" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" msgstr "" -#: ../../Zotlabs/Module/Admin.php:773 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Admin.php:774 -msgid "Allow communications only from these sites" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" msgstr "" -#: ../../Zotlabs/Module/Admin.php:774 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" msgstr "" -#: ../../Zotlabs/Module/Admin.php:775 -msgid "Block communications from these sites" +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "Allow communications only from these channels" +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" msgstr "" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" msgstr "" -#: ../../Zotlabs/Module/Admin.php:777 -msgid "Block communications from these channels" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" msgstr "" -#: ../../Zotlabs/Module/Admin.php:778 -msgid "Only allow embeds from secure (SSL) websites and links." +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" msgstr "" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "Allow unfiltered embedded HTML content only from these domains" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" msgstr "" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "One site per line. By default embedded content is filtered." +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" msgstr "" -#: ../../Zotlabs/Module/Admin.php:780 -msgid "Block embedded HTML from these domains" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" msgstr "" -#: ../../Zotlabs/Module/Admin.php:798 -msgid "Update has been marked successful" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" msgstr "" -#: ../../Zotlabs/Module/Admin.php:808 -#, php-format -msgid "Executing %s failed. Check system logs." +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" msgstr "" -#: ../../Zotlabs/Module/Admin.php:811 -#, php-format -msgid "Update %s was successfully applied." +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" msgstr "" -#: ../../Zotlabs/Module/Admin.php:815 +#: ../../Zotlabs/Module/Dreport.php:146 #, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +msgid "Delivery report for %1$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:818 -#, php-format -msgid "Update function %s could not be found." +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" msgstr "" -#: ../../Zotlabs/Module/Admin.php:834 -msgid "No failed updates." +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" msgstr "" -#: ../../Zotlabs/Module/Admin.php:838 -msgid "Failed Updates" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" msgstr "" -#: ../../Zotlabs/Module/Admin.php:840 -msgid "Mark success (if update was manually applied)" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" msgstr "" -#: ../../Zotlabs/Module/Admin.php:841 -msgid "Attempt to execute this update step automatically" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." msgstr "" -#: ../../Zotlabs/Module/Admin.php:872 -msgid "Queue Statistics" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." msgstr "" -#: ../../Zotlabs/Module/Admin.php:873 -msgid "Total Entries" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3950 +msgid "Privacy group not found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:874 -msgid "Priority" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:875 -msgid "Destination URL" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." msgstr "" -#: ../../Zotlabs/Module/Admin.php:876 -msgid "Mark hub permanently offline" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:877 -msgid "Empty queue for this hub" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:878 -msgid "Last known contact" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." msgstr "" -#: ../../Zotlabs/Module/Admin.php:914 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:921 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:957 -msgid "Account not found" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" msgstr "" -#: ../../Zotlabs/Module/Admin.php:968 -#, php-format -msgid "Account '%s' deleted" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:976 -#, php-format -msgid "Account '%s' blocked" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../Zotlabs/Module/Admin.php:984 -#, php-format -msgid "Account '%s' unblocked" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 -#: ../../include/widgets.php:1524 -msgid "Accounts" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 -msgid "select all" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1047 -msgid "Registrations waiting for confirm" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1048 -msgid "Request date" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 -#: ../../include/network.php:2208 -msgid "Email" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "No registrations." +#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 +msgid "Nothing to import." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1050 -#: ../../Zotlabs/Module/Connections.php:275 -msgid "Approve" +#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Deny" +#: ../../Zotlabs/Module/Import_items.php:72 +#: ../../Zotlabs/Module/Import.php:101 +msgid "Imported file is empty." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 -msgid "Block" +#: ../../Zotlabs/Module/Import_items.php:88 +#: ../../Zotlabs/Module/Import.php:123 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 -msgid "Unblock" +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 -msgid "All Channels" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1062 -msgid "Register date" +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "Use this form to import existing posts and content from an export file." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1063 -msgid "Last login" +#: ../../Zotlabs/Module/Import_items.php:121 +#: ../../Zotlabs/Module/Import.php:549 +msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1064 -msgid "Expires" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1065 -msgid "Service Class" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1067 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1068 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1104 +#: ../../Zotlabs/Module/Invite.php:79 #, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" +msgid "%s : Message delivery failed." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1113 +#: ../../Zotlabs/Module/Invite.php:83 #, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" +msgid "%d message sent." +msgid_plural "%d messages sent." msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:1119 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1139 -msgid "Channel not found" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1149 -#, php-format -msgid "Channel '%s' deleted" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' censored" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' uncensored" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "1. Register at any $Projectname location (they are all inter-connected)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code allowed" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code disallowed" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1525 -msgid "Channels" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "Censor" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1228 -msgid "Uncensor" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1229 -msgid "Allow Code" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary " +"location." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1230 -msgid "Disallow Code" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1646 -msgid "Channel" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1235 -msgid "UID" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1237 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin/Channels.php:164 msgid "Address" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1239 -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?" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1240 -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?" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1298 -#, php-format -msgid "Plugin %s disabled." +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1303 -#, php-format -msgid "Plugin %s enabled." +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1319 ../../Zotlabs/Module/Admin.php:1607 -msgid "Disable" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1322 ../../Zotlabs/Module/Admin.php:1609 -msgid "Enable" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1351 ../../Zotlabs/Module/Admin.php:1442 -#: ../../include/widgets.php:1528 -msgid "Plugins" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1636 -msgid "Toggle" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1637 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:680 -#: ../../include/nav.php:213 -msgid "Settings" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1360 ../../Zotlabs/Module/Admin.php:1646 -msgid "Author: " +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1361 ../../Zotlabs/Module/Admin.php:1647 -msgid "Maintainer: " +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1362 -msgid "Minimum project version: " +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1363 -msgid "Maximum project version: " +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1364 -msgid "Minimum PHP version: " +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1365 -msgid "Compatible Server Roles: " +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1988 +#: ../../include/conversation.php:120 +msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1366 -msgid "Requires: " +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1994 ../../include/conversation.php:148 +msgid "status" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1367 ../../Zotlabs/Module/Admin.php:1447 -msgid "Disabled - version incompatibility" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1991 +#: ../../include/conversation.php:123 ../../include/event.php:958 +msgid "event" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1416 -msgid "Enter the public git repository URL of the plugin repo." +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1417 -msgid "Plugin repo git URL" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1418 -msgid "Custom repo name" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1418 -msgid "(optional)" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1419 -msgid "Download Plugin Repo" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1426 -msgid "Install new repo" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1427 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1449 -msgid "Manage Repos" +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1450 -msgid "Installed Plugin Repositories" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1451 -msgid "Install a New Plugin Repository" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1458 -msgid "Switch branch" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1459 ../../Zotlabs/Module/Photos.php:1000 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1572 -msgid "No themes found." +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1628 -msgid "Screenshot" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1635 ../../Zotlabs/Module/Admin.php:1669 -#: ../../include/widgets.php:1529 -msgid "Themes" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1674 -msgid "[Experimental]" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1675 -msgid "[Unsupported]" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1699 -msgid "Log settings updated." +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1754 ../../include/widgets.php:1550 -#: ../../include/widgets.php:1560 -msgid "Logs" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1756 -msgid "Clear" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1762 -msgid "Debugging" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1763 -msgid "Log file" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1763 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1764 -msgid "Log level" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2050 -msgid "New Profile Field" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2051 ../../Zotlabs/Module/Admin.php:2071 -msgid "Field nickname" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:486 +msgid "(click to open/close)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2051 ../../Zotlabs/Module/Admin.php:2071 -msgid "System name of field" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2052 ../../Zotlabs/Module/Admin.php:2072 -msgid "Input type" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Admin.php:2073 -msgid "Field Name" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Admin.php:2073 -msgid "Label on profile pages" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2054 ../../Zotlabs/Module/Admin.php:2074 -msgid "Help text" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2054 ../../Zotlabs/Module/Admin.php:2074 -msgid "Additional info (optional)" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2064 -msgid "Field definition not found" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2070 -msgid "Edit Profile Field" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2128 ../../include/widgets.php:1531 -msgid "Profile Fields" +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2129 -msgid "Basic Profile Fields" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2130 -msgid "Advanced Profile Fields" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2130 -msgid "(In addition to basic fields)" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2132 -msgid "All available fields" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2133 -msgid "Custom Fields" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2137 -msgid "Create Custom Field" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" msgstr "" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" msgstr "" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" msgstr "" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" msgstr "" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." msgstr "" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1568 -msgid "New" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." msgstr "" -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 -msgid "All" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" msgstr "" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" msgstr "" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." msgstr "" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 +msgid "Password Reset" msgstr "" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." msgstr "" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" msgstr "" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" msgstr "" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" msgstr "" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" msgstr "" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Ignore" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" msgstr "" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:855 ../../include/nav.php:191 -msgid "Connections" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" msgstr "" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:174 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/widgets.php:315 ../../include/nav.php:170 -msgid "Search" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." msgstr "" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." msgstr "" -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 -msgid "Find" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 -msgid "female" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 -#, php-format -msgid "%1$s updated her %2$s" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 -msgid "male" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 -#, php-format -msgid "%1$s updated his %2$s" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 -#, php-format -msgid "%1$s updated their %2$s" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 -msgid "cover photo" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1563 +#: ../../include/widgets.php:105 +msgid "Personal" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." msgstr "" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" msgstr "" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" msgstr "" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" msgstr "" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" msgstr "" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" msgstr "" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 -#: ../../include/bb2diaspora.php:507 ../../include/event.php:52 -#: ../../include/event.php:84 -msgid "Location:" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" msgstr "" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" msgstr "" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" msgstr "" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/connections.php:78 -#: ../../include/channel.php:1034 ../../include/conversation.php:957 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 -msgid "Connect" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" msgstr "" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" msgstr "" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" msgstr "" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" msgstr "" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" msgstr "" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" msgstr "" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" msgstr "" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" msgstr "" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" msgstr "" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" msgstr "" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" msgstr "" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" msgstr "" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 +#: ../../include/nav.php:91 +msgid "Edit Profiles" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 -#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1148 -msgid "Insert web link" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 -msgid "Title (optional)" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" +#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:79 +msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" +#: ../../Zotlabs/Module/Admin/Accounts.php:90 +#, php-format +msgid "Account '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" +#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#, php-format +msgid "Account '%s' blocked" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" +#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#, php-format +msgid "Account '%s' unblocked" msgstr "" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557 +msgid "Accounts" msgstr "" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "select all" msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +msgid "Registrations waiting for confirm" msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Request date" msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2208 +msgid "Email" msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "No registrations." msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +msgid "Deny" msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" msgstr "" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 -msgid "Menus" +#: ../../Zotlabs/Module/Admin/Accounts.php:181 +msgid "ID" msgstr "" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 +msgid "All Channels" msgstr "" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:249 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "Register date" msgstr "" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:250 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Last login" msgstr "" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Expires" msgstr "" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Service Class" msgstr "" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" +#: ../../Zotlabs/Module/Admin/Accounts.php:189 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." +#: ../../Zotlabs/Module/Admin/Channels.php:30 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:39 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:45 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:66 +msgid "Channel not found" msgstr "" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." +#: ../../Zotlabs/Module/Admin/Channels.php:76 +#, php-format +msgid "Channel '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' censored" msgstr "" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' uncensored" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code allowed" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558 +msgid "Channels" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" +#: ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Censor" msgstr "" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" +#: ../../Zotlabs/Module/Admin/Channels.php:155 +msgid "Uncensor" msgstr "" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." +#: ../../Zotlabs/Module/Admin/Channels.php:156 +msgid "Allow Code" msgstr "" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." +#: ../../Zotlabs/Module/Admin/Channels.php:157 +msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." +#: ../../Zotlabs/Module/Admin/Channels.php:158 +#: ../../include/conversation.php:1650 +msgid "Channel" msgstr "" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "UID" msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" +#: ../../Zotlabs/Module/Admin/Channels.php:166 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" +#: ../../Zotlabs/Module/Admin/Channels.php:167 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" +#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#, php-format +msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" +#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" +#: ../../Zotlabs/Module/Admin/Dbsync.php:55 +msgid "No failed updates." msgstr "" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" msgstr "" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" msgstr "" -#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" msgstr "" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 -msgid "Edit System Page Description" +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583 +#: ../../include/widgets.php:1593 +msgid "Logs" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:64 -msgid "Layout not found." +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:70 -msgid "Module Name:" +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:71 -msgid "Layout Help" +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" msgstr "" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" +#: ../../Zotlabs/Module/Admin/Plugins.php:284 +#, php-format +msgid "Plugin %s disabled." msgstr "" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Admin/Plugins.php:289 #, php-format -msgid "Welcome to %s" +msgid "Plugin %s enabled." msgstr "" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." +#: ../../Zotlabs/Module/Admin/Plugins.php:305 +#: ../../Zotlabs/Module/Admin/Themes.php:93 +msgid "Disable" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" +#: ../../Zotlabs/Module/Admin/Plugins.php:308 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Enable" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." +#: ../../Zotlabs/Module/Admin/Plugins.php:337 +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561 +msgid "Plugins" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." +#: ../../Zotlabs/Module/Admin/Plugins.php:338 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +msgid "Toggle" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" +#: ../../Zotlabs/Module/Admin/Plugins.php:339 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 +#: ../../include/nav.php:213 ../../include/widgets.php:680 +msgid "Settings" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 -#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 -msgid "Permissions" +#: ../../Zotlabs/Module/Admin/Plugins.php:346 +#: ../../Zotlabs/Module/Admin/Themes.php:132 +msgid "Author: " msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" +#: ../../Zotlabs/Module/Admin/Plugins.php:347 +#: ../../Zotlabs/Module/Admin/Themes.php:133 +msgid "Maintainer: " msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" +#: ../../Zotlabs/Module/Admin/Plugins.php:348 +msgid "Minimum project version: " msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" +#: ../../Zotlabs/Module/Admin/Plugins.php:349 +msgid "Maximum project version: " msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" +#: ../../Zotlabs/Module/Admin/Plugins.php:350 +msgid "Minimum PHP version: " msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +msgid "Compatible Server Roles: " msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +msgid "Requires: " msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +#: ../../Zotlabs/Module/Admin/Plugins.php:433 +msgid "Disabled - version incompatibility" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" +#: ../../Zotlabs/Module/Admin/Plugins.php:402 +msgid "Enter the public git repository URL of the plugin repo." msgstr "" -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" +#: ../../Zotlabs/Module/Admin/Plugins.php:403 +msgid "Plugin repo git URL" msgstr "" -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "Custom repo name" msgstr "" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "(optional)" msgstr "" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." +#: ../../Zotlabs/Module/Admin/Plugins.php:405 +msgid "Download Plugin Repo" msgstr "" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3950 -msgid "Privacy group not found." +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." +#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" msgstr "" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." +#: ../../Zotlabs/Module/Admin/Plugins.php:435 +msgid "Manage Repos" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +msgid "Installed Plugin Repositories" msgstr "" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +msgid "Install a New Plugin Repository" msgstr "" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" +#: ../../Zotlabs/Module/Admin/Plugins.php:443 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" msgstr "" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." +#: ../../Zotlabs/Module/Admin/Plugins.php:444 +msgid "Switch branch" msgstr "" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" msgstr "" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" msgstr "" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "System name of field" msgstr "" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" +#: ../../Zotlabs/Module/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" msgstr "" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" msgstr "" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Label on profile pages" msgstr "" -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" msgstr "" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" msgstr "" -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564 +msgid "Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" msgstr "" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" msgstr "" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" msgstr "" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Queue Statistics" msgstr "" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Total Entries" msgstr "" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Priority" msgstr "" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Destination URL" msgstr "" -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Album name could not be decoded" +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Mark hub permanently offline" msgstr "" -#: ../../Zotlabs/Module/Photos.php:745 -msgid "Contact Photos" +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Empty queue for this hub" msgstr "" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Newest First" +#: ../../Zotlabs/Module/Admin/Queue.php:42 +msgid "Last known contact" msgstr "" -#: ../../Zotlabs/Module/Photos.php:770 -msgid "Show Oldest First" +#: ../../Zotlabs/Module/Admin/Security.php:77 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." msgstr "" -#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1640 -msgid "View Photo" +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:825 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1657 -msgid "Edit Album" +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/" +"
    https://vimeo.com/
    https://soundcloud.com/
    " msgstr "" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Permission denied. Access to this item may be restricted." +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Photo not available" +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 +msgid "Security" msgstr "" -#: ../../Zotlabs/Module/Photos.php:932 -msgid "Use as profile photo" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" msgstr "" -#: ../../Zotlabs/Module/Photos.php:933 -msgid "Use as cover photo" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." msgstr "" -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Private Photo" +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 -msgid "Previous" +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Photos.php:955 -msgid "View Full Size" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Edit photo" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CW (right)" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "Rotate CCW (left)" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I like this (toggle)" +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 -msgid "I don't like this (toggle)" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../include/conversation.php:1227 -msgid "Share" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 -#: ../../include/conversation.php:743 -msgid "Please wait" +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:709 -msgid "This is you" +#: ../../Zotlabs/Module/Admin/Site.php:135 +msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 -msgid "Comment" +#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2939 +msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:245 -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:721 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 -msgid "Preview" +#: ../../Zotlabs/Module/Admin/Site.php:172 +#: ../../Zotlabs/Module/Settings/Display.php:141 +msgid "mobile" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" +#: ../../Zotlabs/Module/Admin/Site.php:174 +msgid "experimental" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" +#: ../../Zotlabs/Module/Admin/Site.php:176 +msgid "unsupported" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" +#: ../../Zotlabs/Module/Admin/Site.php:222 +msgid "Yes - with approval" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" +#: ../../Zotlabs/Module/Admin/Site.php:228 +msgid "My site is not a public server" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" +#: ../../Zotlabs/Module/Admin/Site.php:229 +msgid "My site has paid access only" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" +#: ../../Zotlabs/Module/Admin/Site.php:230 +msgid "My site has free access only" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" +#: ../../Zotlabs/Module/Admin/Site.php:231 +msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" +#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Beginner/Basic" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1758 -msgid "View all" +#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Novice - not skilled but willing to learn" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1782 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Admin/Site.php:251 +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Intermediate - somewhat comfortable" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1785 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Admin/Site.php:252 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "Advanced - very comfortable" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" +#: ../../Zotlabs/Module/Admin/Site.php:253 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Expert - I can write computer code" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" +#: ../../Zotlabs/Module/Admin/Site.php:254 +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Wizard - I probably know more than you do" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 +msgid "Site" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Likes" +#: ../../Zotlabs/Module/Admin/Site.php:268 +#: ../../Zotlabs/Module/Register.php:253 +msgid "Registration" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 -msgctxt "noun" -msgid "Dislikes" +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "File upload" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 -#: ../../include/acl_selectors.php:181 -msgid "Close" +#: ../../Zotlabs/Module/Admin/Site.php:270 +msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" +#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "Site name" msgstr "" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Site default technical skill level" msgstr "" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Used to provide a member experience matched to technical comfort level" msgstr "" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Lock the technical skill level setting" msgstr "" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Members can set their own technical comfort level by default" msgstr "" -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Banner/Logo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Administrator Information" msgstr "" -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "System language" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "System theme" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:72 -#: ../../Zotlabs/Module/Import.php:101 -msgid "Imported file is empty." +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:123 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Mobile system theme" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "Allow Feeds as Connections" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "Use this form to import existing posts and content from an export file." +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "(Heavy system resource usage)" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:549 -msgid "File to Upload" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Maximum image size" msgstr "" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Does this site allow new member registration?" msgstr "" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Invitation only" msgstr "" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." msgstr "" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." +#: ../../Zotlabs/Module/Admin/Site.php:294 +msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Register text" +msgstr "" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." msgstr "" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "Preserve site homepage URL" msgstr "" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" msgstr "" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "Accounts abandoned after x days" msgstr "" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "1. Register at any $Projectname location (they are all inter-connected)" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Allowed friend domains" msgstr "" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Verify Email Addresses" msgstr "" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "" +"Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Force publish" msgstr "" -#: ../../Zotlabs/Module/Locs.php:66 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "" -"Please select another location to become primary before removing the primary " -"location." +"Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Import Public Streams" msgstr "" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." msgstr "" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Login on Homepage" msgstr "" -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 -#: ../../Zotlabs/Module/Pubsites.php:46 ../../include/js_strings.php:25 -msgid "Location" +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." msgstr "" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Enable context help" msgstr "" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "" +"Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Directory Server URL" msgstr "" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Default directory server" msgstr "" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Proxy user" msgstr "" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Proxy URL" msgstr "" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Network timeout" msgstr "" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Delivery interval" msgstr "" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." msgstr "" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Deliveries per process" msgstr "" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Poll interval" msgstr "" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 -#: ../../include/conversation.php:120 -msgid "photo" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Maximum Load Average" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1951 ../../include/conversation.php:148 -msgid "status" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." msgstr "" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 -#: ../../include/conversation.php:123 ../../include/event.php:958 -msgid "event" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "0 for no expiration of imported content" msgstr "" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../Zotlabs/Module/Admin/Themes.php:18 +msgid "Theme settings updated." msgstr "" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../Zotlabs/Module/Admin/Themes.php:58 +msgid "No themes found." msgstr "" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../Zotlabs/Module/Admin/Themes.php:114 +msgid "Screenshot" msgstr "" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +#: ../../Zotlabs/Module/Admin/Themes.php:121 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 +msgid "Themes" msgstr "" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: ../../Zotlabs/Module/Admin/Themes.php:160 +msgid "[Experimental]" msgstr "" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: ../../Zotlabs/Module/Admin/Themes.php:161 +msgid "[Unsupported]" msgstr "" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." msgstr "" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." msgstr "" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." msgstr "" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Create New" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." msgstr "" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:211 -msgid "Channel Manager" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" msgstr "" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" msgstr "" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" msgstr "" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" msgstr "" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" msgstr "" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" +#: ../../Zotlabs/Module/Events.php:463 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1263 +msgid "Permission settings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1759 +msgid "Link to Source" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Item.php:180 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Item.php:433 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -#: ../../Zotlabs/Module/Item.php:473 -msgid "Executable content type not permitted to this channel." +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Item.php:858 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Item.php:991 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Item.php:1112 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Item.php:1119 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Item.php:1126 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available memory" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 +msgid "Name or caption" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 +msgid "Choose a short nickname" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 -msgid "Password Reset" +#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Channel role and privacy" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Select a channel role with your privacy requirements." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Read more about roles" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 +#: ../../Zotlabs/Module/New_channel.php:141 msgid "" -"Your password may be changed from the Settings page after " -"successful login." +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" +#: ../../Zotlabs/Module/New_channel.php:142 +msgid "" +"or import an existing channel from another location." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" msgstr "" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." msgstr "" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 +msgid "Mark all system notifications seen" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" +#: ../../Zotlabs/Module/Register.php:229 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1721 +msgid "Register" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" +#: ../../Zotlabs/Module/Register.php:271 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1559 -#: ../../include/widgets.php:105 -msgid "Personal" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" + +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2305 +msgid "Blocks" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2307 +msgid "Layouts" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/help.php:44 ../../include/help.php:49 +#: ../../include/nav.php:164 +msgid "Help" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 -#: ../../include/nav.php:91 -msgid "Edit Profiles" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " msgstr "" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2329 +msgid "Import" msgstr "" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:52 -msgid "Import Webpage Elements" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import selected" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:76 -msgid "Export Webpage Elements" +#: ../../Zotlabs/Module/Help.php:27 +msgid "Documentation Search" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:77 -msgid "Export selected" +#: ../../Zotlabs/Module/Help.php:57 +msgid "$Projectname Documentation" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:235 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/conversation.php:1720 ../../include/nav.php:109 -msgid "Webpages" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:244 ../../Zotlabs/Module/Events.php:680 -#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 -msgid "View" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:246 ../../include/page_widgets.php:44 -msgid "Actions" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:247 ../../include/page_widgets.php:45 -msgid "Page Link" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:248 -msgid "Page Title" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:278 -msgid "Invalid file type." +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:290 -msgid "Error opening zip file" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:301 -msgid "Invalid folder path." +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:328 -msgid "No webpage elements detected." +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:403 -msgid "Import complete." +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" msgstr "" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" msgstr "" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" msgstr "" -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" msgstr "" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1243 +msgid "Attach file" msgstr "" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" msgstr "" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1288 +msgid "Set expiration date" msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit event title" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 +#: ../../include/conversation.php:1293 +msgid "Encrypt text" msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Event title" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" msgstr "" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Categories (comma-separated list)" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit Category" +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Category" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit start date and time" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Start date and time" +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 -msgid "Finish date and time are not known or not relevant" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" msgstr "" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit finish date and time" +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" msgstr "" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Finish date and time" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 -msgid "Adjust for viewer timezone" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Events.php:463 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Description" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Events.php:467 -msgid "Edit Location" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 -msgid "Share this event" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 -msgid "Permission settings" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Events.php:485 -msgid "Advanced Options" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Events.php:619 -msgid "Edit event" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Events.php:621 -msgid "Delete event" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1716 -msgid "Link to Source" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../Zotlabs/Module/Events.php:655 -msgid "calendar" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../Zotlabs/Module/Events.php:681 -msgid "Month" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" msgstr "" -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" msgstr "" -#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" msgstr "" -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" msgstr "" -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" msgstr "" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" msgstr "" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." msgstr "" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../Zotlabs/Module/Import.php:548 -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." +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " msgstr "" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " msgstr "" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" msgstr "" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" msgstr "" -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Removeaccount.php:60 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." +"By default only the instances of the channels located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:128 +msgid "Remove Account" msgstr "" -#: ../../Zotlabs/Module/Import.php:556 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" -"Import existing posts if possible (experimental - limited by available memory" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:140 -msgid "Create Channel" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " msgstr "" -#: ../../Zotlabs/Module/New_channel.php:141 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" -"or import an existing channel from another location." +"By default only the instance of the channel located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "Remove Channel" msgstr "" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" msgstr "" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" +#: ../../Zotlabs/Module/Uexport.php:57 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." msgstr "" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" msgstr "" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." msgstr "" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." msgstr "" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." msgstr "" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 -msgid "Mark all system notifications seen" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" msgstr "" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:961 -msgid "Poke" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" msgstr "" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." msgstr "" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" msgstr "" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" msgstr "" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" msgstr "" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" +#: ../../Zotlabs/Module/Webpages.php:52 +msgid "Import Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import selected" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:109 ../../include/conversation.php:1724 +msgid "Webpages" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" +#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 +msgid "Actions" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 -msgid "Profile" +#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 +msgid "Page Link" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1384 -msgid "Public Hubs" +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:27 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:960 -msgid "Ratings" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:43 -msgid "Rate" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 -msgid "Blocks" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 -msgid "Layouts" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Help.php:86 -#: ../../Zotlabs/Module/Help.php:91 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:164 -msgid "Help" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:111 ../../include/conversation.php:1734 +#: ../../include/conversation.php:1737 ../../include/features.php:57 +msgid "Wiki" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be " +"saved*.\"" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" msgstr "" -#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 -#: ../../include/js_strings.php:20 -msgid "Rating" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" msgstr "" -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" msgstr "" -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" msgstr "" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" msgstr "" -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1246 +msgid "Embed an image from your albums" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1248 +#: ../../include/conversation.php:1295 +msgid "OK" msgstr "" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" msgstr "" -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 -msgid "Import" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." msgstr "" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" msgstr "" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" msgstr "" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" msgstr "" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." msgstr "" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." msgstr "" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" msgstr "" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:672 +#: ../../include/features.php:70 +msgid "Channel Sources" msgstr "" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 -msgid "Please enter a link URL:" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" msgstr "" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" msgstr "" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" msgstr "" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" msgstr "" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1239 -msgid "Attach file" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +msgid "Optional" msgstr "" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." msgstr "" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1284 -msgid "Set expiration date" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" msgstr "" -#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 -#: ../../include/conversation.php:1289 -msgid "Encrypt text" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" msgstr "" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" msgstr "" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." msgstr "" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" msgstr "" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" msgstr "" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1996 +#: ../../include/conversation.php:150 +msgid "comment" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " msgstr "" #: ../../Zotlabs/Module/Connedit.php:80 @@ -5717,7 +5607,7 @@ msgid "Connection has been removed." msgstr "" #: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/conversation.php:955 ../../include/nav.php:89 +#: ../../include/nav.php:89 ../../include/conversation.php:955 msgid "View Profile" msgstr "" @@ -5799,740 +5689,911 @@ msgstr "" msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 -msgid "Me" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 +msgid "Me" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 +msgid "Family" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Settings/Channel.php:61 +#: ../../Zotlabs/Module/Settings/Channel.php:65 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:80 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/selectors.php:123 ../../include/widgets.php:531 +msgid "Friends" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 +msgid "Acquaintances" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:778 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Their Settings" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "My Settings" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 +msgid "Individual Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can not change those settings here." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" +msgstr "" + +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 -msgid "Family" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 -msgid "Acquaintances" +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Approve this connection" +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Accept connection to allow communication" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:691 -msgid "Set Affinity" +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:694 -msgid "Set Profile" +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:697 -msgid "Set Affinity & Profile" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:746 -msgid "none" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " msgstr "" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 -msgid "Connection Default Permissions" +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 -#, php-format -msgid "Connection: %s" +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Apply these permissions automatically" +#: ../../Zotlabs/Module/Settings/Account.php:32 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Connection requests will be approved without your interaction" +#: ../../Zotlabs/Module/Settings/Account.php:40 +msgid "Technical skill level updated" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "This connection's primary address is" +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:754 -msgid "Available locations:" +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:759 -msgid "Connection Tools" +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Slide to adjust your degree of friendship" +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:763 -msgid "Slide to adjust your rating" +#: ../../Zotlabs/Module/Settings/Account.php:120 +msgid "Account Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 -msgid "Optionally explain your rating" +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Current Password" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Custom Filter" +#: ../../Zotlabs/Module/Settings/Account.php:122 +msgid "Enter New Password" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Only import posts with this text" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Confirm New Password" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Do not import posts with this text" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Your technical skill level" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "This information is public!" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Used to provide a member experience matched to your comfort level" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Connection Pending Approval" +#: ../../Zotlabs/Module/Settings/Account.php:127 +#: ../../Zotlabs/Module/Settings/Channel.php:459 +msgid "Email Address:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:780 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../Zotlabs/Module/Settings/Account.php:129 +msgid "Remove this account including all its channels" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." +#: ../../Zotlabs/Module/Settings/Channel.php:246 +msgid "Settings updated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:788 -msgid "Last update:" +#: ../../Zotlabs/Module/Settings/Channel.php:307 +msgid "Nobody except yourself" msgstr "" -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" +#: ../../Zotlabs/Module/Settings/Channel.php:308 +msgid "Only those you specifically allow" msgstr "" -#: ../../Zotlabs/Module/Help.php:68 ../../Zotlabs/Module/Help.php:74 -#: ../../Zotlabs/Module/Help.php:80 -msgid "Help:" +#: ../../Zotlabs/Module/Settings/Channel.php:309 +msgid "Approved connections" msgstr "" -#: ../../Zotlabs/Module/Help.php:121 -msgid "$Projectname Documentation" +#: ../../Zotlabs/Module/Settings/Channel.php:310 +msgid "Any connections" msgstr "" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" +#: ../../Zotlabs/Module/Settings/Channel.php:311 +msgid "Anybody on this website" msgstr "" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" +#: ../../Zotlabs/Module/Settings/Channel.php:312 +msgid "Anybody in this network" msgstr "" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" +#: ../../Zotlabs/Module/Settings/Channel.php:313 +msgid "Anybody authenticated" msgstr "" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../Zotlabs/Module/Settings/Channel.php:314 +msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../Zotlabs/Module/Settings/Channel.php:390 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../Zotlabs/Module/Settings/Channel.php:395 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../Zotlabs/Module/Settings/Channel.php:404 +msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../Zotlabs/Module/Settings/Channel.php:450 +msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" +#: ../../Zotlabs/Module/Settings/Channel.php:457 +msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" +#: ../../Zotlabs/Module/Settings/Channel.php:458 +#: ../../include/channel.php:1164 +msgid "Full Name:" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" +#: ../../Zotlabs/Module/Settings/Channel.php:460 +msgid "Your Timezone:" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Default Post Location:" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." +#: ../../Zotlabs/Module/Settings/Channel.php:462 +msgid "Use Browser Location:" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" +#: ../../Zotlabs/Module/Settings/Channel.php:464 +msgid "Adult Content" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../Zotlabs/Module/Settings/Channel.php:464 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" +#: ../../Zotlabs/Module/Settings/Channel.php:466 +msgid "Security and Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." +#: ../../Zotlabs/Module/Settings/Channel.php:469 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Hide my online presence" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " +#: ../../Zotlabs/Module/Settings/Channel.php:473 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Settings/Channel.php:474 msgid "" -"This account and all its channels will be completely removed from the " -"network. " +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" +#: ../../Zotlabs/Module/Settings/Channel.php:475 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" +#: ../../Zotlabs/Module/Settings/Channel.php:476 +msgid "Private - default private, never open or public" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" +#: ../../Zotlabs/Module/Settings/Channel.php:477 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" +#: ../../Zotlabs/Module/Settings/Channel.php:479 +msgid "Allow others to tag your posts" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Settings/Channel.php:479 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" +#: ../../Zotlabs/Module/Settings/Channel.php:481 +msgid "Channel Permission Limits" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +#, php-format +msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:57 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can " -"be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for " -"this download to begin." +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "Default Access Control List (ACL)" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." +#: ../../Zotlabs/Module/Settings/Channel.php:487 +msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" +#: ../../Zotlabs/Module/Settings/Channel.php:494 +msgid "Channel permissions category:" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." +#: ../../Zotlabs/Module/Settings/Channel.php:506 +msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "making an interesting profile change" msgstr "" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "Your connections are confirmed" msgstr "" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." +#: ../../Zotlabs/Module/Settings/Channel.php:512 +msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "You receive a private message" msgstr "" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "You receive a friend suggestion" msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Only sends to viewers of the applicable profile" +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Unseen grid activity" msgstr "" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 -msgid "URL for photo of thing (optional)" +#: ../../Zotlabs/Module/Settings/Channel.php:522 +msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Unseen private messages" msgstr "" -#: ../../Zotlabs/Module/Apps.php:46 ../../include/widgets.php:102 -#: ../../include/nav.php:168 -msgid "Apps" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Recommended" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Events today" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:20 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "System info messages" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/conversation.php:1730 ../../include/conversation.php:1733 -#: ../../include/features.php:57 ../../include/nav.php:111 -msgid "Wiki" +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:98 -msgid "Sandbox" +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "New connections" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:100 -msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be " -"saved*.\"" +#: ../../Zotlabs/Module/Settings/Channel.php:531 +msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:169 -msgid "Revision Comparison" +#: ../../Zotlabs/Module/Settings/Channel.php:532 +msgid "" +"Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:170 -msgid "Revert" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:201 -msgid "Enter the name of your new wiki:" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:202 -msgid "Enter the name of the new page:" +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Enter the new name:" +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 -msgid "Embed image from photo albums" +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 -msgid "Embed an image from your albums" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 -#: ../../include/conversation.php:1291 -msgid "OK" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 -msgid "Choose images to embed" +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 -msgid "Choose an album" +#: ../../Zotlabs/Module/Settings/Channel.php:543 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 -msgid "Choose a different album..." +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 -msgid "Error getting album list" +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Firefox Share $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 -msgid "Error getting photo link" +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "Start calendar week on monday" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 -msgid "Error getting album" +#: ../../Zotlabs/Module/Settings/Display.php:135 +msgid "No special theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." +#: ../../Zotlabs/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Experimental)" msgstr "" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Display Settings" msgstr "" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Custom Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:70 -#: ../../include/widgets.php:672 -msgid "Channel Sources" +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Content Settings" msgstr "" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Display Theme:" msgstr "" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Select scheme" msgstr "" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Mobile Theme:" msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Preload images before rendering the page" msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" msgstr "" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Update browser every xx seconds" msgstr "" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum of 100 items" msgstr "" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "Link post titles to source" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../Zotlabs/Module/Settings/Display.php:208 +msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on channel page" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../Zotlabs/Module/Settings/Display.php:211 +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "(comments displayed separately)" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Use blog/list mode on grid page" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 -#: ../../include/conversation.php:150 -msgid "comment" +#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "click to expand content exceeding this height" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "Grid page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" +#: ../../Zotlabs/Module/Settings/Featured.php:24 +msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" +#: ../../Zotlabs/Module/Settings/Featured.php:31 +msgid "Feature/Addon Settings" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" msgstr "" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" +#: ../../Zotlabs/Module/Settings/Oauth.php:34 +msgid "Name is required" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:38 +msgid "Key and Secret are required" msgstr "" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" +#: ../../Zotlabs/Module/Settings/Oauth.php:86 +#: ../../Zotlabs/Module/Settings/Oauth.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Add application" msgstr "" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +msgid "Name of application" msgstr "" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +msgid "Consumer Key" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +msgid "Consumer Secret" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Redirect" msgstr "" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Icon url" msgstr "" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" +#: ../../Zotlabs/Module/Settings/Oauth.php:104 +msgid "Application not found." msgstr "" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" +#: ../../Zotlabs/Module/Settings/Oauth.php:147 +msgid "Connected Apps" msgstr "" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +msgid "Client key starts with" msgstr "" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "No name" msgstr "" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "Remove authorization" msgstr "" -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" msgstr "" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." msgstr "" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." msgstr "" -#: ../../Zotlabs/Module/Chat.php:249 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." msgstr "" -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" msgstr "" -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" +#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:647 +msgid "Guest Access Tokens" msgstr "" -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" msgstr "" #: ../../Zotlabs/Lib/Chatroom.php:27 @@ -6851,7 +6912,7 @@ msgid "Suggest Channels" msgstr "" #: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 -#: ../../boot.php:1738 +#: ../../boot.php:1739 msgid "Login" msgstr "" @@ -6863,8 +6924,8 @@ msgstr "" msgid "Channel Home" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1684 -#: ../../include/conversation.php:1687 ../../include/nav.php:206 +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 +#: ../../include/conversation.php:1688 ../../include/conversation.php:1691 msgid "Events" msgstr "" @@ -6896,7 +6957,7 @@ msgstr "" msgid "Invite" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1527 +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1560 msgid "Features" msgstr "" @@ -7060,23 +7121,23 @@ msgstr "" msgid "%s show all" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1234 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1238 msgid "Bold" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1235 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1239 msgid "Italic" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1236 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1240 msgid "Underline" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1237 +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1241 msgid "Quote" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:717 ../../include/conversation.php:1238 +#: ../../Zotlabs/Lib/ThreadItem.php:717 ../../include/conversation.php:1242 msgid "Code" msgstr "" @@ -7109,8 +7170,8 @@ msgstr "" msgid "view full size" msgstr "" -#: ../../include/network.php:1935 ../../include/account.php:324 -#: ../../include/account.php:351 ../../include/account.php:411 +#: ../../include/network.php:1935 ../../include/account.php:326 +#: ../../include/account.php:353 ../../include/account.php:413 msgid "Administrator" msgstr "" @@ -7158,1591 +7219,1643 @@ msgstr "" msgid "MySpace" msgstr "" -#: ../../include/oembed.php:349 -msgid "Embedded content" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/oembed.php:358 -msgid "Embedding disabled" +#: ../../include/channel.php:67 +msgid "Empty name" msgstr "" -#: ../../include/permissions.php:35 -msgid "Can view my normal stream and posts" +#: ../../include/channel.php:70 +msgid "Name too long" msgstr "" -#: ../../include/permissions.php:39 -msgid "Can view my webpages" +#: ../../include/channel.php:181 +msgid "No account identifier" msgstr "" -#: ../../include/permissions.php:43 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/channel.php:193 +msgid "Nickname is required." msgstr "" -#: ../../include/permissions.php:46 -msgid "Can like/dislike stuff" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/permissions.php:46 -msgid "Profiles and things other than posts/comments" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/permissions.php:48 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/permissions.php:48 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/channel.php:341 +msgid "Default Profile" msgstr "" -#: ../../include/permissions.php:49 -msgid "Can chat with me (when available)" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." msgstr "" -#: ../../include/permissions.php:50 -msgid "Can write to my file storage and photos" +#: ../../include/channel.php:960 +msgid "Create New Profile" msgstr "" -#: ../../include/permissions.php:51 -msgid "Can edit my webpages" +#: ../../include/channel.php:963 ../../include/nav.php:93 +msgid "Edit Profile" msgstr "" -#: ../../include/permissions.php:53 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/channel.php:980 +msgid "Visible to everybody" msgstr "" -#: ../../include/permissions.php:55 -msgid "Can administer my channel resources" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" msgstr "" -#: ../../include/permissions.php:55 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" msgstr "" -#: ../../include/connections.php:95 -msgid "New window" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" msgstr "" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/channel.php:1056 +msgid "Online Now" msgstr "" -#: ../../include/connections.php:214 +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "" + +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "" + +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "" + +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "" + +#: ../../include/channel.php:1216 #, php-format -msgid "User '%s' deleted" +msgid "for %1$d %2$s" msgstr "" -#: ../../include/api.php:1330 -msgid "Public Timeline" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" msgstr "" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" +#: ../../include/channel.php:1225 +msgid "Tags:" msgstr "" -#: ../../include/channel.php:67 -msgid "Empty name" +#: ../../include/channel.php:1227 +msgid "Political Views:" msgstr "" -#: ../../include/channel.php:70 -msgid "Name too long" +#: ../../include/channel.php:1229 +msgid "Religion:" msgstr "" -#: ../../include/channel.php:181 -msgid "No account identifier" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/channel.php:193 -msgid "Nickname is required." +#: ../../include/channel.php:1235 +msgid "Likes:" msgstr "" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." +#: ../../include/channel.php:1237 +msgid "Dislikes:" msgstr "" -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" +#: ../../include/channel.php:1241 +msgid "My other channels:" msgstr "" -#: ../../include/channel.php:341 -msgid "Default Profile" +#: ../../include/channel.php:1243 +msgid "Musical interests:" msgstr "" -#: ../../include/channel.php:813 -msgid "Requested channel is not available." +#: ../../include/channel.php:1245 +msgid "Books, literature:" msgstr "" -#: ../../include/channel.php:960 -msgid "Create New Profile" +#: ../../include/channel.php:1247 +msgid "Television:" msgstr "" -#: ../../include/channel.php:963 ../../include/nav.php:93 -msgid "Edit Profile" +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/channel.php:980 -msgid "Visible to everybody" +#: ../../include/channel.php:1251 +msgid "Love/Romance:" msgstr "" -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" +#: ../../include/channel.php:1253 +msgid "Work/employment:" msgstr "" -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" +#: ../../include/channel.php:1255 +msgid "School/education:" msgstr "" -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" +#: ../../include/channel.php:1276 +msgid "Like this thing" msgstr "" -#: ../../include/channel.php:1056 -msgid "Online Now" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" msgstr "" -#: ../../include/channel.php:1171 -msgid "Like this channel" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/channel.php:1195 -msgid "j F, Y" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" msgstr "" -#: ../../include/channel.php:1196 -msgid "j F" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" msgstr "" -#: ../../include/channel.php:1203 -msgid "Birthday:" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" msgstr "" -#: ../../include/channel.php:1216 -#, php-format -msgid "for %1$d %2$s" +#: ../../include/contact_widgets.php:53 ../../include/widgets.php:346 +#: ../../include/features.php:97 +msgid "Saved Folders" msgstr "" -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +msgid "Everything" msgstr "" -#: ../../include/channel.php:1225 -msgid "Tags:" +#: ../../include/contact_widgets.php:91 ../../include/taxonomy.php:188 +#: ../../include/taxonomy.php:270 ../../include/widgets.php:46 +#: ../../include/widgets.php:465 +msgid "Categories" msgstr "" -#: ../../include/channel.php:1227 -msgid "Political Views:" -msgstr "" +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" -#: ../../include/channel.php:1229 -msgid "Religion:" +#: ../../include/contact_widgets.php:127 +msgid "show more" msgstr "" -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" +#: ../../include/account.php:35 +msgid "Not a valid email address" msgstr "" -#: ../../include/channel.php:1235 -msgid "Likes:" +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/channel.php:1237 -msgid "Dislikes:" +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" +#: ../../include/account.php:75 +msgid "An invitation is required." msgstr "" -#: ../../include/channel.php:1241 -msgid "My other channels:" +#: ../../include/account.php:79 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/channel.php:1243 -msgid "Musical interests:" +#: ../../include/account.php:130 +msgid "Please enter the required information." msgstr "" -#: ../../include/channel.php:1245 -msgid "Books, literature:" +#: ../../include/account.php:198 +msgid "Failed to store account information." msgstr "" -#: ../../include/channel.php:1247 -msgid "Television:" +#: ../../include/account.php:258 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" +#: ../../include/account.php:324 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/channel.php:1251 -msgid "Love/Romance:" +#: ../../include/account.php:348 +msgid "your registration password" msgstr "" -#: ../../include/channel.php:1253 -msgid "Work/employment:" +#: ../../include/account.php:351 ../../include/account.php:411 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/channel.php:1255 -msgid "School/education:" +#: ../../include/account.php:423 +msgid "Account approved." msgstr "" -#: ../../include/channel.php:1276 -msgid "Like this thing" +#: ../../include/account.php:463 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/datetime.php:135 -msgid "Birthday" +#: ../../include/account.php:748 ../../include/account.php:750 +msgid "Click here to upgrade." msgstr "" -#: ../../include/datetime.php:137 -msgid "Age: " +#: ../../include/account.php:756 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" +#: ../../include/account.php:761 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/datetime.php:272 ../../boot.php:2577 -msgid "never" +#: ../../include/connections.php:95 +msgid "New window" msgstr "" -#: ../../include/datetime.php:278 -msgid "less than a second ago" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/datetime.php:296 +#: ../../include/connections.php:214 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" +msgid "User '%s' deleted" msgstr "" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" +#: ../../include/photos.php:506 ../../include/conversation.php:1674 +msgid "Photo Albums" +msgstr "" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "" -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" +#: ../../include/text.php:447 +msgid "prev" msgstr "" -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../include/text.php:449 +msgid "first" msgstr "" -#: ../../include/selectors.php:30 -msgid "Frequently" +#: ../../include/text.php:478 +msgid "last" msgstr "" -#: ../../include/selectors.php:31 -msgid "Hourly" +#: ../../include/text.php:481 +msgid "next" msgstr "" -#: ../../include/selectors.php:32 -msgid "Twice daily" +#: ../../include/text.php:491 +msgid "older" msgstr "" -#: ../../include/selectors.php:33 -msgid "Daily" +#: ../../include/text.php:493 +msgid "newer" msgstr "" -#: ../../include/selectors.php:34 -msgid "Weekly" +#: ../../include/text.php:886 +msgid "No connections" msgstr "" -#: ../../include/selectors.php:35 -msgid "Monthly" +#: ../../include/text.php:911 +#, php-format +msgid "View all %s connections" msgstr "" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Male" +#: ../../include/text.php:1056 ../../include/text.php:1061 +msgid "poke" msgstr "" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Female" +#: ../../include/text.php:1056 ../../include/text.php:1061 +#: ../../include/conversation.php:243 +msgid "poked" msgstr "" -#: ../../include/selectors.php:49 -msgid "Currently Male" +#: ../../include/text.php:1062 +msgid "ping" msgstr "" -#: ../../include/selectors.php:49 -msgid "Currently Female" +#: ../../include/text.php:1062 +msgid "pinged" msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Male" +#: ../../include/text.php:1063 +msgid "prod" msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Female" +#: ../../include/text.php:1063 +msgid "prodded" msgstr "" -#: ../../include/selectors.php:49 -msgid "Transgender" +#: ../../include/text.php:1064 +msgid "slap" msgstr "" -#: ../../include/selectors.php:49 -msgid "Intersex" +#: ../../include/text.php:1064 +msgid "slapped" msgstr "" -#: ../../include/selectors.php:49 -msgid "Transsexual" +#: ../../include/text.php:1065 +msgid "finger" msgstr "" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" +#: ../../include/text.php:1065 +msgid "fingered" msgstr "" -#: ../../include/selectors.php:49 -msgid "Neuter" +#: ../../include/text.php:1066 +msgid "rebuff" msgstr "" -#: ../../include/selectors.php:49 -msgid "Non-specific" +#: ../../include/text.php:1066 +msgid "rebuffed" msgstr "" -#: ../../include/selectors.php:49 -msgid "Undecided" +#: ../../include/text.php:1078 +msgid "happy" msgstr "" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" +#: ../../include/text.php:1079 +msgid "sad" msgstr "" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" +#: ../../include/text.php:1080 +msgid "mellow" msgstr "" -#: ../../include/selectors.php:85 -msgid "Gay" +#: ../../include/text.php:1081 +msgid "tired" msgstr "" -#: ../../include/selectors.php:85 -msgid "Lesbian" +#: ../../include/text.php:1082 +msgid "perky" msgstr "" -#: ../../include/selectors.php:85 -msgid "No Preference" +#: ../../include/text.php:1083 +msgid "angry" msgstr "" -#: ../../include/selectors.php:85 -msgid "Bisexual" +#: ../../include/text.php:1084 +msgid "stupefied" msgstr "" -#: ../../include/selectors.php:85 -msgid "Autosexual" +#: ../../include/text.php:1085 +msgid "puzzled" msgstr "" -#: ../../include/selectors.php:85 -msgid "Abstinent" +#: ../../include/text.php:1086 +msgid "interested" msgstr "" -#: ../../include/selectors.php:85 -msgid "Virgin" +#: ../../include/text.php:1087 +msgid "bitter" msgstr "" -#: ../../include/selectors.php:85 -msgid "Deviant" +#: ../../include/text.php:1088 +msgid "cheerful" msgstr "" -#: ../../include/selectors.php:85 -msgid "Fetish" +#: ../../include/text.php:1089 +msgid "alive" msgstr "" -#: ../../include/selectors.php:85 -msgid "Oodles" +#: ../../include/text.php:1090 +msgid "annoyed" msgstr "" -#: ../../include/selectors.php:85 -msgid "Nonsexual" +#: ../../include/text.php:1091 +msgid "anxious" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" +#: ../../include/text.php:1092 +msgid "cranky" msgstr "" -#: ../../include/selectors.php:123 -msgid "Lonely" +#: ../../include/text.php:1093 +msgid "disturbed" msgstr "" -#: ../../include/selectors.php:123 -msgid "Available" +#: ../../include/text.php:1094 +msgid "frustrated" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unavailable" +#: ../../include/text.php:1095 +msgid "depressed" msgstr "" -#: ../../include/selectors.php:123 -msgid "Has crush" +#: ../../include/text.php:1096 +msgid "motivated" msgstr "" -#: ../../include/selectors.php:123 -msgid "Infatuated" +#: ../../include/text.php:1097 +msgid "relaxed" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" +#: ../../include/text.php:1098 +msgid "surprised" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unfaithful" +#: ../../include/text.php:1282 ../../include/js_strings.php:70 +msgid "Monday" msgstr "" -#: ../../include/selectors.php:123 -msgid "Sex Addict" +#: ../../include/text.php:1282 ../../include/js_strings.php:71 +msgid "Tuesday" msgstr "" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" +#: ../../include/text.php:1282 ../../include/js_strings.php:72 +msgid "Wednesday" msgstr "" -#: ../../include/selectors.php:123 -msgid "Casual" +#: ../../include/text.php:1282 ../../include/js_strings.php:73 +msgid "Thursday" msgstr "" -#: ../../include/selectors.php:123 -msgid "Engaged" +#: ../../include/text.php:1282 ../../include/js_strings.php:74 +msgid "Friday" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" +#: ../../include/text.php:1282 ../../include/js_strings.php:75 +msgid "Saturday" msgstr "" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" +#: ../../include/text.php:1282 ../../include/js_strings.php:69 +msgid "Sunday" msgstr "" -#: ../../include/selectors.php:123 -msgid "Partners" +#: ../../include/text.php:1286 ../../include/js_strings.php:45 +msgid "January" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" +#: ../../include/text.php:1286 ../../include/js_strings.php:46 +msgid "February" msgstr "" -#: ../../include/selectors.php:123 -msgid "Common law" +#: ../../include/text.php:1286 ../../include/js_strings.php:47 +msgid "March" msgstr "" -#: ../../include/selectors.php:123 -msgid "Happy" +#: ../../include/text.php:1286 ../../include/js_strings.php:48 +msgid "April" msgstr "" -#: ../../include/selectors.php:123 -msgid "Not looking" +#: ../../include/text.php:1286 +msgid "May" msgstr "" -#: ../../include/selectors.php:123 -msgid "Swinger" +#: ../../include/text.php:1286 ../../include/js_strings.php:50 +msgid "June" msgstr "" -#: ../../include/selectors.php:123 -msgid "Betrayed" +#: ../../include/text.php:1286 ../../include/js_strings.php:51 +msgid "July" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" +#: ../../include/text.php:1286 ../../include/js_strings.php:52 +msgid "August" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unstable" +#: ../../include/text.php:1286 ../../include/js_strings.php:53 +msgid "September" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" +#: ../../include/text.php:1286 ../../include/js_strings.php:54 +msgid "October" msgstr "" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" +#: ../../include/text.php:1286 ../../include/js_strings.php:55 +msgid "November" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" +#: ../../include/text.php:1286 ../../include/js_strings.php:56 +msgid "December" msgstr "" -#: ../../include/selectors.php:123 -msgid "Uncertain" +#: ../../include/text.php:1363 ../../include/text.php:1367 +msgid "Unknown Attachment" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" +#: ../../include/text.php:1369 +msgid "unknown" msgstr "" -#: ../../include/selectors.php:123 -msgid "Don't care" +#: ../../include/text.php:1405 +msgid "remove category" msgstr "" -#: ../../include/selectors.php:123 -msgid "Ask me" +#: ../../include/text.php:1482 +msgid "remove from file" msgstr "" -#: ../../include/items.php:918 ../../include/items.php:963 -msgid "(Unknown)" +#: ../../include/text.php:1781 ../../include/text.php:1852 +msgid "default" msgstr "" -#: ../../include/items.php:1162 -msgid "Visible to anybody on the internet." +#: ../../include/text.php:1789 +msgid "Page layout" msgstr "" -#: ../../include/items.php:1164 -msgid "Visible to you only." +#: ../../include/text.php:1789 +msgid "You can create your own with the layouts tool" msgstr "" -#: ../../include/items.php:1166 -msgid "Visible to anybody in this network." +#: ../../include/text.php:1831 +msgid "Page content type" msgstr "" -#: ../../include/items.php:1168 -msgid "Visible to anybody authenticated." +#: ../../include/text.php:1864 +msgid "Select an alternate language" msgstr "" -#: ../../include/items.php:1170 -#, php-format -msgid "Visible to anybody on %s." +#: ../../include/text.php:2001 +msgid "activity" msgstr "" -#: ../../include/items.php:1172 -msgid "Visible to all connections." +#: ../../include/text.php:2302 +msgid "Design Tools" msgstr "" -#: ../../include/items.php:1174 -msgid "Visible to approved connections." +#: ../../include/text.php:2308 +msgid "Pages" msgstr "" -#: ../../include/items.php:1176 -msgid "Visible to specific connections." +#: ../../include/text.php:2330 +msgid "Import website..." msgstr "" -#: ../../include/items.php:3966 -msgid "Privacy group is empty." +#: ../../include/text.php:2331 +msgid "Select folder to import" msgstr "" -#: ../../include/items.php:3973 -#, php-format -msgid "Privacy group: %s" +#: ../../include/text.php:2332 +msgid "Import from a zipped folder:" msgstr "" -#: ../../include/items.php:3985 -msgid "Connection not found." +#: ../../include/text.php:2333 +msgid "Import from cloud files:" msgstr "" -#: ../../include/items.php:4338 -msgid "profile photo" +#: ../../include/text.php:2334 +msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/text.php:2335 +msgid "Enter path to website files" msgstr "" -#: ../../include/security.php:527 -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." +#: ../../include/text.php:2336 +msgid "Select folder" msgstr "" -#: ../../include/zot.php:700 -msgid "Invalid data packet" +#: ../../include/text.php:2337 +msgid "Export website..." msgstr "" -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" +#: ../../include/text.php:2338 +msgid "Export to a zip file" msgstr "" -#: ../../include/zot.php:2329 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/text.php:2339 +msgid "website.zip" msgstr "" -#: ../../include/zot.php:3706 -msgid "invalid target signature" +#: ../../include/text.php:2340 +msgid "Enter a name for the zip file." msgstr "" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" +#: ../../include/text.php:2341 +msgid "Export to cloud files" msgstr "" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +#: ../../include/text.php:2342 +msgid "/path/to/export/folder" msgstr "" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" +#: ../../include/text.php:2343 +msgid "Enter a path to a cloud files destination." msgstr "" -#: ../../include/group.php:289 -msgid "edit" +#: ../../include/text.php:2344 +msgid "Specify folder" msgstr "" -#: ../../include/group.php:311 ../../include/features.php:83 -msgid "Privacy Groups" +#: ../../include/datetime.php:135 +msgid "Birthday" msgstr "" -#: ../../include/group.php:312 -msgid "Edit group" +#: ../../include/datetime.php:137 +msgid "Age: " msgstr "" -#: ../../include/group.php:313 -msgid "Add privacy group" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" +#: ../../include/datetime.php:272 ../../boot.php:2578 +msgid "never" msgstr "" -#: ../../include/group.php:316 ../../include/widgets.php:284 -msgid "add" +#: ../../include/datetime.php:278 +msgid "less than a second ago" msgstr "" -#: ../../include/photos.php:114 +#: ../../include/datetime.php:296 #, php-format -msgid "Image exceeds website size limit of %lu bytes" +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" msgstr "" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" -#: ../../include/photos.php:259 -msgid "Photo storage failed." +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" msgstr "" -#: ../../include/photos.php:299 -msgid "a new photo" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +#: ../../include/selectors.php:30 +msgid "Frequently" msgstr "" -#: ../../include/photos.php:506 ../../include/conversation.php:1670 -msgid "Photo Albums" +#: ../../include/selectors.php:31 +msgid "Hourly" msgstr "" -#: ../../include/photos.php:510 -msgid "Upload New Photos" +#: ../../include/selectors.php:32 +msgid "Twice daily" msgstr "" -#: ../../include/page_widgets.php:7 -msgid "New Page" +#: ../../include/selectors.php:33 +msgid "Daily" msgstr "" -#: ../../include/page_widgets.php:46 -msgid "Title" +#: ../../include/selectors.php:34 +msgid "Weekly" msgstr "" -#: ../../include/wiki.php:525 ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" +#: ../../include/selectors.php:35 +msgid "Monthly" msgstr "" -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" msgstr "" -#: ../../include/attach.php:500 -msgid "No source file." +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" msgstr "" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" +#: ../../include/selectors.php:49 +msgid "Currently Male" msgstr "" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" +#: ../../include/selectors.php:49 +msgid "Currently Female" msgstr "" -#: ../../include/attach.php:675 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../include/selectors.php:49 +msgid "Mostly Male" msgstr "" -#: ../../include/attach.php:689 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../include/selectors.php:49 +msgid "Mostly Female" msgstr "" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/selectors.php:49 +msgid "Transgender" msgstr "" -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/selectors.php:49 +msgid "Intersex" msgstr "" -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." +#: ../../include/selectors.php:49 +msgid "Transsexual" msgstr "" -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" msgstr "" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" +#: ../../include/selectors.php:49 +msgid "Neuter" msgstr "" -#: ../../include/attach.php:1026 -msgid "Path not found." +#: ../../include/selectors.php:49 +msgid "Non-specific" msgstr "" -#: ../../include/attach.php:1084 -msgid "mkdir failed." +#: ../../include/selectors.php:49 +msgid "Undecided" msgstr "" -#: ../../include/attach.php:1088 -msgid "database storage failed." +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" msgstr "" -#: ../../include/attach.php:1136 -msgid "Empty path" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" msgstr "" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" +#: ../../include/selectors.php:85 +msgid "Gay" msgstr "" -#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 -#: ../../include/event.php:69 -msgid "l F d, Y \\@ g:i A" +#: ../../include/selectors.php:85 +msgid "Lesbian" msgstr "" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" +#: ../../include/selectors.php:85 +msgid "No Preference" msgstr "" -#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 -#: ../../include/event.php:73 -msgid "Starts:" +#: ../../include/selectors.php:85 +msgid "Bisexual" msgstr "" -#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 -#: ../../include/event.php:77 -msgid "Finishes:" +#: ../../include/selectors.php:85 +msgid "Autosexual" msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../include/selectors.php:85 +msgid "Abstinent" msgstr "" -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" +#: ../../include/selectors.php:85 +msgid "Virgin" msgstr "" -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" +#: ../../include/selectors.php:85 +msgid "Deviant" msgstr "" -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" +#: ../../include/selectors.php:85 +msgid "Fetish" msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" +#: ../../include/selectors.php:85 +msgid "Oodles" msgstr "" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" +#: ../../include/selectors.php:85 +msgid "Nonsexual" msgstr "" -#: ../../include/js_strings.php:13 -msgid "everybody" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" +#: ../../include/selectors.php:123 +msgid "Lonely" msgstr "" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" +#: ../../include/selectors.php:123 +msgid "Available" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../include/selectors.php:123 +msgid "Unavailable" msgstr "" -#: ../../include/js_strings.php:17 -msgid "close all" +#: ../../include/selectors.php:123 +msgid "Has crush" msgstr "" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" +#: ../../include/selectors.php:123 +msgid "Infatuated" msgstr "" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" msgstr "" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" +#: ../../include/selectors.php:123 +msgid "Unfaithful" msgstr "" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" +#: ../../include/selectors.php:123 +msgid "Sex Addict" msgstr "" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" msgstr "" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" +#: ../../include/selectors.php:123 +msgid "Casual" msgstr "" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" +#: ../../include/selectors.php:123 +msgid "Engaged" msgstr "" -#: ../../include/js_strings.php:29 -msgid "ago" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" msgstr "" -#: ../../include/js_strings.php:30 -msgid "from now" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" msgstr "" -#: ../../include/js_strings.php:31 -msgid "less than a minute" +#: ../../include/selectors.php:123 +msgid "Partners" msgstr "" -#: ../../include/js_strings.php:32 -msgid "about a minute" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" msgstr "" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" +#: ../../include/selectors.php:123 +msgid "Common law" msgstr "" -#: ../../include/js_strings.php:34 -msgid "about an hour" +#: ../../include/selectors.php:123 +msgid "Happy" msgstr "" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" +#: ../../include/selectors.php:123 +msgid "Not looking" msgstr "" -#: ../../include/js_strings.php:36 -msgid "a day" +#: ../../include/selectors.php:123 +msgid "Swinger" msgstr "" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" +#: ../../include/selectors.php:123 +msgid "Betrayed" msgstr "" -#: ../../include/js_strings.php:38 -msgid "about a month" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" msgstr "" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" +#: ../../include/selectors.php:123 +msgid "Unstable" msgstr "" -#: ../../include/js_strings.php:40 -msgid "about a year" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" msgstr "" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" msgstr "" -#: ../../include/js_strings.php:42 -msgid " " +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" msgstr "" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" +#: ../../include/selectors.php:123 +msgid "Uncertain" msgstr "" -#: ../../include/js_strings.php:45 ../../include/text.php:1243 -msgid "January" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" msgstr "" -#: ../../include/js_strings.php:46 ../../include/text.php:1243 -msgid "February" +#: ../../include/selectors.php:123 +msgid "Don't care" msgstr "" -#: ../../include/js_strings.php:47 ../../include/text.php:1243 -msgid "March" +#: ../../include/selectors.php:123 +msgid "Ask me" msgstr "" -#: ../../include/js_strings.php:48 ../../include/text.php:1243 -msgid "April" +#: ../../include/zot.php:700 +msgid "Invalid data packet" msgstr "" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/js_strings.php:50 ../../include/text.php:1243 -msgid "June" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/js_strings.php:51 ../../include/text.php:1243 -msgid "July" +#: ../../include/zot.php:3711 +msgid "invalid target signature" msgstr "" -#: ../../include/js_strings.php:52 ../../include/text.php:1243 -msgid "August" +#: ../../include/security.php:109 +msgid "guest:" msgstr "" -#: ../../include/js_strings.php:53 ../../include/text.php:1243 -msgid "September" +#: ../../include/security.php:527 +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/js_strings.php:54 ../../include/text.php:1243 -msgid "October" +#: ../../include/items.php:918 ../../include/items.php:963 +msgid "(Unknown)" msgstr "" -#: ../../include/js_strings.php:55 ../../include/text.php:1243 -msgid "November" +#: ../../include/items.php:1162 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/js_strings.php:56 ../../include/text.php:1243 -msgid "December" +#: ../../include/items.php:1164 +msgid "Visible to you only." msgstr "" -#: ../../include/js_strings.php:57 -msgid "Jan" +#: ../../include/items.php:1166 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/js_strings.php:58 -msgid "Feb" +#: ../../include/items.php:1168 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/js_strings.php:59 -msgid "Mar" +#: ../../include/items.php:1170 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/js_strings.php:60 -msgid "Apr" +#: ../../include/items.php:1172 +msgid "Visible to all connections." msgstr "" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." msgstr "" -#: ../../include/js_strings.php:62 -msgid "Jun" +#: ../../include/items.php:1176 +msgid "Visible to specific connections." msgstr "" -#: ../../include/js_strings.php:63 -msgid "Jul" +#: ../../include/items.php:3966 +msgid "Privacy group is empty." msgstr "" -#: ../../include/js_strings.php:64 -msgid "Aug" +#: ../../include/items.php:3973 +#, php-format +msgid "Privacy group: %s" msgstr "" -#: ../../include/js_strings.php:65 -msgid "Sep" +#: ../../include/items.php:3985 +msgid "Connection not found." msgstr "" -#: ../../include/js_strings.php:66 -msgid "Oct" +#: ../../include/items.php:4338 +msgid "profile photo" msgstr "" -#: ../../include/js_strings.php:67 -msgid "Nov" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" msgstr "" -#: ../../include/js_strings.php:68 -msgid "Dec" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/js_strings.php:69 ../../include/text.php:1239 -msgid "Sunday" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" msgstr "" -#: ../../include/js_strings.php:70 ../../include/text.php:1239 -msgid "Monday" +#: ../../include/group.php:289 +msgid "edit" msgstr "" -#: ../../include/js_strings.php:71 ../../include/text.php:1239 -msgid "Tuesday" +#: ../../include/group.php:311 ../../include/features.php:83 +msgid "Privacy Groups" msgstr "" -#: ../../include/js_strings.php:72 ../../include/text.php:1239 -msgid "Wednesday" +#: ../../include/group.php:312 +msgid "Edit group" msgstr "" -#: ../../include/js_strings.php:73 ../../include/text.php:1239 -msgid "Thursday" +#: ../../include/group.php:313 +msgid "Add privacy group" msgstr "" -#: ../../include/js_strings.php:74 ../../include/text.php:1239 -msgid "Friday" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" msgstr "" -#: ../../include/js_strings.php:75 ../../include/text.php:1239 -msgid "Saturday" +#: ../../include/group.php:316 ../../include/widgets.php:284 +msgid "add" msgstr "" -#: ../../include/js_strings.php:76 -msgid "Sun" +#: ../../include/help.php:25 +msgid "Help:" msgstr "" -#: ../../include/js_strings.php:77 -msgid "Mon" +#: ../../include/page_widgets.php:7 +msgid "New Page" msgstr "" -#: ../../include/js_strings.php:78 -msgid "Tue" +#: ../../include/page_widgets.php:46 +msgid "Title" msgstr "" -#: ../../include/js_strings.php:79 -msgid "Wed" +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" msgstr "" -#: ../../include/js_strings.php:80 -msgid "Thu" +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 +msgid "Logout" msgstr "" -#: ../../include/js_strings.php:81 -msgid "Fri" +#: ../../include/nav.php:85 ../../include/nav.php:118 +msgid "End this session" msgstr "" -#: ../../include/js_strings.php:82 -msgid "Sat" +#: ../../include/nav.php:88 ../../include/nav.php:149 +msgid "Home" msgstr "" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" +#: ../../include/nav.php:88 +msgid "Your posts and conversations" msgstr "" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" +#: ../../include/nav.php:89 +msgid "Your profile page" msgstr "" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" +#: ../../include/nav.php:91 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" +#: ../../include/nav.php:93 +msgid "Edit your profile" msgstr "" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" +#: ../../include/nav.php:95 +msgid "Your photos" msgstr "" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." +#: ../../include/nav.php:96 +msgid "Your files" msgstr "" -#: ../../include/follow.php:32 -msgid "Channel location missing." +#: ../../include/nav.php:99 +msgid "Your chatrooms" msgstr "" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." +#: ../../include/nav.php:105 ../../include/conversation.php:1714 +msgid "Bookmarks" msgstr "" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." +#: ../../include/nav.php:105 +msgid "Your bookmarks" msgstr "" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." +#: ../../include/nav.php:109 +msgid "Your webpages" msgstr "" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." +#: ../../include/nav.php:111 +msgid "Your wiki" msgstr "" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." +#: ../../include/nav.php:115 +msgid "Sign in" msgstr "" -#: ../../include/acl_selectors.php:169 -msgid "Who can see this?" +#: ../../include/nav.php:132 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/acl_selectors.php:170 -msgid "Custom selection" +#: ../../include/nav.php:135 +msgid "Remote authentication" msgstr "" -#: ../../include/acl_selectors.php:171 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." +#: ../../include/nav.php:135 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/acl_selectors.php:172 -msgid "Show" +#: ../../include/nav.php:149 +msgid "Home Page" msgstr "" -#: ../../include/acl_selectors.php:173 -msgid "Don't show" +#: ../../include/nav.php:152 +msgid "Create an account" msgstr "" -#: ../../include/acl_selectors.php:207 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These " -"permissions set who is allowed to view the post." +#: ../../include/nav.php:164 +msgid "Help and documentation" msgstr "" -#: ../../include/text.php:404 -msgid "prev" +#: ../../include/nav.php:168 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/text.php:406 -msgid "first" +#: ../../include/nav.php:170 +msgid "Search site @name, #tag, ?docs, content" msgstr "" -#: ../../include/text.php:435 -msgid "last" +#: ../../include/nav.php:172 +msgid "Channel Directory" msgstr "" -#: ../../include/text.php:438 -msgid "next" +#: ../../include/nav.php:184 +msgid "Your grid" msgstr "" -#: ../../include/text.php:448 -msgid "older" +#: ../../include/nav.php:185 +msgid "Mark all grid notifications seen" msgstr "" -#: ../../include/text.php:450 -msgid "newer" +#: ../../include/nav.php:187 +msgid "Channel home" msgstr "" -#: ../../include/text.php:843 -msgid "No connections" +#: ../../include/nav.php:188 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" +#: ../../include/nav.php:194 +msgid "Notices" msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" +#: ../../include/nav.php:194 +msgid "Notifications" msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -#: ../../include/conversation.php:243 -msgid "poked" +#: ../../include/nav.php:195 +msgid "See all notifications" msgstr "" -#: ../../include/text.php:1019 -msgid "ping" +#: ../../include/nav.php:198 +msgid "Private mail" msgstr "" -#: ../../include/text.php:1019 -msgid "pinged" +#: ../../include/nav.php:199 +msgid "See all private messages" msgstr "" -#: ../../include/text.php:1020 -msgid "prod" +#: ../../include/nav.php:200 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/text.php:1020 -msgid "prodded" +#: ../../include/nav.php:201 ../../include/widgets.php:700 +msgid "Inbox" msgstr "" -#: ../../include/text.php:1021 -msgid "slap" +#: ../../include/nav.php:202 ../../include/widgets.php:705 +msgid "Outbox" msgstr "" -#: ../../include/text.php:1021 -msgid "slapped" +#: ../../include/nav.php:203 ../../include/widgets.php:710 +msgid "New Message" msgstr "" -#: ../../include/text.php:1022 -msgid "finger" +#: ../../include/nav.php:206 +msgid "Event Calendar" msgstr "" -#: ../../include/text.php:1022 -msgid "fingered" +#: ../../include/nav.php:207 +msgid "See all events" msgstr "" -#: ../../include/text.php:1023 -msgid "rebuff" +#: ../../include/nav.php:208 +msgid "Mark all events seen" msgstr "" -#: ../../include/text.php:1023 -msgid "rebuffed" +#: ../../include/nav.php:211 +msgid "Manage Your Channels" msgstr "" -#: ../../include/text.php:1035 -msgid "happy" +#: ../../include/nav.php:213 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/text.php:1036 -msgid "sad" +#: ../../include/nav.php:221 ../../include/widgets.php:1590 +msgid "Admin" msgstr "" -#: ../../include/text.php:1037 -msgid "mellow" +#: ../../include/nav.php:221 +msgid "Site Setup and Configuration" msgstr "" -#: ../../include/text.php:1038 -msgid "tired" +#: ../../include/nav.php:252 ../../include/conversation.php:855 +msgid "Loading..." msgstr "" -#: ../../include/text.php:1039 -msgid "perky" +#: ../../include/nav.php:257 +msgid "@name, #tag, ?doc, content" msgstr "" -#: ../../include/text.php:1040 -msgid "angry" +#: ../../include/nav.php:258 +msgid "Please wait..." msgstr "" -#: ../../include/text.php:1041 -msgid "stupefied" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" msgstr "" -#: ../../include/text.php:1042 -msgid "puzzled" +#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 +#: ../../include/event.php:69 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/text.php:1043 -msgid "interested" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" msgstr "" -#: ../../include/text.php:1044 -msgid "bitter" +#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 +#: ../../include/event.php:73 +msgid "Starts:" msgstr "" -#: ../../include/text.php:1045 -msgid "cheerful" +#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 +#: ../../include/event.php:77 +msgid "Finishes:" msgstr "" -#: ../../include/text.php:1046 -msgid "alive" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" msgstr "" -#: ../../include/text.php:1047 -msgid "annoyed" +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" msgstr "" -#: ../../include/text.php:1048 -msgid "anxious" +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" msgstr "" -#: ../../include/text.php:1049 -msgid "cranky" +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" msgstr "" -#: ../../include/text.php:1050 -msgid "disturbed" +#: ../../include/js_strings.php:11 +msgid "Password too short" msgstr "" -#: ../../include/text.php:1051 -msgid "frustrated" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" msgstr "" -#: ../../include/text.php:1052 -msgid "depressed" +#: ../../include/js_strings.php:13 +msgid "everybody" msgstr "" -#: ../../include/text.php:1053 -msgid "motivated" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" msgstr "" -#: ../../include/text.php:1054 -msgid "relaxed" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" msgstr "" -#: ../../include/text.php:1055 -msgid "surprised" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../include/text.php:1243 -msgid "May" +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" -#: ../../include/text.php:1320 ../../include/text.php:1324 -msgid "Unknown Attachment" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" msgstr "" -#: ../../include/text.php:1326 -msgid "unknown" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" msgstr "" -#: ../../include/text.php:1362 -msgid "remove category" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" msgstr "" -#: ../../include/text.php:1439 -msgid "remove from file" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" msgstr "" -#: ../../include/text.php:1738 ../../include/text.php:1809 -msgid "default" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../include/text.php:1746 -msgid "Page layout" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" msgstr "" -#: ../../include/text.php:1746 -msgid "You can create your own with the layouts tool" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../include/text.php:1788 -msgid "Page content type" +#: ../../include/js_strings.php:29 +msgid "ago" msgstr "" -#: ../../include/text.php:1821 -msgid "Select an alternate language" +#: ../../include/js_strings.php:30 +msgid "from now" msgstr "" -#: ../../include/text.php:1958 -msgid "activity" +#: ../../include/js_strings.php:31 +msgid "less than a minute" msgstr "" -#: ../../include/text.php:2259 -msgid "Design Tools" +#: ../../include/js_strings.php:32 +msgid "about a minute" msgstr "" -#: ../../include/text.php:2265 -msgid "Pages" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" msgstr "" -#: ../../include/text.php:2287 -msgid "Import website..." +#: ../../include/js_strings.php:34 +msgid "about an hour" msgstr "" -#: ../../include/text.php:2288 -msgid "Select folder to import" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" msgstr "" -#: ../../include/text.php:2289 -msgid "Import from a zipped folder:" +#: ../../include/js_strings.php:36 +msgid "a day" msgstr "" -#: ../../include/text.php:2290 -msgid "Import from cloud files:" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" msgstr "" -#: ../../include/text.php:2291 -msgid "/cloud/channel/path/to/folder" +#: ../../include/js_strings.php:38 +msgid "about a month" msgstr "" -#: ../../include/text.php:2292 -msgid "Enter path to website files" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" msgstr "" -#: ../../include/text.php:2293 -msgid "Select folder" +#: ../../include/js_strings.php:40 +msgid "about a year" msgstr "" -#: ../../include/text.php:2294 -msgid "Export website..." +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" msgstr "" -#: ../../include/text.php:2295 -msgid "Export to a zip file" +#: ../../include/js_strings.php:42 +msgid " " msgstr "" -#: ../../include/text.php:2296 -msgid "website.zip" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" msgstr "" -#: ../../include/text.php:2297 -msgid "Enter a name for the zip file." +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" msgstr "" -#: ../../include/text.php:2298 -msgid "Export to cloud files" +#: ../../include/js_strings.php:57 +msgid "Jan" msgstr "" -#: ../../include/text.php:2299 -msgid "/path/to/export/folder" +#: ../../include/js_strings.php:58 +msgid "Feb" msgstr "" -#: ../../include/text.php:2300 -msgid "Enter a path to a cloud files destination." +#: ../../include/js_strings.php:59 +msgid "Mar" msgstr "" -#: ../../include/text.php:2301 -msgid "Specify folder" +#: ../../include/js_strings.php:60 +msgid "Apr" msgstr "" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" msgstr "" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." +#: ../../include/js_strings.php:62 +msgid "Jun" msgstr "" -#: ../../include/import.php:1441 -msgid "Unable to import element \"" +#: ../../include/js_strings.php:63 +msgid "Jul" msgstr "" -#: ../../include/account.php:35 -msgid "Not a valid email address" +#: ../../include/js_strings.php:64 +msgid "Aug" msgstr "" -#: ../../include/account.php:37 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/js_strings.php:65 +msgid "Sep" msgstr "" -#: ../../include/account.php:43 -msgid "Your email address is already registered at this site." +#: ../../include/js_strings.php:66 +msgid "Oct" msgstr "" -#: ../../include/account.php:75 -msgid "An invitation is required." +#: ../../include/js_strings.php:67 +msgid "Nov" msgstr "" -#: ../../include/account.php:79 -msgid "Invitation could not be verified." +#: ../../include/js_strings.php:68 +msgid "Dec" msgstr "" -#: ../../include/account.php:129 -msgid "Please enter the required information." +#: ../../include/js_strings.php:76 +msgid "Sun" msgstr "" -#: ../../include/account.php:196 -msgid "Failed to store account information." +#: ../../include/js_strings.php:77 +msgid "Mon" msgstr "" -#: ../../include/account.php:256 -#, php-format -msgid "Registration confirmation for %s" +#: ../../include/js_strings.php:78 +msgid "Tue" msgstr "" -#: ../../include/account.php:322 -#, php-format -msgid "Registration request at %s" +#: ../../include/js_strings.php:79 +msgid "Wed" msgstr "" -#: ../../include/account.php:346 -msgid "your registration password" +#: ../../include/js_strings.php:80 +msgid "Thu" msgstr "" -#: ../../include/account.php:349 ../../include/account.php:409 -#, php-format -msgid "Registration details for %s" +#: ../../include/js_strings.php:81 +msgid "Fri" msgstr "" -#: ../../include/account.php:421 -msgid "Account approved." +#: ../../include/js_strings.php:82 +msgid "Sat" msgstr "" -#: ../../include/account.php:461 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" msgstr "" -#: ../../include/account.php:746 ../../include/account.php:748 -msgid "Click here to upgrade." +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" msgstr "" -#: ../../include/account.php:754 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" msgstr "" -#: ../../include/account.php:759 -msgid "This action is not available under your subscription plan." +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" msgstr "" -#: ../../include/auth.php:148 -msgid "Logged out." +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" msgstr "" -#: ../../include/auth.php:275 -msgid "Failed authentication" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/auth.php:286 -msgid "Login failed." +#: ../../include/follow.php:32 +msgid "Channel location missing." msgstr "" -#: ../../include/activities.php:41 -msgid " and " +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/activities.php:49 -msgid "public profile" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." msgstr "" -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." msgstr "" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." msgstr "" #: ../../include/conversation.php:204 @@ -8776,10 +8889,6 @@ msgstr "" msgid "remove" msgstr "" -#: ../../include/conversation.php:855 ../../include/nav.php:252 -msgid "Loading..." -msgstr "" - #: ../../include/conversation.php:856 msgid "Delete Selected Items" msgstr "" @@ -8877,495 +8986,489 @@ msgstr "" msgid "Comments disabled" msgstr "" -#: ../../include/conversation.php:1229 +#: ../../include/conversation.php:1233 msgid "Page link name" msgstr "" -#: ../../include/conversation.php:1232 +#: ../../include/conversation.php:1236 msgid "Post as" msgstr "" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1250 msgid "Toggle voting" msgstr "" -#: ../../include/conversation.php:1249 +#: ../../include/conversation.php:1253 msgid "Disable comments" msgstr "" -#: ../../include/conversation.php:1250 +#: ../../include/conversation.php:1254 msgid "Toggle comments" msgstr "" -#: ../../include/conversation.php:1258 +#: ../../include/conversation.php:1262 msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/conversation.php:1281 +#: ../../include/conversation.php:1285 msgid "Other networks and post services" msgstr "" -#: ../../include/conversation.php:1287 +#: ../../include/conversation.php:1291 msgid "Set publish date" msgstr "" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1540 msgid "Discover" msgstr "" -#: ../../include/conversation.php:1539 +#: ../../include/conversation.php:1543 msgid "Imported public streams" msgstr "" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1548 msgid "Commented Order" msgstr "" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1551 msgid "Sort by Comment Date" msgstr "" -#: ../../include/conversation.php:1551 +#: ../../include/conversation.php:1555 msgid "Posted Order" msgstr "" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1558 msgid "Sort by Post Date" msgstr "" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1566 msgid "Posts that mention or involve you" msgstr "" -#: ../../include/conversation.php:1571 +#: ../../include/conversation.php:1575 msgid "Activity Stream - by date" msgstr "" -#: ../../include/conversation.php:1577 +#: ../../include/conversation.php:1581 msgid "Starred" msgstr "" -#: ../../include/conversation.php:1580 +#: ../../include/conversation.php:1584 msgid "Favourite Posts" msgstr "" -#: ../../include/conversation.php:1587 +#: ../../include/conversation.php:1591 msgid "Spam" msgstr "" -#: ../../include/conversation.php:1590 +#: ../../include/conversation.php:1594 msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1649 +#: ../../include/conversation.php:1653 msgid "Status Messages and Posts" msgstr "" -#: ../../include/conversation.php:1658 +#: ../../include/conversation.php:1662 msgid "About" msgstr "" -#: ../../include/conversation.php:1661 +#: ../../include/conversation.php:1665 msgid "Profile Details" msgstr "" -#: ../../include/conversation.php:1677 +#: ../../include/conversation.php:1681 msgid "Files and Storage" msgstr "" -#: ../../include/conversation.php:1697 ../../include/conversation.php:1700 +#: ../../include/conversation.php:1701 ../../include/conversation.php:1704 #: ../../include/widgets.php:883 msgid "Chatrooms" msgstr "" -#: ../../include/conversation.php:1710 ../../include/nav.php:105 -msgid "Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1713 +#: ../../include/conversation.php:1717 msgid "Saved Bookmarks" msgstr "" -#: ../../include/conversation.php:1723 +#: ../../include/conversation.php:1727 msgid "Manage Webpages" msgstr "" -#: ../../include/conversation.php:1788 +#: ../../include/conversation.php:1792 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1791 +#: ../../include/conversation.php:1795 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1794 +#: ../../include/conversation.php:1798 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1797 +#: ../../include/conversation.php:1801 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1800 +#: ../../include/conversation.php:1804 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1803 +#: ../../include/conversation.php:1807 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "" msgstr[1] "" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:465 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "" - -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:314 -msgid "have" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/taxonomy.php:314 -msgid "has" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/taxonomy.php:315 -msgid "want" +#: ../../include/import.php:1441 +msgid "Unable to import element \"" msgstr "" -#: ../../include/taxonomy.php:315 -msgid "wants" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" msgstr "" -#: ../../include/taxonomy.php:316 -msgid "likes" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" msgstr "" -#: ../../include/taxonomy.php:317 -msgid "dislikes" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." msgstr "" -#: ../../include/features.php:50 -msgid "General Features" +#: ../../include/acl_selectors.php:172 +msgid "Show" msgstr "" -#: ../../include/features.php:52 -msgid "Content Expiration" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" msgstr "" -#: ../../include/features.php:52 -msgid "Remove posts/comments and/or private messages at a future time" +#: ../../include/acl_selectors.php:207 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These " +"permissions set who is allowed to view the post." msgstr "" -#: ../../include/features.php:53 -msgid "Multiple Profiles" +#: ../../include/auth.php:148 +msgid "Logged out." msgstr "" -#: ../../include/features.php:53 -msgid "Ability to create multiple profiles" +#: ../../include/auth.php:275 +msgid "Failed authentication" msgstr "" -#: ../../include/features.php:54 -msgid "Advanced Profiles" +#: ../../include/auth.php:286 +msgid "Login failed." msgstr "" -#: ../../include/features.php:54 -msgid "Additional profile sections and selections" +#: ../../include/activities.php:41 +msgid " and " msgstr "" -#: ../../include/features.php:55 -msgid "Profile Import/Export" +#: ../../include/activities.php:49 +msgid "public profile" msgstr "" -#: ../../include/features.php:55 -msgid "Save and load profile details across sites/channels" +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/features.php:56 -msgid "Web Pages" +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/features.php:56 -msgid "Provide managed web pages on your channel" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/features.php:57 -msgid "Provide a wiki for your channel" +#: ../../include/oembed.php:349 +msgid "Embedded content" msgstr "" -#: ../../include/features.php:59 -msgid "Private Notes" +#: ../../include/oembed.php:358 +msgid "Embedding disabled" msgstr "" -#: ../../include/features.php:59 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" msgstr "" -#: ../../include/features.php:60 -msgid "Navigation Channel Select" +#: ../../include/taxonomy.php:293 +msgid "Keywords" msgstr "" -#: ../../include/features.php:60 -msgid "Change channels directly from within the navigation dropdown menu" +#: ../../include/taxonomy.php:314 +msgid "have" msgstr "" -#: ../../include/features.php:61 -msgid "Photo Location" +#: ../../include/taxonomy.php:314 +msgid "has" msgstr "" -#: ../../include/features.php:61 -msgid "If location data is available on uploaded photos, link this to a map." +#: ../../include/taxonomy.php:315 +msgid "want" msgstr "" -#: ../../include/features.php:62 -msgid "Access Controlled Chatrooms" +#: ../../include/taxonomy.php:315 +msgid "wants" msgstr "" -#: ../../include/features.php:62 -msgid "Provide chatrooms and chat services with access control." +#: ../../include/taxonomy.php:316 +msgid "likes" msgstr "" -#: ../../include/features.php:63 -msgid "Smart Birthdays" +#: ../../include/taxonomy.php:317 +msgid "dislikes" msgstr "" -#: ../../include/features.php:63 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 +msgid "Image/photo" msgstr "" -#: ../../include/features.php:68 -msgid "Post Composition Features" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 +msgid "Encrypted content" msgstr "" -#: ../../include/features.php:69 -msgid "Large Photos" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " msgstr "" -#: ../../include/features.php:69 +#: ../../include/bbcode.php:182 +#, php-format msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." msgstr "" -#: ../../include/features.php:70 -msgid "Automatically import channel content from other channels or feeds" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/features.php:71 -msgid "Even More Encryption" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" msgstr "" -#: ../../include/features.php:71 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" +#: ../../include/bbcode.php:346 +msgid "spoiler" msgstr "" -#: ../../include/features.php:72 -msgid "Enable Voting Tools" +#: ../../include/bbcode.php:869 +msgid "$1 wrote:" msgstr "" -#: ../../include/features.php:72 -msgid "Provide a class of post which others can vote on" +#: ../../include/permissions.php:35 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/features.php:73 -msgid "Disable Comments" +#: ../../include/permissions.php:39 +msgid "Can view my webpages" msgstr "" -#: ../../include/features.php:73 -msgid "Provide the option to disable comments for a post" +#: ../../include/permissions.php:43 +msgid "Can post on my channel page (\"wall\")" msgstr "" - -#: ../../include/features.php:74 -msgid "Delayed Posting" + +#: ../../include/permissions.php:46 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" +#: ../../include/permissions.php:46 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" +#: ../../include/permissions.php:48 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/features.php:82 -msgid "Search by Date" +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" msgstr "" -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" msgstr "" -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/features.php:84 ../../include/widgets.php:283 -msgid "Saved Searches" +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/features.php:84 -msgid "Save search terms for re-use" +#: ../../include/permissions.php:55 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/features.php:85 -msgid "Network Personal Tab" +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" +#: ../../include/event.php:1021 +msgid "Not specified" msgstr "" -#: ../../include/features.php:86 -msgid "Network New Tab" +#: ../../include/event.php:1022 +msgid "Needs Action" msgstr "" -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" +#: ../../include/event.php:1023 +msgid "Completed" msgstr "" -#: ../../include/features.php:87 -msgid "Affinity Tool" +#: ../../include/event.php:1024 +msgid "In Process" msgstr "" -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" +#: ../../include/event.php:1025 +msgid "Cancelled" msgstr "" -#: ../../include/features.php:88 -msgid "Show friend and connection suggestions" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." msgstr "" -#: ../../include/features.php:93 -msgid "Post/Comment Tools" +#: ../../include/attach.php:500 +msgid "No source file." msgstr "" -#: ../../include/features.php:94 -msgid "Community Tagging" +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/features.php:94 -msgid "Ability to tag existing posts" +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/features.php:95 -msgid "Post Categories" +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/features.php:95 -msgid "Add categories to your posts" +#: ../../include/attach.php:689 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/features.php:96 -msgid "Emoji Reactions" +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/features.php:96 -msgid "Add emoji reaction ability to posts" +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/features.php:97 ../../include/widgets.php:346 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." msgstr "" -#: ../../include/features.php:97 -msgid "Ability to file posts under folders" +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" msgstr "" -#: ../../include/features.php:98 -msgid "Dislike Posts" +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" msgstr "" -#: ../../include/features.php:98 -msgid "Ability to dislike posts/comments" +#: ../../include/attach.php:1026 +msgid "Path not found." msgstr "" -#: ../../include/features.php:99 -msgid "Star Posts" +#: ../../include/attach.php:1084 +msgid "mkdir failed." msgstr "" -#: ../../include/features.php:99 -msgid "Ability to mark special posts with a star indicator" +#: ../../include/attach.php:1088 +msgid "database storage failed." msgstr "" -#: ../../include/features.php:100 -msgid "Tag Cloud" +#: ../../include/attach.php:1136 +msgid "Empty path" msgstr "" -#: ../../include/features.php:100 -msgid "Provide a personal tag cloud on your channel page" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" msgstr "" -#: ../../include/features.php:109 -msgid "Connection Filtering" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" msgstr "" -#: ../../include/features.php:110 -msgid "Filter incoming posts from connections based on keywords/content" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" msgstr "" -#: ../../include/features.php:120 -msgid "Premium Channel" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" msgstr "" -#: ../../include/features.php:121 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" +#: ../../include/message.php:20 +msgid "No recipient provided." msgstr "" -#: ../../include/features.php:128 -msgid "Advanced Directory Search" +#: ../../include/message.php:25 +msgid "[no subject]" msgstr "" -#: ../../include/features.php:129 -msgid "Allows creation of complex directory search queries" +#: ../../include/message.php:45 +msgid "Unable to determine sender." msgstr "" -#: ../../include/features.php:135 -msgid "Advanced Theme and Layout Settings" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." msgstr "" -#: ../../include/features.php:136 -msgid "Allows fine tuning of themes and page layouts" +#: ../../include/api.php:1330 +msgid "Public Timeline" msgstr "" #: ../../include/widgets.php:103 @@ -9409,9 +9512,8 @@ msgstr "" msgid "Remove term" msgstr "" -#: ../../include/widgets.php:349 ../../include/widgets.php:468 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" +#: ../../include/widgets.php:283 ../../include/features.php:84 +msgid "Saved Searches" msgstr "" #: ../../include/widgets.php:390 @@ -9466,18 +9568,6 @@ msgstr "" msgid "Combined View" msgstr "" -#: ../../include/widgets.php:700 ../../include/nav.php:201 -msgid "Inbox" -msgstr "" - -#: ../../include/widgets.php:705 ../../include/nav.php:202 -msgid "Outbox" -msgstr "" - -#: ../../include/widgets.php:710 ../../include/nav.php:203 -msgid "New Message" -msgstr "" - #: ../../include/widgets.php:727 ../../include/widgets.php:739 msgid "Conversations" msgstr "" @@ -9530,386 +9620,345 @@ msgstr "" msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/widgets.php:1012 +#: ../../include/widgets.php:1020 msgid "Suggested Chatrooms" msgstr "" -#: ../../include/widgets.php:1158 ../../include/widgets.php:1270 +#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 msgid "photo/image" msgstr "" -#: ../../include/widgets.php:1213 +#: ../../include/widgets.php:1221 msgid "Click to show more" msgstr "" -#: ../../include/widgets.php:1364 +#: ../../include/widgets.php:1372 msgid "Rating Tools" msgstr "" -#: ../../include/widgets.php:1368 ../../include/widgets.php:1370 +#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 msgid "Rate Me" msgstr "" -#: ../../include/widgets.php:1373 +#: ../../include/widgets.php:1381 msgid "View Ratings" msgstr "" -#: ../../include/widgets.php:1457 +#: ../../include/widgets.php:1465 msgid "Forums" msgstr "" -#: ../../include/widgets.php:1486 +#: ../../include/widgets.php:1494 msgid "Tasks" msgstr "" -#: ../../include/widgets.php:1495 +#: ../../include/widgets.php:1505 msgid "Documentation" msgstr "" -#: ../../include/widgets.php:1497 -msgid "Project/Site Information" -msgstr "" - -#: ../../include/widgets.php:1498 -msgid "For Members" -msgstr "" - -#: ../../include/widgets.php:1499 -msgid "For Administrators" -msgstr "" - -#: ../../include/widgets.php:1500 -msgid "For Developers" -msgstr "" - -#: ../../include/widgets.php:1524 ../../include/widgets.php:1562 +#: ../../include/widgets.php:1557 ../../include/widgets.php:1595 msgid "Member registrations waiting for confirmation" msgstr "" -#: ../../include/widgets.php:1530 +#: ../../include/widgets.php:1563 msgid "Inspect queue" msgstr "" -#: ../../include/widgets.php:1532 +#: ../../include/widgets.php:1565 msgid "DB updates" msgstr "" -#: ../../include/widgets.php:1557 ../../include/nav.php:221 -msgid "Admin" -msgstr "" - -#: ../../include/widgets.php:1558 +#: ../../include/widgets.php:1591 msgid "Plugin Features" msgstr "" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 -#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 -#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 -#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 -#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 -#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:920 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " +#: ../../include/features.php:50 +msgid "General Features" msgstr "" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." +#: ../../include/features.php:52 +msgid "Content Expiration" msgstr "" -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" +#: ../../include/features.php:53 +msgid "Multiple Profiles" msgstr "" -#: ../../include/bbcode.php:346 -msgid "spoiler" +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/bbcode.php:869 -msgid "$1 wrote:" +#: ../../include/features.php:54 +msgid "Advanced Profiles" msgstr "" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" msgstr "" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" +#: ../../include/features.php:55 +msgid "Profile Import/Export" msgstr "" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../include/features.php:56 +msgid "Web Pages" msgstr "" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" msgstr "" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" +#: ../../include/features.php:59 +msgid "Private Notes" msgstr "" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "" -#: ../../include/contact_widgets.php:127 -msgid "show more" +#: ../../include/features.php:60 +msgid "Navigation Channel Select" msgstr "" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" +#: ../../include/features.php:61 +msgid "Photo Location" msgstr "" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" +#: ../../include/features.php:61 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" msgstr "" -#: ../../include/message.php:20 -msgid "No recipient provided." +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." msgstr "" -#: ../../include/message.php:25 -msgid "[no subject]" +#: ../../include/features.php:63 +msgid "Smart Birthdays" msgstr "" -#: ../../include/message.php:45 -msgid "Unable to determine sender." +#: ../../include/features.php:63 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." msgstr "" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." +#: ../../include/features.php:68 +msgid "Post Composition Features" msgstr "" -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." +#: ../../include/features.php:69 +msgid "Large Photos" msgstr "" -#: ../../include/event.php:1021 -msgid "Not specified" +#: ../../include/features.php:69 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -#: ../../include/event.php:1022 -msgid "Needs Action" +#: ../../include/features.php:70 +msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../include/event.php:1023 -msgid "Completed" +#: ../../include/features.php:71 +msgid "Even More Encryption" msgstr "" -#: ../../include/event.php:1024 -msgid "In Process" +#: ../../include/features.php:71 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../include/event.php:1025 -msgid "Cancelled" +#: ../../include/features.php:72 +msgid "Enable Voting Tools" msgstr "" -#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1737 -msgid "Logout" +#: ../../include/features.php:72 +msgid "Provide a class of post which others can vote on" msgstr "" -#: ../../include/nav.php:85 ../../include/nav.php:118 -msgid "End this session" +#: ../../include/features.php:73 +msgid "Disable Comments" msgstr "" -#: ../../include/nav.php:88 ../../include/nav.php:149 -msgid "Home" +#: ../../include/features.php:73 +msgid "Provide the option to disable comments for a post" msgstr "" -#: ../../include/nav.php:88 -msgid "Your posts and conversations" +#: ../../include/features.php:74 +msgid "Delayed Posting" msgstr "" -#: ../../include/nav.php:89 -msgid "Your profile page" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" msgstr "" -#: ../../include/nav.php:91 -msgid "Manage/Edit profiles" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" msgstr "" -#: ../../include/nav.php:93 -msgid "Edit your profile" +#: ../../include/features.php:75 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." msgstr "" -#: ../../include/nav.php:95 -msgid "Your photos" +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" msgstr "" -#: ../../include/nav.php:96 -msgid "Your files" +#: ../../include/features.php:82 +msgid "Search by Date" msgstr "" -#: ../../include/nav.php:99 -msgid "Your chatrooms" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/nav.php:105 -msgid "Your bookmarks" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" msgstr "" -#: ../../include/nav.php:109 -msgid "Your webpages" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" msgstr "" -#: ../../include/nav.php:111 -msgid "Your wiki" +#: ../../include/features.php:85 +msgid "Network Personal Tab" msgstr "" -#: ../../include/nav.php:115 -msgid "Sign in" +#: ../../include/features.php:85 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/nav.php:132 -#, php-format -msgid "%s - click to logout" +#: ../../include/features.php:86 +msgid "Network New Tab" msgstr "" -#: ../../include/nav.php:135 -msgid "Remote authentication" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/nav.php:135 -msgid "Click to authenticate to your home hub" +#: ../../include/features.php:87 +msgid "Affinity Tool" msgstr "" -#: ../../include/nav.php:149 -msgid "Home Page" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/nav.php:152 -msgid "Create an account" +#: ../../include/features.php:88 +msgid "Show friend and connection suggestions" msgstr "" -#: ../../include/nav.php:164 -msgid "Help and documentation" +#: ../../include/features.php:93 +msgid "Post/Comment Tools" msgstr "" -#: ../../include/nav.php:168 -msgid "Applications, utilities, links, games" +#: ../../include/features.php:94 +msgid "Community Tagging" msgstr "" -#: ../../include/nav.php:170 -msgid "Search site @name, #tag, ?docs, content" +#: ../../include/features.php:94 +msgid "Ability to tag existing posts" msgstr "" -#: ../../include/nav.php:172 -msgid "Channel Directory" +#: ../../include/features.php:95 +msgid "Post Categories" msgstr "" -#: ../../include/nav.php:184 -msgid "Your grid" +#: ../../include/features.php:95 +msgid "Add categories to your posts" msgstr "" -#: ../../include/nav.php:185 -msgid "Mark all grid notifications seen" +#: ../../include/features.php:96 +msgid "Emoji Reactions" msgstr "" -#: ../../include/nav.php:187 -msgid "Channel home" +#: ../../include/features.php:96 +msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../include/nav.php:188 -msgid "Mark all channel notifications seen" +#: ../../include/features.php:97 +msgid "Ability to file posts under folders" msgstr "" -#: ../../include/nav.php:194 -msgid "Notices" +#: ../../include/features.php:98 +msgid "Dislike Posts" msgstr "" -#: ../../include/nav.php:194 -msgid "Notifications" +#: ../../include/features.php:98 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/nav.php:195 -msgid "See all notifications" +#: ../../include/features.php:99 +msgid "Star Posts" msgstr "" -#: ../../include/nav.php:198 -msgid "Private mail" +#: ../../include/features.php:99 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/nav.php:199 -msgid "See all private messages" +#: ../../include/features.php:100 +msgid "Tag Cloud" msgstr "" -#: ../../include/nav.php:200 -msgid "Mark all private messages seen" +#: ../../include/features.php:100 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/nav.php:206 -msgid "Event Calendar" +#: ../../include/features.php:109 +msgid "Connection Filtering" msgstr "" -#: ../../include/nav.php:207 -msgid "See all events" +#: ../../include/features.php:110 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../include/nav.php:208 -msgid "Mark all events seen" +#: ../../include/features.php:120 +msgid "Premium Channel" msgstr "" -#: ../../include/nav.php:211 -msgid "Manage Your Channels" +#: ../../include/features.php:121 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" msgstr "" -#: ../../include/nav.php:213 -msgid "Account/Channel Settings" +#: ../../include/features.php:128 +msgid "Advanced Directory Search" msgstr "" -#: ../../include/nav.php:221 -msgid "Site Setup and Configuration" +#: ../../include/features.php:129 +msgid "Allows creation of complex directory search queries" msgstr "" -#: ../../include/nav.php:257 -msgid "@name, #tag, ?doc, content" +#: ../../include/features.php:135 +msgid "Advanced Theme and Layout Settings" msgstr "" -#: ../../include/nav.php:258 -msgid "Please wait..." +#: ../../include/features.php:136 +msgid "Allows fine tuning of themes and page layouts" msgstr "" #: ../../view/theme/redbasic/php/config.php:9 @@ -10044,66 +10093,66 @@ msgstr "" msgid "Set size of followup author photos" msgstr "" -#: ../../boot.php:1194 +#: ../../boot.php:1195 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "" -#: ../../boot.php:1194 +#: ../../boot.php:1195 msgctxt "opensearch" msgid "$Projectname" msgstr "" -#: ../../boot.php:1512 +#: ../../boot.php:1513 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1515 +#: ../../boot.php:1516 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1719 +#: ../../boot.php:1720 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "" -#: ../../boot.php:1740 +#: ../../boot.php:1741 msgid "Login/Email" msgstr "" -#: ../../boot.php:1741 +#: ../../boot.php:1742 msgid "Password" msgstr "" -#: ../../boot.php:1742 +#: ../../boot.php:1743 msgid "Remember me" msgstr "" -#: ../../boot.php:1745 +#: ../../boot.php:1746 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2314 +#: ../../boot.php:2315 msgid "toggle mobile" msgstr "" -#: ../../boot.php:2469 +#: ../../boot.php:2470 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2472 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "" -#: ../../boot.php:2576 +#: ../../boot.php:2577 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2580 +#: ../../boot.php:2581 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "" -- cgit v1.2.3 From 81624a601a54eb761d4457b0cf7395f0fff0830f Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 12 Sep 2016 15:03:51 +0200 Subject: fix settings/account --- Zotlabs/Module/Settings/Account.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Settings/Account.php b/Zotlabs/Module/Settings/Account.php index 50bbc7be4..cd5ed1fca 100644 --- a/Zotlabs/Module/Settings/Account.php +++ b/Zotlabs/Module/Settings/Account.php @@ -1,6 +1,6 @@ Date: Wed, 14 Sep 2016 22:51:00 +0200 Subject: upgrade fullcalendar to version 3 --- boot.php | 2 +- library/fullcalendar/CHANGELOG.txt | 68 + library/fullcalendar/CONTRIBUTING.txt | 27 +- library/fullcalendar/fullcalendar.css | 204 ++- library/fullcalendar/fullcalendar.js | 2364 +++++++++++++++++---------- library/fullcalendar/fullcalendar.min.css | 4 +- library/fullcalendar/fullcalendar.min.js | 10 +- library/fullcalendar/fullcalendar.print.css | 2 +- library/fullcalendar/gcal.js | 2 +- library/fullcalendar/lang-all.js | 4 - 10 files changed, 1729 insertions(+), 958 deletions(-) delete mode 100644 library/fullcalendar/lang-all.js diff --git a/boot.php b/boot.php index 12a797fd1..1f01e13ca 100755 --- a/boot.php +++ b/boot.php @@ -44,7 +44,7 @@ require_once('include/account.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '1.13.2' ); +define ( 'STD_VERSION', '1.13.3' ); define ( 'ZOT_REVISION', '1.1' ); define ( 'DB_UPDATE_VERSION', 1183 ); diff --git a/library/fullcalendar/CHANGELOG.txt b/library/fullcalendar/CHANGELOG.txt index f488738b8..d9b58ce97 100644 --- a/library/fullcalendar/CHANGELOG.txt +++ b/library/fullcalendar/CHANGELOG.txt @@ -1,4 +1,72 @@ +v3.0.0 (2016-09-04) +------------------- + +Features: +- List View (#560) + - new views: `listDay`, `listWeek`, `listMonth`, `listYear`, and simply `list` + - `listDayFormat` + - `listDayAltFormat` + - `noEventsMessage` +- Clickable day/week numbers for easier navigation (#424) + - `navLinks` + - `navLinkDayClick` + - `navLinkWeekClick` +- Programmatically allow/disallow user interactions: + - `eventAllow` (#2740) + - `selectAllow` (#2511) +- Option to display week numbers in cells (#3024) + - `weekNumbersWithinDays` (set to `true` to activate) +- When week calc is ISO, default first day-of-week to Monday (#3255) +- Macedonian locale (#2739) +- Malay locale + +Breaking Changes: +- IE8 support dropped +- jQuery: minimum support raised to v2.0.0 +- MomentJS: minimum support raised to v2.9.0 +- `lang` option renamed to `locale` +- dist files have been renamed to be more consistent with MomentJS: + - `lang/` -> `locale/` + - `lang-all.js` -> `locale-all.js` +- behavior of moment methods no longer affected by ambiguousness: + - `isSame` + - `isBefore` + - `isAfter` +- View-Option-Hashes no longer supported (deprecated in 2.2.4) +- removed `weekMode` setting +- removed `axisFormat` setting +- DOM structure of month/basic-view day cell numbers changed + +Bugfixes: +- `$.fullCalendar.version` incorrect (#3292) + +Build System: +- using gulp instead of grunt (faster) +- using npm internally for dependencies instead of bower +- changed repo directory structure + + +v2.9.1 (2016-07-31) +------------------- + +- multiple definitions for businessHours (#2686) +- businessHours for single day doesn't display weekends (#2944) +- height/contentHeight can accept a function or 'parent' for dynamic value (#3271) +- fix +more popover clipped by overflow (#3232) +- fix +more popover positioned incorrectly when scrolled (#3137) +- Norwegian Nynorsk translation (#3246) +- fix isAnimating JS error (#3285) + + +v2.9.0 (2016-07-10) +------------------- + +- Setters for (almost) all options (#564). + See [docs](http://fullcalendar.io/docs/utilities/dynamic_options/) for more info. +- Travis CI improvements (#3266) + + v2.8.0 (2016-06-19) ------------------- diff --git a/library/fullcalendar/CONTRIBUTING.txt b/library/fullcalendar/CONTRIBUTING.txt index 5c6dce4ac..74084517b 100644 --- a/library/fullcalendar/CONTRIBUTING.txt +++ b/library/fullcalendar/CONTRIBUTING.txt @@ -21,9 +21,9 @@ Furthermore, each new feature should be designed as robustly as possible and be In the description of your [Pull Request][Using Pull Requests], please include recreation steps for the bug as well as a [JSFiddle/JSBin] demo. Communicating the buggy behavior is a requirement before a merge can happen. -## Contributing Languages +## Contributing Locales -Please edit the original files in the `lang/` directory. DO NOT edit anything in the `dist/` directory. The build system will responsible for merging FullCalendar's `lang/` data with the [MomentJS locale data]. +Please edit the original files in the `locale/` directory. DO NOT edit anything in the `dist/` directory. The build system will responsible for merging FullCalendar's `locale/` data with the [MomentJS locale data]. ## Other Ways to Contribute @@ -35,18 +35,18 @@ Please edit the original files in the `lang/` directory. DO NOT edit anything in You will need [Git][git], [Node][node], and NPM installed. For clarification, please view the [jQuery readme][jq-readme], which requires a similar setup. -Also, you will need the [grunt-cli][grunt-cli] and [bower][bower] packages installed globally (`-g`) on your system: +Also, you will need the [gulp-cli][gulp-cli] package installed globally (`-g`) on your system: - npm install -g grunt-cli bower + npm install -g gulp-cli Then, clone FullCalendar's git repo: git clone git://github.com/fullcalendar/fullcalendar.git -Enter the directory and install FullCalendar's development dependencies: +Enter the directory and install FullCalendar's dependencies: cd fullcalendar - ./build/init.sh + npm install ## What to edit @@ -58,19 +58,19 @@ When modifying files, please do not edit the generated or minified files in the After you make code changes, you'll want to compile the JS/CSS so that it can be previewed from the tests and demos. You can either manually rebuild each time you make a change: - grunt dev + gulp dev Or, you can run a script that automatically rebuilds whenever you save a source file: - ./build/watch.sh + gulp watch When you are finished, run the following command to write the distributable files into the `./dist/` directory: - grunt + gulp dist If you want to clean up the generated files, run: - grunt clean + gulp clean ## Style Guide @@ -103,14 +103,14 @@ Notes about whitespace: Run the command line tool to automatically check your style: - grunt check + gulp lint ## Before Submitting your Code If you have edited code (including **tests** and **translations**) and would like to submit a pull request, please make sure you have done the following: -1. Conformed to the style guide (successfully run `grunt check`) +1. Conformed to the style guide (successfully run `gulp lint`) 2. Written automated tests. View the [Automated Test Readme] @@ -121,8 +121,7 @@ If you have edited code (including **tests** and **translations**) and would lik [MomentJS locale data]: https://github.com/moment/moment/tree/develop/locale [git]: http://git-scm.com/ [node]: http://nodejs.org/ -[grunt-cli]: http://gruntjs.com/getting-started#installing-the-cli -[bower]: http://bower.io/ +[gulp-cli]: https://github.com/gulpjs/gulp/blob/master/docs/getting-started.md [jq-readme]: https://github.com/jquery/jquery/blob/master/README.md#what-you-need-to-build-your-own-jquery [Google JavaScript Style Guide]: http://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml [Automated Test Readme]: https://github.com/fullcalendar/fullcalendar/wiki/Automated-Tests diff --git a/library/fullcalendar/fullcalendar.css b/library/fullcalendar/fullcalendar.css index 166bd09d3..eba68be3b 100644 --- a/library/fullcalendar/fullcalendar.css +++ b/library/fullcalendar/fullcalendar.css @@ -1,5 +1,5 @@ /*! - * FullCalendar v2.8.0 Stylesheet + * FullCalendar v3.0.0 Stylesheet * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw */ @@ -29,7 +29,9 @@ body .fc { /* extra precedence to overcome jqui */ .fc-unthemed .fc-divider, .fc-unthemed .fc-row, .fc-unthemed .fc-content, /* for gutter border */ -.fc-unthemed .fc-popover { +.fc-unthemed .fc-popover, +.fc-unthemed .fc-list-view, +.fc-unthemed .fc-list-heading td { border-color: #ddd; } @@ -38,7 +40,8 @@ body .fc { /* extra precedence to overcome jqui */ } .fc-unthemed .fc-divider, -.fc-unthemed .fc-popover .fc-header { +.fc-unthemed .fc-popover .fc-header, +.fc-unthemed .fc-list-heading td { background: #eee; } @@ -53,13 +56,11 @@ body .fc { /* extra precedence to overcome jqui */ .fc-highlight { /* when user is selecting cells */ background: #bce8f1; opacity: .3; - filter: alpha(opacity=30); /* for IE */ } .fc-bgevent { /* default look for background events */ background: rgb(143, 223, 130); opacity: .3; - filter: alpha(opacity=30); /* for IE */ } .fc-nonbusiness { /* default look for non-business-hours areas */ @@ -247,7 +248,6 @@ NOTE: use percentage font sizes or else old IE chokes cursor: default; background-image: none; opacity: 0.65; - filter: alpha(opacity=65); box-shadow: none; } @@ -391,6 +391,18 @@ hr.fc-divider { } +/* Internal Nav Links +--------------------------------------------------------------------------------------------------*/ + +a[data-goto] { + cursor: pointer; +} + +a[data-goto]:hover { + text-decoration: underline; +} + + /* Fake Table Rows --------------------------------------------------------------------------------------------------*/ @@ -509,10 +521,14 @@ temporary rendered events). line-height: 1.3; border-radius: 3px; border: 1px solid #3a87ad; /* default BORDER color */ - background-color: #3a87ad; /* default BACKGROUND color */ font-weight: normal; /* undo jqui's ui-widget-header bold */ } +.fc-event, +.fc-event-dot { + background-color: #3a87ad; /* default BACKGROUND color */ +} + /* overpower some of bootstrap's and jqui's styles on tags */ .fc-event, .fc-event:hover, @@ -535,7 +551,6 @@ temporary rendered events). z-index: 1; background: #fff; opacity: .25; - filter: alpha(opacity=25); /* for IE */ } .fc-event .fc-content { @@ -689,6 +704,10 @@ be a descendant of the grid when it is being dragged. padding: 0 1px; } +tr:first-child > td > .fc-day-grid-event { + margin-top: 2px; /* a little bit more space before the first event */ +} + .fc-day-grid-event.fc-selected:after { content: ""; position: absolute; @@ -701,7 +720,6 @@ be a descendant of the grid when it is being dragged. /* darkening effect */ background: #000; opacity: .25; - filter: alpha(opacity=25); /* for IE */ } .fc-day-grid-event .fc-content { /* force events to be one-line tall */ @@ -786,6 +804,8 @@ a.fc-more:hover { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } + + /* Toolbar --------------------------------------------------------------------------------------------------*/ @@ -867,6 +887,8 @@ a.fc-more:hover { z-index: 1; } + + /* BasicView --------------------------------------------------------------------------------------------------*/ @@ -874,8 +896,7 @@ a.fc-more:hover { .fc-basicWeek-view .fc-content-skeleton, .fc-basicDay-view .fc-content-skeleton { - /* we are sure there are no day numbers in these views, so... */ - padding-top: 1px; /* add a pixel to make sure there are 2px padding above events */ + /* there may be week numbers in these views, so no padding-top */ padding-bottom: 1em; /* ensure a space at bottom of cell for user selecting/clicking */ } @@ -898,42 +919,45 @@ a.fc-more:hover { /* week and day number styling */ +.fc-day-top.fc-other-month { + opacity: 0.3; +} + .fc-basic-view .fc-week-number, .fc-basic-view .fc-day-number { - padding: 0 2px; + padding: 2px; +} + +.fc-basic-view th.fc-week-number, +.fc-basic-view th.fc-day-number { + padding: 0 2px; /* column headers can't have as much v space */ } -.fc-basic-view td.fc-week-number span, -.fc-basic-view td.fc-day-number { - padding-top: 2px; - padding-bottom: 2px; +.fc-ltr .fc-basic-view .fc-day-top .fc-day-number { float: right; } +.fc-rtl .fc-basic-view .fc-day-top .fc-day-number { float: left; } + +.fc-ltr .fc-basic-view .fc-day-top .fc-week-number { float: left; border-radius: 0 0 3px 0; } +.fc-rtl .fc-basic-view .fc-day-top .fc-week-number { float: right; border-radius: 0 0 0 3px; } + +.fc-basic-view .fc-day-top .fc-week-number { + min-width: 1.5em; + text-align: center; + background-color: #f2f2f2; + color: #808080; } -.fc-basic-view .fc-week-number { +/* when week/day number have own column */ + +.fc-basic-view td.fc-week-number { text-align: center; } -.fc-basic-view .fc-week-number span { +.fc-basic-view td.fc-week-number > * { /* work around the way we do column resizing and ensure a minimum width */ display: inline-block; min-width: 1.25em; } -.fc-ltr .fc-basic-view .fc-day-number { - text-align: right; -} - -.fc-rtl .fc-basic-view .fc-day-number { - text-align: left; -} - -.fc-day-number.fc-other-month { - opacity: 0.3; - filter: alpha(opacity=30); /* for IE */ - /* opacity with small font can sometimes look too faded - might want to set the 'color' property instead - making day-numbers bold also fixes the problem */ -} /* AgendaView all-day area --------------------------------------------------------------------------------------------------*/ @@ -948,7 +972,6 @@ a.fc-more:hover { } .fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton { - padding-top: 1px; /* add a pixel to make sure there are 2px padding above events */ padding-bottom: 1em; /* give space underneath events for clicking/selecting days */ } @@ -1259,3 +1282,116 @@ be a descendant of the grid when it is being dragged. border-top-color: transparent; border-bottom-color: transparent; } + + + +/* List View +--------------------------------------------------------------------------------------------------*/ + +/* possibly reusable */ + +.fc-event-dot { + display: inline-block; + width: 10px; + height: 10px; + border-radius: 5px; +} + +/* view wrapper */ + +.fc-rtl .fc-list-view { + direction: rtl; /* unlike core views, leverage browser RTL */ +} + +.fc-list-view { + border-width: 1px; + border-style: solid; +} + +/* table resets */ + +.fc .fc-list-table { + table-layout: auto; /* for shrinkwrapping cell content */ +} + +.fc-list-table td { + border-width: 1px 0 0; + padding: 8px 14px; +} + +.fc-list-table tr:first-child td { + border-top-width: 0; +} + +/* day headings with the list */ + +.fc-list-heading { + border-bottom-width: 1px; +} + +.fc-list-heading td { + font-weight: bold; +} + +.fc-ltr .fc-list-heading-main { float: left; } +.fc-ltr .fc-list-heading-alt { float: right; } + +.fc-rtl .fc-list-heading-main { float: right; } +.fc-rtl .fc-list-heading-alt { float: left; } + +/* event list items */ + +.fc-list-item.fc-has-url { + cursor: pointer; /* whole row will be clickable */ +} + +.fc-list-item:hover td { + background-color: #f5f5f5; +} + +.fc-list-item-marker, +.fc-list-item-time { + white-space: nowrap; + width: 1px; +} + +/* make the dot closer to the event title */ +.fc-ltr .fc-list-item-marker { padding-right: 0; } +.fc-rtl .fc-list-item-marker { padding-left: 0; } + +.fc-list-item-title a { + /* every event title cell has an tag */ + text-decoration: none; + color: inherit; +} + +.fc-list-item-title a[href]:hover { + /* hover effect only on titles with hrefs */ + text-decoration: underline; +} + +/* message when no events */ + +.fc-list-empty-wrap2 { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; +} + +.fc-list-empty-wrap1 { + width: 100%; + height: 100%; + display: table; +} + +.fc-list-empty { + display: table-cell; + vertical-align: middle; + text-align: center; +} + +.fc-unthemed .fc-list-empty { /* theme will provide own background */ + background-color: #eee; +} diff --git a/library/fullcalendar/fullcalendar.js b/library/fullcalendar/fullcalendar.js index 2460eb5e7..33c0c6a38 100644 --- a/library/fullcalendar/fullcalendar.js +++ b/library/fullcalendar/fullcalendar.js @@ -1,5 +1,5 @@ /*! - * FullCalendar v2.8.0 + * FullCalendar v3.0.0 * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw */ @@ -19,8 +19,8 @@ ;; var FC = $.fullCalendar = { - version: "2.8.0", - internalApiVersion: 4 + version: "3.0.0", + internalApiVersion: 6 }; var fcViews = FC.views = {}; @@ -71,56 +71,6 @@ function mergeOptions(optionObjs) { return mergeProps(optionObjs, complexOptions); } - -// Given options specified for the calendar's constructor, massages any legacy options into a non-legacy form. -// Converts View-Option-Hashes into the View-Specific-Options format. -function massageOverrides(input) { - var overrides = { views: input.views || {} }; // the output. ensure a `views` hash - var subObj; - - // iterate through all option override properties (except `views`) - $.each(input, function(name, val) { - if (name != 'views') { - - // could the value be a legacy View-Option-Hash? - if ( - $.isPlainObject(val) && - !/(time|duration|interval)$/i.test(name) && // exclude duration options. might be given as objects - $.inArray(name, complexOptions) == -1 // complex options aren't allowed to be View-Option-Hashes - ) { - subObj = null; - - // iterate through the properties of this possible View-Option-Hash value - $.each(val, function(subName, subVal) { - - // is the property targeting a view? - if (/^(month|week|day|default|basic(Week|Day)?|agenda(Week|Day)?)$/.test(subName)) { - if (!overrides.views[subName]) { // ensure the view-target entry exists - overrides.views[subName] = {}; - } - overrides.views[subName][name] = subVal; // record the value in the `views` object - } - else { // a non-View-Option-Hash property - if (!subObj) { - subObj = {}; - } - subObj[subName] = subVal; // accumulate these unrelated values for later - } - }); - - if (subObj) { // non-View-Option-Hash properties? transfer them as-is - overrides[name] = subObj; - } - } - else { - overrides[name] = val; // transfer normal options as-is - } - } - }); - - return overrides; -} - ;; // exports @@ -247,7 +197,7 @@ function undistributeHeight(els) { function matchCellWidths(els) { var maxInnerWidth = 0; - els.find('> span').each(function(i, innerEl) { + els.find('> *').each(function(i, innerEl) { var innerWidth = $(innerEl).outerWidth(); if (innerWidth > maxInnerWidth) { maxInnerWidth = innerWidth; @@ -628,7 +578,8 @@ function flexibleCompare(a, b) { ----------------------------------------------------------------------------------------------------------------------*/ -// Computes the intersection of the two ranges. Returns undefined if no intersection. +// Computes the intersection of the two ranges. Will return fresh date clones in a range. +// Returns undefined if no intersection. // Expects all dates to be normalized to the same timezone beforehand. // TODO: move to date section? function intersectRanges(subjectRange, constraintRange) { @@ -908,22 +859,6 @@ function copyOwnProps(src, dest) { } -// Copies over certain methods with the same names as Object.prototype methods. Overcomes an IE<=8 bug: -// https://developer.mozilla.org/en-US/docs/ECMAScript_DontEnum_attribute#JScript_DontEnum_Bug -function copyNativeMethods(src, dest) { - var names = [ 'constructor', 'toString', 'valueOf' ]; - var i, name; - - for (i = 0; i < names.length; i++) { - name = names[i]; - - if (src[name] !== Object.prototype[name]) { - dest[name] = src[name]; - } - } -} - - function hasOwnProp(obj, name) { return hasOwnPropMethod.call(obj, name); } @@ -989,6 +924,21 @@ function cssToStr(cssProps) { } +// Given an object hash of HTML attribute names to values, +// generates a string that can be injected between < > in HTML +function attrsToStr(attrs) { + var parts = []; + + $.each(attrs, function(name, val) { + if (val != null) { + parts.push(name + '="' + htmlEscape(val) + '"'); + } + }); + + return parts.join(' '); +} + + function capitaliseFirstLetter(str) { return str.charAt(0).toUpperCase() + str.slice(1); } @@ -1070,14 +1020,24 @@ function syncThen(promise, thenFunc) { ;; +/* +GENERAL NOTE on moments throughout the *entire rest* of the codebase: +All moments are assumed to be ambiguously-zoned unless otherwise noted, +with the NOTABLE EXCEOPTION of start/end dates that live on *Event Objects*. +Ambiguously-TIMED moments are assumed to be ambiguously-zoned by nature. +*/ + var ambigDateOfMonthRegex = /^\s*\d{4}-\d\d$/; var ambigTimeOrZoneRegex = /^\s*\d{4}-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?)?$/; var newMomentProto = moment.fn; // where we will attach our new methods var oldMomentProto = $.extend({}, newMomentProto); // copy of original moment methods -var allowValueOptimization; -var setUTCValues; // function defined below -var setLocalValues; // function defined below + +// tell momentjs to transfer these properties upon clone +var momentProperties = moment.momentProperties; +momentProperties.push('_fullCalendar'); +momentProperties.push('_ambigTime'); +momentProperties.push('_ambigZone'); // Creating @@ -1123,12 +1083,8 @@ function makeMoment(args, parseAsUTC, parseZone) { var ambigMatch; var mom; - if (moment.isMoment(input)) { - mom = moment.apply(null, args); // clone it - transferAmbigs(input, mom); // the ambig flags weren't transfered with the clone - } - else if (isNativeDate(input) || input === undefined) { - mom = moment.apply(null, args); // will be local + if (moment.isMoment(input) || isNativeDate(input) || input === undefined) { + mom = moment.apply(null, args); } else { // "parsing" is required isAmbigTime = false; @@ -1169,12 +1125,7 @@ function makeMoment(args, parseAsUTC, parseZone) { mom._ambigZone = true; } else if (isSingleString) { - if (mom.utcOffset) { - mom.utcOffset(input); // if not a valid zone, will assign UTC - } - else { - mom.zone(input); // for moment-pre-2.9 - } + mom.utcOffset(input); // if not a valid zone, will assign UTC } } } @@ -1185,21 +1136,6 @@ function makeMoment(args, parseAsUTC, parseZone) { } -// A clone method that works with the flags related to our enhanced functionality. -// In the future, use moment.momentProperties -newMomentProto.clone = function() { - var mom = oldMomentProto.clone.apply(this, arguments); - - // these flags weren't transfered with the clone - transferAmbigs(this, mom); - if (this._fullCalendar) { - mom._fullCalendar = true; - } - - return mom; -}; - - // Week Number // ------------------------------------------------------------------------------------------------- @@ -1207,8 +1143,7 @@ newMomentProto.clone = function() { // Returns the week number, considering the locale's custom week number calcuation // `weeks` is an alias for `week` newMomentProto.week = newMomentProto.weeks = function(input) { - var weekCalc = (this._locale || this._lang) // works pre-moment-2.8 - ._fullCalendar_weekCalc; + var weekCalc = this._locale._fullCalendar_weekCalc; if (input == null && typeof weekCalc === 'function') { // custom function only works for getter return weekCalc(this); @@ -1275,19 +1210,21 @@ newMomentProto.time = function(time) { // but preserving its YMD. A moment with a stripped time will display no time // nor timezone offset when .format() is called. newMomentProto.stripTime = function() { - var a; if (!this._ambigTime) { - // get the values before any conversion happens - a = this.toArray(); // array of y/m/d/h/m/s/ms + this.utc(true); // keepLocalTime=true (for keeping *date* value) - // TODO: use keepLocalTime in the future - this.utc(); // set the internal UTC flag (will clear the ambig flags) - setUTCValues(this, a.slice(0, 3)); // set the year/month/date. time will be zero + // set time to zero + this.set({ + hours: 0, + minutes: 0, + seconds: 0, + ms: 0 + }); // Mark the time as ambiguous. This needs to happen after the .utc() call, which might call .utcOffset(), - // which clears all ambig flags. Same with setUTCValues with moment-timezone. + // which clears all ambig flags. this._ambigTime = true; this._ambigZone = true; // if ambiguous time, also ambiguous timezone offset } @@ -1307,24 +1244,20 @@ newMomentProto.hasTime = function() { // Converts the moment to UTC, stripping out its timezone offset, but preserving its // YMD and time-of-day. A moment with a stripped timezone offset will display no // timezone offset when .format() is called. -// TODO: look into Moment's keepLocalTime functionality newMomentProto.stripZone = function() { - var a, wasAmbigTime; + var wasAmbigTime; if (!this._ambigZone) { - // get the values before any conversion happens - a = this.toArray(); // array of y/m/d/h/m/s/ms wasAmbigTime = this._ambigTime; - this.utc(); // set the internal UTC flag (might clear the ambig flags, depending on Moment internals) - setUTCValues(this, a); // will set the year/month/date/hours/minutes/seconds/ms + this.utc(true); // keepLocalTime=true (for keeping date and time values) // the above call to .utc()/.utcOffset() unfortunately might clear the ambig flags, so restore this._ambigTime = wasAmbigTime || false; // Mark the zone as ambiguous. This needs to happen after the .utc() call, which might call .utcOffset(), - // which clears the ambig flags. Same with setUTCValues with moment-timezone. + // which clears the ambig flags. this._ambigZone = true; } @@ -1337,32 +1270,26 @@ newMomentProto.hasZone = function() { }; -// this method implicitly marks a zone -newMomentProto.local = function() { - var a = this.toArray(); // year,month,date,hours,minutes,seconds,ms as an array - var wasAmbigZone = this._ambigZone; +// implicitly marks a zone +newMomentProto.local = function(keepLocalTime) { - oldMomentProto.local.apply(this, arguments); + // for when converting from ambiguously-zoned to local, + // keep the time values when converting from UTC -> local + oldMomentProto.local.call(this, this._ambigZone || keepLocalTime); // ensure non-ambiguous // this probably already happened via local() -> utcOffset(), but don't rely on Moment's internals this._ambigTime = false; this._ambigZone = false; - if (wasAmbigZone) { - // If the moment was ambiguously zoned, the date fields were stored as UTC. - // We want to preserve these, but in local time. - // TODO: look into Moment's keepLocalTime functionality - setLocalValues(this, a); - } - return this; // for chaining }; // implicitly marks a zone -newMomentProto.utc = function() { - oldMomentProto.utc.apply(this, arguments); +newMomentProto.utc = function(keepLocalTime) { + + oldMomentProto.utc.call(this, keepLocalTime); // ensure non-ambiguous // this probably already happened via utc() -> utcOffset(), but don't rely on Moment's internals @@ -1373,28 +1300,18 @@ newMomentProto.utc = function() { }; -// methods for arbitrarily manipulating timezone offset. -// should clear time/zone ambiguity when called. -$.each([ - 'zone', // only in moment-pre-2.9. deprecated afterwards - 'utcOffset' -], function(i, name) { - if (oldMomentProto[name]) { // original method exists? - - // this method implicitly marks a zone (will probably get called upon .utc() and .local()) - newMomentProto[name] = function(tzo) { +// implicitly marks a zone (will probably get called upon .utc() and .local()) +newMomentProto.utcOffset = function(tzo) { - if (tzo != null) { // setter - // these assignments needs to happen before the original zone method is called. - // I forget why, something to do with a browser crash. - this._ambigTime = false; - this._ambigZone = false; - } - - return oldMomentProto[name].apply(this, arguments); - }; + if (tzo != null) { // setter + // these assignments needs to happen before the original zone method is called. + // I forget why, something to do with a browser crash. + this._ambigTime = false; + this._ambigZone = false; } -}); + + return oldMomentProto.utcOffset.apply(this, arguments); +}; // Formatting @@ -1423,156 +1340,6 @@ newMomentProto.toISOString = function() { return oldMomentProto.toISOString.apply(this, arguments); }; - -// Querying -// ------------------------------------------------------------------------------------------------- - -// Is the moment within the specified range? `end` is exclusive. -// FYI, this method is not a standard Moment method, so always do our enhanced logic. -newMomentProto.isWithin = function(start, end) { - var a = commonlyAmbiguate([ this, start, end ]); - return a[0] >= a[1] && a[0] < a[2]; -}; - -// When isSame is called with units, timezone ambiguity is normalized before the comparison happens. -// If no units specified, the two moments must be identically the same, with matching ambig flags. -newMomentProto.isSame = function(input, units) { - var a; - - // only do custom logic if this is an enhanced moment - if (!this._fullCalendar) { - return oldMomentProto.isSame.apply(this, arguments); - } - - if (units) { - a = commonlyAmbiguate([ this, input ], true); // normalize timezones but don't erase times - return oldMomentProto.isSame.call(a[0], a[1], units); - } - else { - input = FC.moment.parseZone(input); // normalize input - return oldMomentProto.isSame.call(this, input) && - Boolean(this._ambigTime) === Boolean(input._ambigTime) && - Boolean(this._ambigZone) === Boolean(input._ambigZone); - } -}; - -// Make these query methods work with ambiguous moments -$.each([ - 'isBefore', - 'isAfter' -], function(i, methodName) { - newMomentProto[methodName] = function(input, units) { - var a; - - // only do custom logic if this is an enhanced moment - if (!this._fullCalendar) { - return oldMomentProto[methodName].apply(this, arguments); - } - - a = commonlyAmbiguate([ this, input ]); - return oldMomentProto[methodName].call(a[0], a[1], units); - }; -}); - - -// Misc Internals -// ------------------------------------------------------------------------------------------------- - -// given an array of moment-like inputs, return a parallel array w/ moments similarly ambiguated. -// for example, of one moment has ambig time, but not others, all moments will have their time stripped. -// set `preserveTime` to `true` to keep times, but only normalize zone ambiguity. -// returns the original moments if no modifications are necessary. -function commonlyAmbiguate(inputs, preserveTime) { - var anyAmbigTime = false; - var anyAmbigZone = false; - var len = inputs.length; - var moms = []; - var i, mom; - - // parse inputs into real moments and query their ambig flags - for (i = 0; i < len; i++) { - mom = inputs[i]; - if (!moment.isMoment(mom)) { - mom = FC.moment.parseZone(mom); - } - anyAmbigTime = anyAmbigTime || mom._ambigTime; - anyAmbigZone = anyAmbigZone || mom._ambigZone; - moms.push(mom); - } - - // strip each moment down to lowest common ambiguity - // use clones to avoid modifying the original moments - for (i = 0; i < len; i++) { - mom = moms[i]; - if (!preserveTime && anyAmbigTime && !mom._ambigTime) { - moms[i] = mom.clone().stripTime(); - } - else if (anyAmbigZone && !mom._ambigZone) { - moms[i] = mom.clone().stripZone(); - } - } - - return moms; -} - -// Transfers all the flags related to ambiguous time/zone from the `src` moment to the `dest` moment -// TODO: look into moment.momentProperties for this. -function transferAmbigs(src, dest) { - if (src._ambigTime) { - dest._ambigTime = true; - } - else if (dest._ambigTime) { - dest._ambigTime = false; - } - - if (src._ambigZone) { - dest._ambigZone = true; - } - else if (dest._ambigZone) { - dest._ambigZone = false; - } -} - - -// Sets the year/month/date/etc values of the moment from the given array. -// Inefficient because it calls each individual setter. -function setMomentValues(mom, a) { - mom.year(a[0] || 0) - .month(a[1] || 0) - .date(a[2] || 0) - .hours(a[3] || 0) - .minutes(a[4] || 0) - .seconds(a[5] || 0) - .milliseconds(a[6] || 0); -} - -// Can we set the moment's internal date directly? -allowValueOptimization = '_d' in moment() && 'updateOffset' in moment; - -// Utility function. Accepts a moment and an array of the UTC year/month/date/etc values to set. -// Assumes the given moment is already in UTC mode. -setUTCValues = allowValueOptimization ? function(mom, a) { - // simlate what moment's accessors do - mom._d.setTime(Date.UTC.apply(Date, a)); - moment.updateOffset(mom, false); // keepTime=false -} : setMomentValues; - -// Utility function. Accepts a moment and an array of the local year/month/date/etc values to set. -// Assumes the given moment is already in local mode. -setLocalValues = allowValueOptimization ? function(mom, a) { - // simlate what moment's accessors do - mom._d.setTime(+new Date( // FYI, there is now way to apply an array of args to a constructor - a[0] || 0, - a[1] || 0, - a[2] || 0, - a[3] || 0, - a[4] || 0, - a[5] || 0, - a[6] || 0 - )); - moment.updateOffset(mom, false); // keepTime=false -} : setMomentValues; - ;; // Single Date Formatting @@ -1653,7 +1420,7 @@ function formatRange(date1, date2, formatStr, separator, isRTL) { date1 = FC.moment.parseZone(date1); date2 = FC.moment.parseZone(date2); - localeData = (date1.localeData || date1.lang).call(date1); // works with moment-pre-2.8 + localeData = date1.localeData(); // Expand localized format strings, like "LL" -> "MMMM D YYYY" formatStr = localeData.longDateFormat(formatStr) || formatStr; @@ -1858,7 +1625,6 @@ function extendClass(superClass, members) { // copy each member variable/method onto the the subclass's prototype copyOwnProps(members, subClass.prototype); - copyNativeMethods(members, subClass.prototype); // hack for IE8 // copy over all class variables/methods to the subclass, such as `extend` and `mixin` copyOwnProps(superClass, subClass); @@ -1868,7 +1634,7 @@ function extendClass(superClass, members) { function mixIntoClass(theClass, members) { - copyOwnProps(members, theClass.prototype); // TODO: copyNativeMethods? + copyOwnProps(members, theClass.prototype); } ;; @@ -2263,17 +2029,6 @@ var CoordCache = FC.CoordCache = Class.extend({ }, - // Compute and return what the elements' bounding rectangle is, from the user's perspective. - // Right now, only returns a rectangle if constrained by an overflow:scroll element. - queryBoundingRect: function() { - var scrollParentEl = getScrollParent(this.els.eq(0)); - - if (!scrollParentEl.is(document)) { - return getClientRect(scrollParentEl); - } - }, - - // Populates the left/right internal coordinate arrays buildElHorizontals: function() { var lefts = []; @@ -2313,42 +2068,36 @@ var CoordCache = FC.CoordCache = Class.extend({ // Given a left offset (from document left), returns the index of the el that it horizontally intersects. - // If no intersection is made, or outside of the boundingRect, returns undefined. + // If no intersection is made, returns undefined. getHorizontalIndex: function(leftOffset) { this.ensureBuilt(); - var boundingRect = this.boundingRect; var lefts = this.lefts; var rights = this.rights; var len = lefts.length; var i; - if (!boundingRect || (leftOffset >= boundingRect.left && leftOffset < boundingRect.right)) { - for (i = 0; i < len; i++) { - if (leftOffset >= lefts[i] && leftOffset < rights[i]) { - return i; - } + for (i = 0; i < len; i++) { + if (leftOffset >= lefts[i] && leftOffset < rights[i]) { + return i; } } }, // Given a top offset (from document top), returns the index of the el that it vertically intersects. - // If no intersection is made, or outside of the boundingRect, returns undefined. + // If no intersection is made, returns undefined. getVerticalIndex: function(topOffset) { this.ensureBuilt(); - var boundingRect = this.boundingRect; var tops = this.tops; var bottoms = this.bottoms; var len = tops.length; var i; - if (!boundingRect || (topOffset >= boundingRect.top && topOffset < boundingRect.bottom)) { - for (i = 0; i < len; i++) { - if (topOffset >= tops[i] && topOffset < bottoms[i]) { - return i; - } + for (i = 0; i < len; i++) { + if (topOffset >= tops[i] && topOffset < bottoms[i]) { + return i; } } }, @@ -2424,6 +2173,32 @@ var CoordCache = FC.CoordCache = Class.extend({ getHeight: function(topIndex) { this.ensureBuilt(); return this.bottoms[topIndex] - this.tops[topIndex]; + }, + + + // Bounding Rect + // TODO: decouple this from CoordCache + + // Compute and return what the elements' bounding rectangle is, from the user's perspective. + // Right now, only returns a rectangle if constrained by an overflow:scroll element. + queryBoundingRect: function() { + var scrollParentEl = getScrollParent(this.els.eq(0)); + + if (!scrollParentEl.is(document)) { + return getClientRect(scrollParentEl); + } + }, + + isPointInBounds: function(leftOffset, topOffset) { + return this.isLeftInBounds(leftOffset) && this.isTopInBounds(topOffset); + }, + + isLeftInBounds: function(leftOffset) { + return !this.boundingRect || (leftOffset >= this.boundingRect.left && leftOffset < this.boundingRect.right); + }, + + isTopInBounds: function(topOffset) { + return !this.boundingRect || (topOffset >= this.boundingRect.top && topOffset < this.boundingRect.bottom); } }); @@ -2437,10 +2212,7 @@ var CoordCache = FC.CoordCache = Class.extend({ var DragListener = FC.DragListener = Class.extend(ListenerMixin, MouseIgnorerMixin, { options: null, - - // for IE8 bug-fighting behavior subjectEl: null, - subjectHref: null, // coordinates of the initial mousedown originX: null, @@ -2631,7 +2403,6 @@ var DragListener = FC.DragListener = Class.extend(ListenerMixin, MouseIgnorerMix handleDragStart: function(ev) { this.trigger('dragStart', ev); - this.initHrefHack(); }, @@ -2671,7 +2442,6 @@ var DragListener = FC.DragListener = Class.extend(ListenerMixin, MouseIgnorerMix handleDragEnd: function(ev) { this.trigger('dragEnd', ev); - this.destroyHrefHack(); }, @@ -2747,33 +2517,6 @@ var DragListener = FC.DragListener = Class.extend(ListenerMixin, MouseIgnorerMix }, - // HREF Hack - // ----------------------------------------------------------------------------------------------------------------- - - - initHrefHack: function() { - var subjectEl = this.subjectEl; - - // remove a mousedown'd 's href so it is not visited (IE8 bug) - if ((this.subjectHref = subjectEl ? subjectEl.attr('href') : null)) { - subjectEl.removeAttr('href'); - } - }, - - - destroyHrefHack: function() { - var subjectEl = this.subjectEl; - var subjectHref = this.subjectHref; - - // restore a mousedown'd 's href (for IE8 bug) - setTimeout(function() { // must be outside of the click's execution - if (subjectHref) { - subjectEl.attr('href', subjectHref); - } - }, 0); - }, - - // Utils // ----------------------------------------------------------------------------------------------------------------- @@ -3259,11 +3002,11 @@ var MouseFollower = Class.extend(ListenerMixin, { var _this = this; var revertDuration = this.options.revertDuration; - function complete() { - this.isAnimating = false; + function complete() { // might be called by .animate(), which might change `this` context + _this.isAnimating = false; _this.removeElement(); - this.top0 = this.left0 = null; // reset state for future updatePosition calls + _this.top0 = _this.left0 = null; // reset state for future updatePosition calls if (callback) { callback(); @@ -3297,7 +3040,6 @@ var MouseFollower = Class.extend(ListenerMixin, { var el = this.el; if (!el) { - this.sourceEl.width(); // hack to force IE8 to compute correct bounding box el = this.el = this.sourceEl.clone() .addClass(this.options.additionalClass || '') .css({ @@ -3342,7 +3084,6 @@ var MouseFollower = Class.extend(ListenerMixin, { // make sure origin info was computed if (this.top0 === null) { - this.sourceEl.width(); // hack to force IE8 to compute correct bounding box sourceOffset = this.sourceEl.offset(); origin = this.el.offsetParent().offset(); this.top0 = sourceOffset.top - origin.top; @@ -3396,6 +3137,9 @@ var MouseFollower = Class.extend(ListenerMixin, { var Grid = FC.Grid = Class.extend(ListenerMixin, MouseIgnorerMixin, { + // self-config, overridable by subclasses + hasDayInteractions: true, // can user click/select ranges of time? + view: null, // a View object isRTL: null, // shortcut to the view's isRTL option @@ -3563,10 +3307,13 @@ var Grid = FC.Grid = Class.extend(ListenerMixin, MouseIgnorerMixin, { // Does other DOM-related initializations. setElement: function(el) { this.el = el; - preventSelection(el); - this.bindDayHandler('touchstart', this.dayTouchStart); - this.bindDayHandler('mousedown', this.dayMousedown); + if (this.hasDayInteractions) { + preventSelection(el); + + this.bindDayHandler('touchstart', this.dayTouchStart); + this.bindDayHandler('mousedown', this.dayMousedown); + } // attach event-element-related handlers. in Grid.events // same garbage collection note as above. @@ -3583,8 +3330,12 @@ var Grid = FC.Grid = Class.extend(ListenerMixin, MouseIgnorerMixin, { // jQuery will take care of unregistering them when removeElement gets called. this.el.on(name, function(ev) { if ( - !$(ev.target).is('.fc-event-container *, .fc-more') && // not an an event element, or "more.." link - !$(ev.target).closest('.fc-popover').length // not on a popover (like the "more.." events one) + !$(ev.target).is( + _this.segSelector + ',' + // directly on an event element + _this.segSelector + ' *,' + // within an event element + '.fc-more,' + // a "more.." link + 'a[data-goto]' // a clickable nav link + ) ) { return handler.call(_this, ev); } @@ -3683,6 +3434,7 @@ var Grid = FC.Grid = Class.extend(ListenerMixin, MouseIgnorerMixin, { scroll: view.opt('dragScroll'), interactionStart: function() { dayClickHit = dragListener.origHit; // for dayClick, where no dragging happens + selectionSpan = null; }, dragStart: function() { view.unselect(); // since we could be rendering a new selection, we want to clear any old one @@ -3709,10 +3461,12 @@ var Grid = FC.Grid = Class.extend(ListenerMixin, MouseIgnorerMixin, { } } }, - hitOut: function() { + hitOut: function() { // called before mouse moves to a different hit OR moved out of all hits dayClickHit = null; selectionSpan = null; _this.unrenderSelection(); + }, + hitDone: function() { // called after a hitOut OR before a dragEnd enableCursor(); }, interactionEnd: function(ev, isCancelled) { @@ -3731,7 +3485,6 @@ var Grid = FC.Grid = Class.extend(ListenerMixin, MouseIgnorerMixin, { // the selection will already have been rendered. just report it view.reportSelection(selectionSpan, ev); } - enableCursor(); } } }); @@ -4034,6 +3787,9 @@ var Grid = FC.Grid = Class.extend(ListenerMixin, MouseIgnorerMixin, { Grid.mixin({ + // self-config, overridable by subclasses + segSelector: '.fc-event-container > *', // what constitutes an event element? + mousedOverSeg: null, // the segment object the user's mouse is over. null if over nothing isDraggingSeg: false, // is a segment being dragged? boolean isResizingSeg: false, // is a segment being resized? boolean @@ -4172,7 +3928,7 @@ Grid.mixin({ // Generates an array of classNames to be used for the default rendering of a background event. - // Called by the fill system. + // Called by fillSegHtml. bgEventSegClasses: function(seg) { var event = seg.event; var source = event.source || {}; @@ -4185,7 +3941,7 @@ Grid.mixin({ // Generates a semicolon-separated CSS string to be used for the default rendering of a background event. - // Called by the fill system. + // Called by fillSegHtml. bgEventSegCss: function(seg) { return { 'background-color': this.getSegSkinCss(seg)['background-color'] @@ -4194,32 +3950,68 @@ Grid.mixin({ // Generates an array of classNames to be used for the rendering business hours overlay. Called by the fill system. + // Called by fillSegHtml. businessHoursSegClasses: function(seg) { return [ 'fc-nonbusiness', 'fc-bgevent' ]; }, + /* Business Hours + ------------------------------------------------------------------------------------------------------------------*/ + + + // Compute business hour segs for the grid's current date range. + // Caller must ask if whole-day business hours are needed. + buildBusinessHourSegs: function(wholeDay) { + var events = this.view.calendar.getCurrentBusinessHourEvents(wholeDay); + + // HACK. Eventually refactor business hours "events" system. + // If no events are given, but businessHours is activated, this means the entire visible range should be + // marked as *not* business-hours, via inverse-background rendering. + if ( + !events.length && + this.view.calendar.options.businessHours // don't access view option. doesn't update with dynamic options + ) { + events = [ + $.extend({}, BUSINESS_HOUR_EVENT_DEFAULTS, { + start: this.view.end, // guaranteed out-of-range + end: this.view.end, // " + dow: null + }) + ]; + } + + return this.eventsToSegs(events); + }, + + /* Handlers ------------------------------------------------------------------------------------------------------------------*/ - // Attaches event-element-related handlers to the container element and leverage bubbling + // Attaches event-element-related handlers for *all* rendered event segments of the view. bindSegHandlers: function() { - this.bindSegHandler('touchstart', this.handleSegTouchStart); - this.bindSegHandler('touchend', this.handleSegTouchEnd); - this.bindSegHandler('mouseenter', this.handleSegMouseover); - this.bindSegHandler('mouseleave', this.handleSegMouseout); - this.bindSegHandler('mousedown', this.handleSegMousedown); - this.bindSegHandler('click', this.handleSegClick); + this.bindSegHandlersToEl(this.el); + }, + + + // Attaches event-element-related handlers to an arbitrary container element. leverages bubbling. + bindSegHandlersToEl: function(el) { + this.bindSegHandlerToEl(el, 'touchstart', this.handleSegTouchStart); + this.bindSegHandlerToEl(el, 'touchend', this.handleSegTouchEnd); + this.bindSegHandlerToEl(el, 'mouseenter', this.handleSegMouseover); + this.bindSegHandlerToEl(el, 'mouseleave', this.handleSegMouseout); + this.bindSegHandlerToEl(el, 'mousedown', this.handleSegMousedown); + this.bindSegHandlerToEl(el, 'click', this.handleSegClick); }, // Executes a handler for any a user-interaction on a segment. // Handler gets called with (seg, ev), and with the `this` context of the Grid - bindSegHandler: function(name, handler) { + bindSegHandlerToEl: function(el, name, handler) { var _this = this; - this.el.on(name, '.fc-event-container > *', function(ev) { + el.on(name, this.segSelector, function(ev) { var seg = $(this).data('fc-seg'); // grab segment data. put there by View::renderEvents // only call the handlers if there is not a drag/resize in progress @@ -4231,7 +4023,10 @@ Grid.mixin({ handleSegClick: function(seg, ev) { - return this.view.trigger('eventClick', seg.el[0], seg.event, ev); // can return `false` to cancel + var res = this.view.trigger('eventClick', seg.el[0], seg.event, ev); // can return `false` to cancel + if (res === false) { + ev.preventDefault(); + } }, @@ -4242,7 +4037,9 @@ Grid.mixin({ !this.mousedOverSeg ) { this.mousedOverSeg = seg; - seg.el.addClass('fc-allow-mouse-resize'); + if (this.view.isEventResizable(seg.event)) { + seg.el.addClass('fc-allow-mouse-resize'); + } this.view.trigger('eventMouseover', seg.el[0], seg.event, ev); } }, @@ -4256,7 +4053,9 @@ Grid.mixin({ if (this.mousedOverSeg) { seg = seg || this.mousedOverSeg; // if given no args, use the currently moused-over segment this.mousedOverSeg = null; - seg.el.removeClass('fc-allow-mouse-resize'); + if (this.view.isEventResizable(seg.event)) { + seg.el.removeClass('fc-allow-mouse-resize'); + } this.view.trigger('eventMouseout', seg.el[0], seg.event, ev); } }, @@ -4353,6 +4152,7 @@ Grid.mixin({ subjectEl: el, subjectCenter: true, interactionStart: function(ev) { + seg.component = _this; // for renderDrag isDragging = false; mouseFollower = new MouseFollower(seg.el, { additionalClass: 'fc-dragging', @@ -4421,6 +4221,8 @@ Grid.mixin({ enableCursor(); }, interactionEnd: function(ev) { + delete seg.component; // prevent side effects + // do revert animation if hasn't changed. calls a callback when finished (whether animation or not) mouseFollower.stop(!dropLocation, function() { if (isDragging) { @@ -4508,11 +4310,7 @@ Grid.mixin({ } // othewise, work off existing values else { - dropLocation = { - start: event.start.clone(), - end: event.end ? event.end.clone() : null, - allDay: event.allDay // keep it the same - }; + dropLocation = pluckEventDateProps(event); } dropLocation.start.add(delta); @@ -4538,11 +4336,7 @@ Grid.mixin({ var opacity = this.view.opt('dragOpacity'); if (opacity != null) { - els.each(function(i, node) { - // Don't use jQuery (will set an IE filter), do it the old fashioned way. - // In IE8, a helper element will disappears if there's a filter. - node.style.opacity = opacity; - }); + els.css('opacity', opacity); } }, @@ -4708,8 +4502,11 @@ Grid.mixin({ disableCursor(); resizeLocation = null; } - // no change? (TODO: how does this work with timezones?) - else if (resizeLocation.start.isSame(event.start) && resizeLocation.end.isSame(eventEnd)) { + // no change? (FYI, event dates might have zones) + else if ( + resizeLocation.start.isSame(event.start.clone().stripZone()) && + resizeLocation.end.isSame(eventEnd.clone().stripZone()) + ) { resizeLocation = null; } } @@ -4862,15 +4659,11 @@ Grid.mixin({ // Generic utility for generating the HTML classNames for an event segment's element getSegClasses: function(seg, isDraggable, isResizable) { var view = this.view; - var event = seg.event; var classes = [ 'fc-event', seg.isStart ? 'fc-start' : 'fc-not-start', seg.isEnd ? 'fc-end' : 'fc-not-end' - ].concat( - event.className, - event.source ? event.source.className : [] - ); + ].concat(this.getSegCustomClasses(seg)); if (isDraggable) { classes.push('fc-draggable'); @@ -4880,7 +4673,7 @@ Grid.mixin({ } // event is currently selected? attach a className. - if (view.isEventSelected(event)) { + if (view.isEventSelected(seg.event)) { classes.push('fc-selected'); } @@ -4888,38 +4681,78 @@ Grid.mixin({ }, - // Utility for generating event skin-related CSS properties - getSegSkinCss: function(seg) { + // List of classes that were defined by the caller of the API in some way + getSegCustomClasses: function(seg) { var event = seg.event; - var view = this.view; - var source = event.source || {}; - var eventColor = event.color; - var sourceColor = source.color; - var optionColor = view.opt('eventColor'); + return [].concat( + event.className, // guaranteed to be an array + event.source ? event.source.className : [] + ); + }, + + + // Utility for generating event skin-related CSS properties + getSegSkinCss: function(seg) { return { - 'background-color': - event.backgroundColor || - eventColor || - source.backgroundColor || - sourceColor || - view.opt('eventBackgroundColor') || - optionColor, - 'border-color': - event.borderColor || - eventColor || - source.borderColor || - sourceColor || - view.opt('eventBorderColor') || - optionColor, - color: - event.textColor || - source.textColor || - view.opt('eventTextColor') + 'background-color': this.getSegBackgroundColor(seg), + 'border-color': this.getSegBorderColor(seg), + color: this.getSegTextColor(seg) }; }, + // Queries for caller-specified color, then falls back to default + getSegBackgroundColor: function(seg) { + return seg.event.backgroundColor || + seg.event.color || + this.getSegDefaultBackgroundColor(seg); + }, + + + getSegDefaultBackgroundColor: function(seg) { + var source = seg.event.source || {}; + + return source.backgroundColor || + source.color || + this.view.opt('eventBackgroundColor') || + this.view.opt('eventColor'); + }, + + + // Queries for caller-specified color, then falls back to default + getSegBorderColor: function(seg) { + return seg.event.borderColor || + seg.event.color || + this.getSegDefaultBorderColor(seg); + }, + + + getSegDefaultBorderColor: function(seg) { + var source = seg.event.source || {}; + + return source.borderColor || + source.color || + this.view.opt('eventBorderColor') || + this.view.opt('eventColor'); + }, + + + // Queries for caller-specified color, then falls back to default + getSegTextColor: function(seg) { + return seg.event.textColor || + this.getSegDefaultTextColor(seg); + }, + + + getSegDefaultTextColor: function(seg) { + var source = seg.event.source || {}; + + return source.textColor || + this.view.opt('eventTextColor'); + }, + + /* Converting events -> eventRange -> eventSpan -> eventSegs ------------------------------------------------------------------------------------------------------------------*/ @@ -4987,20 +4820,25 @@ Grid.mixin({ // Generates the unzoned start/end dates an event appears to occupy // Can accept an event "location" as well (which only has start/end and no allDay) eventToRange: function(event) { - return { - start: event.start.clone().stripZone(), - end: ( + var calendar = this.view.calendar; + var start = event.start.clone().stripZone(); + var end = ( event.end ? event.end.clone() : // derive the end from the start and allDay. compute allDay if necessary - this.view.calendar.getDefaultEventEnd( + calendar.getDefaultEventEnd( event.allDay != null ? event.allDay : !event.start.hasTime(), event.start ) - ).stripZone() - }; + ).stripZone(); + + // hack: dynamic locale change forgets to upate stored event localed + calendar.localizeMoment(start); + calendar.localizeMoment(end); + + return { start: start, end: end }; }, @@ -5103,6 +4941,16 @@ Grid.mixin({ ----------------------------------------------------------------------------------------------------------------------*/ +function pluckEventDateProps(event) { + return { + start: event.start.clone(), + end: event.end ? event.end.clone() : null, + allDay: event.allDay // keep it the same + }; +} +FC.pluckEventDateProps = pluckEventDateProps; + + function isBgEvent(event) { // returns true if background OR inverse-background var rendering = getEventRendering(event); return rendering === 'background' || rendering === 'inverse-background'; @@ -5493,7 +5341,7 @@ var DayTableMixin = FC.DayTableMixin = { return '' + '
    '; }, @@ -5656,13 +5508,16 @@ var DayGrid = FC.DayGrid = Grid.extend(DayTableMixin, { renderBusinessHours: function() { - var events = this.view.calendar.getBusinessHoursEvents(true); // wholeDay=true - var segs = this.eventsToSegs(events); - + var segs = this.buildBusinessHourSegs(true); // wholeDay=true this.renderFill('businessHours', segs, 'bgevent'); }, + unrenderBusinessHours: function() { + this.unrenderFill('businessHours'); + }, + + // Generates the HTML for a single row, which is a div that wraps a table. // `row` is the row number. renderDayRowHtml: function(row, isRigid) { @@ -5729,23 +5584,57 @@ var DayGrid = FC.DayGrid = Grid.extend(DayTableMixin, { // Generates the HTML for the '; - }, + classes.unshift('fc-day-top'); - - /* Options + if (this.view.cellWeekNumbersVisible) { + // To determine the day of week number change under ISO, we cannot + // rely on moment.js methods such as firstDayOfWeek() or weekday(), + // because they rely on the locale's dow (possibly overridden by + // our firstDay option), which may not be Monday. We cannot change + // dow, because that would affect the calendar start day as well. + if (date._locale._fullCalendar_weekCalc === 'ISO') { + weekCalcFirstDoW = 1; // Monday by ISO 8601 definition + } + else { + weekCalcFirstDoW = date._locale.firstDayOfWeek(); + } + } + + html += ''; + + return html; + }, + + + /* Options ------------------------------------------------------------------------------------------------------------------*/ @@ -5809,11 +5698,13 @@ var DayGrid = FC.DayGrid = Grid.extend(DayTableMixin, { queryHit: function(leftOffset, topOffset) { - var col = this.colCoordCache.getHorizontalIndex(leftOffset); - var row = this.rowCoordCache.getVerticalIndex(topOffset); + if (this.colCoordCache.isLeftInBounds(leftOffset) && this.rowCoordCache.isTopInBounds(topOffset)) { + var col = this.colCoordCache.getHorizontalIndex(leftOffset); + var row = this.rowCoordCache.getVerticalIndex(topOffset); - if (row != null && col != null) { - return this.getCellHit(row, col); + if (row != null && col != null) { + return this.getCellHit(row, col); + } } }, @@ -5864,8 +5755,7 @@ var DayGrid = FC.DayGrid = Grid.extend(DayTableMixin, { this.renderHighlight(this.eventToSpan(eventLocation)); // if a segment from the same calendar but another component is being dragged, render a helper event - if (seg && !seg.el.closest(this.el).length) { - + if (seg && seg.component !== this) { return this.renderEventLocationHelper(eventLocation, seg); // returns mock event elements } }, @@ -6573,7 +6463,7 @@ DayGrid.mixin({ options = { className: 'fc-more-popover', content: this.renderSegPopoverContent(row, col, segs), - parentEl: this.el, + parentEl: this.view.el, // attach to root of view. guarantees outside of scrollbars. top: topEl.offset().top, autoHide: true, // when the user clicks elsewhere, hide the popover viewportConstrain: view.opt('popoverViewportConstrain'), @@ -6596,6 +6486,10 @@ DayGrid.mixin({ this.segPopover = new Popover(options); this.segPopover.show(); + + // the popover doesn't live within the grid's container element, and thus won't get the event + // delegated-handlers for free. attach event-related handlers to the popover. + this.bindSegHandlersToEl(this.segPopover.el); }, @@ -6844,7 +6738,6 @@ var TimeGrid = FC.TimeGrid = Grid.extend(DayTableMixin, { this.labelFormat = input || - view.opt('axisFormat') || // deprecated view.opt('smallTimeFormat'); // the computed default input = view.opt('slotLabelInterval'); @@ -6905,27 +6798,30 @@ var TimeGrid = FC.TimeGrid = Grid.extend(DayTableMixin, { var snapsPerSlot = this.snapsPerSlot; var colCoordCache = this.colCoordCache; var slatCoordCache = this.slatCoordCache; - var colIndex = colCoordCache.getHorizontalIndex(leftOffset); - var slatIndex = slatCoordCache.getVerticalIndex(topOffset); - - if (colIndex != null && slatIndex != null) { - var slatTop = slatCoordCache.getTopOffset(slatIndex); - var slatHeight = slatCoordCache.getHeight(slatIndex); - var partial = (topOffset - slatTop) / slatHeight; // floating point number between 0 and 1 - var localSnapIndex = Math.floor(partial * snapsPerSlot); // the snap # relative to start of slat - var snapIndex = slatIndex * snapsPerSlot + localSnapIndex; - var snapTop = slatTop + (localSnapIndex / snapsPerSlot) * slatHeight; - var snapBottom = slatTop + ((localSnapIndex + 1) / snapsPerSlot) * slatHeight; - - return { - col: colIndex, - snap: snapIndex, - component: this, // needed unfortunately :( - left: colCoordCache.getLeftOffset(colIndex), - right: colCoordCache.getRightOffset(colIndex), - top: snapTop, - bottom: snapBottom - }; + + if (colCoordCache.isLeftInBounds(leftOffset) && slatCoordCache.isTopInBounds(topOffset)) { + var colIndex = colCoordCache.getHorizontalIndex(leftOffset); + var slatIndex = slatCoordCache.getVerticalIndex(topOffset); + + if (colIndex != null && slatIndex != null) { + var slatTop = slatCoordCache.getTopOffset(slatIndex); + var slatHeight = slatCoordCache.getHeight(slatIndex); + var partial = (topOffset - slatTop) / slatHeight; // floating point number between 0 and 1 + var localSnapIndex = Math.floor(partial * snapsPerSlot); // the snap # relative to start of slat + var snapIndex = slatIndex * snapsPerSlot + localSnapIndex; + var snapTop = slatTop + (localSnapIndex / snapsPerSlot) * slatHeight; + var snapBottom = slatTop + ((localSnapIndex + 1) / snapsPerSlot) * slatHeight; + + return { + col: colIndex, + snap: snapIndex, + component: this, // needed unfortunately :( + left: colCoordCache.getLeftOffset(colIndex), + right: colCoordCache.getRightOffset(colIndex), + top: snapTop, + bottom: snapBottom + }; + } } }, @@ -7128,10 +7024,9 @@ var TimeGrid = FC.TimeGrid = Grid.extend(DayTableMixin, { renderBusinessHours: function() { - var events = this.view.calendar.getBusinessHoursEvents(); - var segs = this.eventsToSegs(events); - - this.renderBusinessSegs(segs); + this.renderBusinessSegs( + this.buildBusinessHourSegs() + ); }, @@ -8074,6 +7969,62 @@ var View = FC.View = Class.extend(EmitterMixin, ListenerMixin, { }, + getAllDayHtml: function() { + return this.opt('allDayHtml') || htmlEscape(this.opt('allDayText')); + }, + + + /* Navigation + ------------------------------------------------------------------------------------------------------------------*/ + + + // Generates HTML for an anchor to another view into the calendar. + // Will either generate an tag or a non-clickable tag, depending on enabled settings. + // `gotoOptions` can either be a moment input, or an object with the form: + // { date, type, forceOff } + // `type` is a view-type like "day" or "week". default value is "day". + // `attrs` and `innerHtml` are use to generate the rest of the HTML tag. + buildGotoAnchorHtml: function(gotoOptions, attrs, innerHtml) { + var date, type, forceOff; + var finalOptions; + + if ($.isPlainObject(gotoOptions)) { + date = gotoOptions.date; + type = gotoOptions.type; + forceOff = gotoOptions.forceOff; + } + else { + date = gotoOptions; // a single moment input + } + date = FC.moment(date); // if a string, parse it + + finalOptions = { // for serialization into the link + date: date.format('YYYY-MM-DD'), + type: type || 'day' + }; + + if (typeof attrs === 'string') { + innerHtml = attrs; + attrs = null; + } + + attrs = attrs ? ' ' + attrsToStr(attrs) : ''; // will have a leading space + innerHtml = innerHtml || ''; + + if (!forceOff && this.opt('navLinks')) { + return '' + + innerHtml + + ''; + } + else { + return '' + + innerHtml + + ''; + } + }, + + /* Rendering ------------------------------------------------------------------------------------------------------------------*/ @@ -8110,12 +8061,12 @@ var View = FC.View = Class.extend(EmitterMixin, ListenerMixin, { // Does everything necessary to display the view centered around the given unzoned date. // Does every type of rendering EXCEPT rendering events. // Is asychronous and returns a promise. - display: function(date) { + display: function(date, explicitScrollState) { var _this = this; - var scrollState = null; + var prevScrollState = null; - if (this.displaying) { - scrollState = this.queryScroll(); + if (explicitScrollState != null && this.displaying) { // don't need prevScrollState if explicitScrollState + prevScrollState = this.queryScroll(); } this.calendar.freezeContentHeight(); @@ -8124,7 +8075,17 @@ var View = FC.View = Class.extend(EmitterMixin, ListenerMixin, { return ( _this.displaying = syncThen(_this.displayView(date), function() { // displayView might return a promise - _this.forceScroll(_this.computeInitialScroll(scrollState)); + + // caller of display() wants a specific scroll state? + if (explicitScrollState != null) { + // we make an assumption that this is NOT the initial render, + // and thus don't need forceScroll (is inconveniently asynchronous) + _this.setScroll(explicitScrollState); + } + else { + _this.forceScroll(_this.computeInitialScroll(prevScrollState)); + } + _this.calendar.unfreezeContentHeight(); _this.triggerRender(); }) @@ -8559,14 +8520,24 @@ var View = FC.View = Class.extend(EmitterMixin, ListenerMixin, { // Computes if the given event is allowed to be dragged by the user isEventDraggable: function(event) { - var source = event.source || {}; + return this.isEventStartEditable(event); + }, + + isEventStartEditable: function(event) { return firstDefined( event.startEditable, - source.startEditable, + (event.source || {}).startEditable, this.opt('eventStartEditable'), + this.isEventGenerallyEditable(event) + ); + }, + + + isEventGenerallyEditable: function(event) { + return firstDefined( event.editable, - source.editable, + (event.source || {}).editable, this.opt('editable') ); }, @@ -9066,8 +9037,9 @@ var Scroller = FC.Scroller = Class.extend({ var Calendar = FC.Calendar = Class.extend({ dirDefaults: null, // option defaults related to LTR or RTL - langDefaults: null, // option defaults related to current locale + localeDefaults: null, // option defaults related to current locale overrides: null, // option overrides given to the fullCalendar constructor + dynamicOverrides: null, // options set with dynamic setter method. higher precedence than view overrides. options: null, // all defaults combined with overrides viewSpecCache: null, // cache of view definitions view: null, // current View object @@ -9085,41 +9057,40 @@ var Calendar = FC.Calendar = Class.extend({ }, - // Initializes `this.options` and other important options-related objects - initOptions: function(overrides) { - var lang, langDefaults; + // Computes the flattened options hash for the calendar and assigns to `this.options`. + // Assumes this.overrides and this.dynamicOverrides have already been initialized. + populateOptionsHash: function() { + var locale, localeDefaults; var isRTL, dirDefaults; - // converts legacy options into non-legacy ones. - // in the future, when this is removed, don't use `overrides` reference. make a copy. - overrides = massageOverrides(overrides); - - lang = overrides.lang; - langDefaults = langOptionHash[lang]; - if (!langDefaults) { - lang = Calendar.defaults.lang; - langDefaults = langOptionHash[lang] || {}; + locale = firstDefined( // explicit locale option given? + this.dynamicOverrides.locale, + this.overrides.locale + ); + localeDefaults = localeOptionHash[locale]; + if (!localeDefaults) { // explicit locale option not given or invalid? + locale = Calendar.defaults.locale; + localeDefaults = localeOptionHash[locale] || {}; } - isRTL = firstDefined( - overrides.isRTL, - langDefaults.isRTL, + isRTL = firstDefined( // based on options computed so far, is direction RTL? + this.dynamicOverrides.isRTL, + this.overrides.isRTL, + localeDefaults.isRTL, Calendar.defaults.isRTL ); dirDefaults = isRTL ? Calendar.rtlDefaults : {}; this.dirDefaults = dirDefaults; - this.langDefaults = langDefaults; - this.overrides = overrides; + this.localeDefaults = localeDefaults; this.options = mergeOptions([ // merge defaults and overrides. lowest to highest precedence Calendar.defaults, // global defaults dirDefaults, - langDefaults, - overrides + localeDefaults, + this.overrides, + this.dynamicOverrides ]); - populateInstanceComputableOptions(this.options); - - this.viewSpecCache = {}; // somewhat unrelated + populateInstanceComputableOptions(this.options); // fill in gaps with computed options }, @@ -9231,9 +9202,10 @@ var Calendar = FC.Calendar = Class.extend({ Calendar.defaults, // global defaults spec.defaults, // view's defaults (from ViewSubclass.defaults) this.dirDefaults, - this.langDefaults, // locale and dir take precedence over view's defaults! + this.localeDefaults, // locale and dir take precedence over view's defaults! this.overrides, // calendar's overrides (options given to constructor) - spec.overrides // view's overrides (view-specific options) + spec.overrides, // view's overrides (view-specific options) + this.dynamicOverrides // dynamically set via setter. highest precedence ]); populateInstanceComputableOptions(spec.options); }, @@ -9247,17 +9219,21 @@ var Calendar = FC.Calendar = Class.extend({ function queryButtonText(options) { var buttonText = options.buttonText || {}; return buttonText[requestedViewType] || + // view can decide to look up a certain key + (spec.buttonTextKey ? buttonText[spec.buttonTextKey] : null) || + // a key like "month" (spec.singleUnit ? buttonText[spec.singleUnit] : null); } // highest to lowest priority spec.buttonTextOverride = + queryButtonText(this.dynamicOverrides) || queryButtonText(this.overrides) || // constructor-specified buttonText lookup hash takes precedence spec.overrides.buttonText; // `buttonText` for view-specific options is a string // highest to lowest priority. mirrors buildViewSpecOptions spec.buttonTextDefault = - queryButtonText(this.langDefaults) || + queryButtonText(this.localeDefaults) || queryButtonText(this.dirDefaults) || spec.defaults.buttonText || // a single string. from ViewSubclass.defaults queryButtonText(Calendar.defaults) || @@ -9324,10 +9300,6 @@ function Calendar_constructor(element, overrides) { var t = this; - t.initOptions(overrides || {}); - var options = this.options; - - // Exports // ----------------------------------------------------------------------------------- @@ -9352,67 +9324,95 @@ function Calendar_constructor(element, overrides) { t.getDate = getDate; t.getCalendar = getCalendar; t.getView = getView; - t.option = option; + t.option = option; // getter/setter method t.trigger = trigger; + // Options + // ----------------------------------------------------------------------------------- + + t.dynamicOverrides = {}; + t.viewSpecCache = {}; + t.optionHandlers = {}; // for Calendar.options.js + t.overrides = $.extend({}, overrides); // make a copy + + t.populateOptionsHash(); // sets this.options + - // Language-data Internals + + // Locale-data Internals // ----------------------------------------------------------------------------------- - // Apply overrides to the current language's data + // Apply overrides to the current locale's data + var localeData; - var localeData = createObject( // make a cheap copy - getMomentLocaleData(options.lang) // will fall back to en - ); + // Called immediately, and when any of the options change. + // Happens before any internal objects rebuild or rerender, because this is very core. + t.bindOptions([ + 'locale', 'monthNames', 'monthNamesShort', 'dayNames', 'dayNamesShort', 'firstDay', 'weekNumberCalculation' + ], function(locale, monthNames, monthNamesShort, dayNames, dayNamesShort, firstDay, weekNumberCalculation) { - if (options.monthNames) { - localeData._months = options.monthNames; - } - if (options.monthNamesShort) { - localeData._monthsShort = options.monthNamesShort; - } - if (options.dayNames) { - localeData._weekdays = options.dayNames; - } - if (options.dayNamesShort) { - localeData._weekdaysShort = options.dayNamesShort; - } - if (options.firstDay != null) { - var _week = createObject(localeData._week); // _week: { dow: # } - _week.dow = options.firstDay; - localeData._week = _week; - } + // normalize + if (weekNumberCalculation === 'iso') { + weekNumberCalculation = 'ISO'; // normalize + } + + localeData = createObject( // make a cheap copy + getMomentLocaleData(locale) // will fall back to en + ); + + if (monthNames) { + localeData._months = monthNames; + } + if (monthNamesShort) { + localeData._monthsShort = monthNamesShort; + } + if (dayNames) { + localeData._weekdays = dayNames; + } + if (dayNamesShort) { + localeData._weekdaysShort = dayNamesShort; + } - // assign a normalized value, to be used by our .week() moment extension - localeData._fullCalendar_weekCalc = (function(weekCalc) { - if (typeof weekCalc === 'function') { - return weekCalc; + if (firstDay == null && weekNumberCalculation === 'ISO') { + firstDay = 1; } - else if (weekCalc === 'local') { - return weekCalc; + if (firstDay != null) { + var _week = createObject(localeData._week); // _week: { dow: # } + _week.dow = firstDay; + localeData._week = _week; } - else if (weekCalc === 'iso' || weekCalc === 'ISO') { - return 'ISO'; + + if ( // whitelist certain kinds of input + weekNumberCalculation === 'ISO' || + weekNumberCalculation === 'local' || + typeof weekNumberCalculation === 'function' + ) { + localeData._fullCalendar_weekCalc = weekNumberCalculation; // moment-ext will know what to do with it } - })(options.weekNumberCalculation); + // If the internal current date object already exists, move to new locale. + // We do NOT need to do this technique for event dates, because this happens when converting to "segments". + if (date) { + localizeMoment(date); // sets to localeData + } + }); // Calendar-specific Date Utilities // ----------------------------------------------------------------------------------- - t.defaultAllDayEventDuration = moment.duration(options.defaultAllDayEventDuration); - t.defaultTimedEventDuration = moment.duration(options.defaultTimedEventDuration); + t.defaultAllDayEventDuration = moment.duration(t.options.defaultAllDayEventDuration); + t.defaultTimedEventDuration = moment.duration(t.options.defaultTimedEventDuration); - // Builds a moment using the settings of the current calendar: timezone and language. + // Builds a moment using the settings of the current calendar: timezone and locale. // Accepts anything the vanilla moment() constructor accepts. t.moment = function() { var mom; - if (options.timezone === 'local') { + if (t.options.timezone === 'local') { mom = FC.moment.apply(null, arguments); // Force the moment to be local, because FC.moment doesn't guarantee it. @@ -9420,28 +9420,30 @@ function Calendar_constructor(element, overrides) { mom.local(); } } - else if (options.timezone === 'UTC') { + else if (t.options.timezone === 'UTC') { mom = FC.moment.utc.apply(null, arguments); // process as UTC } else { mom = FC.moment.parseZone.apply(null, arguments); // let the input decide the zone } - if ('_locale' in mom) { // moment 2.8 and above - mom._locale = localeData; - } - else { // pre-moment-2.8 - mom._lang = localeData; - } + localizeMoment(mom); return mom; }; + // Updates the given moment's locale settings to the current calendar locale settings. + function localizeMoment(mom) { + mom._locale = localeData; + } + t.localizeMoment = localizeMoment; + + // Returns a boolean about whether or not the calendar knows how to calculate // the timezone offset of arbitrary dates in the current timezone. t.getIsAmbigTimezone = function() { - return options.timezone !== 'local' && options.timezone !== 'UTC'; + return t.options.timezone !== 'local' && t.options.timezone !== 'UTC'; }; @@ -9470,7 +9472,7 @@ function Calendar_constructor(element, overrides) { // Returns a moment for the current date, as defined by the client's computer or from the `now` option. // Will return an moment with an ambiguous timezone. t.getNow = function() { - var now = options.now; + var now = t.options.now; if (typeof now === 'function') { now = now(); } @@ -9512,8 +9514,7 @@ function Calendar_constructor(element, overrides) { // Produces a human-readable string for the given duration. // Side-effect: changes the locale of the given duration. t.humanizeDuration = function(duration) { - return (duration.locale || duration.lang).call(duration, options.lang) // works moment-pre-2.8 - .humanize(); + return duration.locale(t.options.locale).humanize(); }; @@ -9522,7 +9523,7 @@ function Calendar_constructor(element, overrides) { // ----------------------------------------------------------------------------------- - EventManager.call(t, options); + EventManager.call(t); var isFetchNeeded = t.isFetchNeeded; var fetchEvents = t.fetchEvents; var fetchEventSources = t.fetchEventSources; @@ -9535,7 +9536,6 @@ function Calendar_constructor(element, overrides) { var _element = element[0]; var header; - var headerElement; var content; var tm; // for making theme classes var currentView; // NOTE: keep this in sync with this.view @@ -9553,8 +9553,8 @@ function Calendar_constructor(element, overrides) { // compute the initial ambig-timezone date - if (options.defaultDate != null) { - date = t.moment(options.defaultDate).stripZone(); + if (t.options.defaultDate != null) { + date = t.moment(t.options.defaultDate).stripZone(); } else { date = t.getNow(); // getNow already returns unzoned @@ -9574,38 +9574,64 @@ function Calendar_constructor(element, overrides) { function initialRender() { - tm = options.theme ? 'ui' : 'fc'; element.addClass('fc'); - if (options.isRTL) { - element.addClass('fc-rtl'); - } - else { - element.addClass('fc-ltr'); - } + // event delegation for nav links + element.on('click.fc', 'a[data-goto]', function(ev) { + var anchorEl = $(this); + var gotoOptions = anchorEl.data('goto'); // will automatically parse JSON + var date = t.moment(gotoOptions.date); + var viewType = gotoOptions.type; - if (options.theme) { - element.addClass('ui-widget'); - } - else { - element.addClass('fc-unthemed'); - } + // property like "navLinkDayClick". might be a string or a function + var customAction = currentView.opt('navLink' + capitaliseFirstLetter(viewType) + 'Click'); + + if (typeof customAction === 'function') { + customAction(date, ev); + } + else { + if (typeof customAction === 'string') { + viewType = customAction; + } + zoomTo(date, viewType); + } + }); + + // called immediately, and upon option change + t.bindOption('theme', function(theme) { + tm = theme ? 'ui' : 'fc'; // affects a larger scope + element.toggleClass('ui-widget', theme); + element.toggleClass('fc-unthemed', !theme); + }); + + // called immediately, and upon option change. + // HACK: locale often affects isRTL, so we explicitly listen to that too. + t.bindOptions([ 'isRTL', 'locale' ], function(isRTL) { + element.toggleClass('fc-ltr', !isRTL); + element.toggleClass('fc-rtl', isRTL); + }); content = $("
    ").prependTo(element); - header = t.header = new Header(t, options); - headerElement = header.render(); - if (headerElement) { - element.prepend(headerElement); - } + header = t.header = new Header(t); + renderHeader(); - renderView(options.defaultView); + renderView(t.options.defaultView); - if (options.handleWindowResize) { - windowResizeProxy = debounce(windowResize, options.windowResizeDelay); // prevents rapid calls + if (t.options.handleWindowResize) { + windowResizeProxy = debounce(windowResize, t.options.windowResizeDelay); // prevents rapid calls $(window).resize(windowResizeProxy); } } + + + // can be called repeatedly and Header will rerender + function renderHeader() { + header.render(); + if (header.el) { + element.prepend(header.el); + } + } function destroy() { @@ -9621,6 +9647,8 @@ function Calendar_constructor(element, overrides) { content.remove(); element.removeClass('fc fc-ltr fc-rtl fc-unthemed ui-widget'); + element.off('.fc'); // unbind nav link handlers + if (windowResizeProxy) { $(window).unbind('resize', windowResizeProxy); } @@ -9639,15 +9667,14 @@ function Calendar_constructor(element, overrides) { // Renders a view because of a date change, view-type change, or for the first time. // If not given a viewType, keep the current view but render different dates. - function renderView(viewType) { + // Accepts an optional scroll state to restore to. + function renderView(viewType, explicitScrollState) { ignoreWindowResize++; // if viewType is changing, remove the old view's rendering if (currentView && viewType && currentView.type !== viewType) { - header.deactivateButton(currentView.type); freezeContentHeight(); // prevent a scroll jump when view element is removed - currentView.removeElement(); - currentView = t.view = null; + clearView(); } // if viewType changed, or the view was never created, create a fresh view @@ -9670,11 +9697,14 @@ function Calendar_constructor(element, overrides) { // render or rerender the view if ( !currentView.displaying || - !date.isWithin(currentView.intervalStart, currentView.intervalEnd) // implicit date window change + !( // NOT within interval range signals an implicit date window change + date >= currentView.intervalStart && + date < currentView.intervalEnd + ) ) { if (elementVisible()) { - currentView.display(date); // will call freezeContentHeight + currentView.display(date, explicitScrollState); // will call freezeContentHeight unfreezeContentHeight(); // immediately unfreeze regardless of whether display is async // need to do this after View::render, so dates are calculated @@ -9690,6 +9720,32 @@ function Calendar_constructor(element, overrides) { ignoreWindowResize--; } + + // Unrenders the current view and reflects this change in the Header. + // Unregsiters the `currentView`, but does not remove from viewByType hash. + function clearView() { + header.deactivateButton(currentView.type); + currentView.removeElement(); + currentView = t.view = null; + } + + + // Destroys the view, including the view object. Then, re-instantiates it and renders it. + // Maintains the same scroll state. + // TODO: maintain any other user-manipulated state. + function reinitView() { + ignoreWindowResize++; + freezeContentHeight(); + + var viewType = currentView.type; + var scrollState = currentView.queryScroll(); + clearView(); + renderView(viewType, scrollState); + + unfreezeContentHeight(); + ignoreWindowResize--; + } + // Resizing @@ -9705,7 +9761,7 @@ function Calendar_constructor(element, overrides) { t.isHeightAuto = function() { - return options.contentHeight === 'auto' || options.height === 'auto'; + return t.options.contentHeight === 'auto' || t.options.height === 'auto'; }; @@ -9733,16 +9789,33 @@ function Calendar_constructor(element, overrides) { function _calcSize() { // assumes elementVisible - if (typeof options.contentHeight === 'number') { // exists and not 'auto' - suggestedViewHeight = options.contentHeight; + var contentHeightInput = t.options.contentHeight; + var heightInput = t.options.height; + + if (typeof contentHeightInput === 'number') { // exists and not 'auto' + suggestedViewHeight = contentHeightInput; + } + else if (typeof contentHeightInput === 'function') { // exists and is a function + suggestedViewHeight = contentHeightInput(); } - else if (typeof options.height === 'number') { // exists and not 'auto' - suggestedViewHeight = options.height - (headerElement ? headerElement.outerHeight(true) : 0); + else if (typeof heightInput === 'number') { // exists and not 'auto' + suggestedViewHeight = heightInput - queryHeaderHeight(); + } + else if (typeof heightInput === 'function') { // exists and is a function + suggestedViewHeight = heightInput() - queryHeaderHeight(); + } + else if (heightInput === 'parent') { // set to height of parent element + suggestedViewHeight = element.parent().height() - queryHeaderHeight(); } else { - suggestedViewHeight = Math.round(content.width() / Math.max(options.aspectRatio, .5)); + suggestedViewHeight = Math.round(content.width() / Math.max(t.options.aspectRatio, .5)); } } + + + function queryHeaderHeight() { + return header.el ? header.el.outerHeight(true) : 0; // includes margin + } function windowResize(ev) { @@ -9785,7 +9858,7 @@ function Calendar_constructor(element, overrides) { function getAndRenderEvents() { - if (!options.lazyFetching || isFetchNeeded(currentView.start, currentView.end)) { + if (!t.options.lazyFetching || isFetchNeeded(currentView.start, currentView.end)) { fetchAndRenderEvents(); } else { @@ -9826,7 +9899,8 @@ function Calendar_constructor(element, overrides) { function updateTodayButton() { var now = t.getNow(); - if (now.isWithin(currentView.intervalStart, currentView.intervalEnd)) { + + if (now >= currentView.intervalStart && now < currentView.intervalEnd) { header.disableButton('today'); } else { @@ -9964,13 +10038,69 @@ function Calendar_constructor(element, overrides) { function option(name, value) { - if (value === undefined) { - return options[name]; + var newOptionHash; + + if (typeof name === 'string') { + if (value === undefined) { // getter + return t.options[name]; + } + else { // setter for individual option + newOptionHash = {}; + newOptionHash[name] = value; + setOptions(newOptionHash); + } + } + else if (typeof name === 'object') { // compound setter with object input + setOptions(name); + } + } + + + function setOptions(newOptionHash) { + var optionCnt = 0; + var optionName; + + for (optionName in newOptionHash) { + t.dynamicOverrides[optionName] = newOptionHash[optionName]; + } + + t.viewSpecCache = {}; // the dynamic override invalidates the options in this cache, so just clear it + t.populateOptionsHash(); // this.options needs to be recomputed after the dynamic override + + // trigger handlers after this.options has been updated + for (optionName in newOptionHash) { + t.triggerOptionHandlers(optionName); // recall bindOption/bindOptions + optionCnt++; } - if (name == 'height' || name == 'contentHeight' || name == 'aspectRatio') { - options[name] = value; - updateSize(true); // true = allow recalculation of height + + // special-case handling of single option change. + // if only one option change, `optionName` will be its name. + if (optionCnt === 1) { + if (optionName === 'height' || optionName === 'contentHeight' || optionName === 'aspectRatio') { + updateSize(true); // true = allow recalculation of height + return; + } + else if (optionName === 'defaultDate') { + return; // can't change date this way. use gotoDate instead + } + else if (optionName === 'businessHours') { + if (currentView) { + currentView.unrenderBusinessHours(); + currentView.renderBusinessHours(); + } + return; + } + else if (optionName === 'timezone') { + t.rezoneArrayEventSources(); + refetchEvents(); + return; + } } + + // catch-all. rerender the header and rebuild/rerender the current view + renderHeader(); + viewsByType = {}; // even non-current views will be affected by this option change. do before rerender + reinitView(); } @@ -9980,20 +10110,84 @@ function Calendar_constructor(element, overrides) { thisObj = thisObj || _element; this.triggerWith(name, thisObj, args); // Emitter's method - if (options[name]) { - return options[name].apply(thisObj, args); + if (t.options[name]) { + return t.options[name].apply(thisObj, args); } } t.initialize(); } +;; +/* +Options binding/triggering system. +*/ +Calendar.mixin({ + + // A map of option names to arrays of handler objects. Initialized to {} in Calendar. + // Format for a handler object: + // { + // func // callback function to be called upon change + // names // option names whose values should be given to func + // } + optionHandlers: null, + + // Calls handlerFunc immediately, and when the given option has changed. + // handlerFunc will be given the option value. + bindOption: function(optionName, handlerFunc) { + this.bindOptions([ optionName ], handlerFunc); + }, + + // Calls handlerFunc immediately, and when any of the given options change. + // handlerFunc will be given each option value as ordered function arguments. + bindOptions: function(optionNames, handlerFunc) { + var handlerObj = { func: handlerFunc, names: optionNames }; + var i; + + for (i = 0; i < optionNames.length; i++) { + this.registerOptionHandlerObj(optionNames[i], handlerObj); + } + + this.triggerOptionHandlerObj(handlerObj); + }, + + // Puts the given handler object into the internal hash + registerOptionHandlerObj: function(optionName, handlerObj) { + (this.optionHandlers[optionName] || (this.optionHandlers[optionName] = [])) + .push(handlerObj); + }, + + // Reports that the given option has changed, and calls all appropriate handlers. + triggerOptionHandlers: function(optionName) { + var handlerObjs = this.optionHandlers[optionName] || []; + var i; + + for (i = 0; i < handlerObjs.length; i++) { + this.triggerOptionHandlerObj(handlerObjs[i]); + } + }, + + // Calls the callback for a specific handler object, passing in the appropriate arguments. + triggerOptionHandlerObj: function(handlerObj) { + var optionNames = handlerObj.names; + var optionValues = []; + var i; + + for (i = 0; i < optionNames.length; i++) { + optionValues.push(this.options[optionNames[i]]); + } + + handlerObj.func.apply(this, optionValues); // maintain the Calendar's `this` context + } + +}); + ;; Calendar.defaults = { titleRangeSeparator: ' \u2013 ', // en dash - monthYearFormat: 'MMMM YYYY', // required for en. other languages rely on datepicker computable option + monthYearFormat: 'MMMM YYYY', // required for en. other locales rely on datepicker computable option defaultTimedEventDuration: '02:00:00', defaultAllDayEventDuration: { days: 1 }, @@ -10050,6 +10244,8 @@ Calendar.defaults = { prevYear: 'left-double-arrow', nextYear: 'right-double-arrow' }, + + allDayText: 'all-day', // jquery-ui theming theme: false, @@ -10078,14 +10274,14 @@ Calendar.defaults = { dayPopoverFormat: 'LL', handleWindowResize: true, - windowResizeDelay: 200, // milliseconds before an updateSize happens + windowResizeDelay: 100, // milliseconds before an updateSize happens longPressDelay: 1000 }; -Calendar.englishDefaults = { // used by lang.js +Calendar.englishDefaults = { // used by locale.js dayPopoverFormat: 'dddd, MMMM D' }; @@ -10112,19 +10308,18 @@ Calendar.rtlDefaults = { // right-to-left defaults ;; -var langOptionHash = FC.langs = {}; // initialize and expose +var localeOptionHash = FC.locales = {}; // initialize and expose -// TODO: document the structure and ordering of a FullCalendar lang file -// TODO: rename everything "lang" to "locale", like what the moment project did +// TODO: document the structure and ordering of a FullCalendar locale file // Initialize jQuery UI datepicker translations while using some of the translations -// Will set this as the default language for datepicker. -FC.datepickerLang = function(langCode, dpLangCode, dpOptions) { +// Will set this as the default locales for datepicker. +FC.datepickerLocale = function(localeCode, dpLocaleCode, dpOptions) { - // get the FullCalendar internal option hash for this language. create if necessary - var fcOptions = langOptionHash[langCode] || (langOptionHash[langCode] = {}); + // get the FullCalendar internal option hash for this locale. create if necessary + var fcOptions = localeOptionHash[localeCode] || (localeOptionHash[localeCode] = {}); // transfer some simple options from datepicker to fc fcOptions.isRTL = dpOptions.isRTL; @@ -10138,15 +10333,15 @@ FC.datepickerLang = function(langCode, dpLangCode, dpOptions) { // is jQuery UI Datepicker is on the page? if ($.datepicker) { - // Register the language data. - // FullCalendar and MomentJS use language codes like "pt-br" but Datepicker - // does it like "pt-BR" or if it doesn't have the language, maybe just "pt". - // Make an alias so the language can be referenced either way. - $.datepicker.regional[dpLangCode] = - $.datepicker.regional[langCode] = // alias + // Register the locale data. + // FullCalendar and MomentJS use locale codes like "pt-br" but Datepicker + // does it like "pt-BR" or if it doesn't have the locale, maybe just "pt". + // Make an alias so the locale can be referenced either way. + $.datepicker.regional[dpLocaleCode] = + $.datepicker.regional[localeCode] = // alias dpOptions; - // Alias 'en' to the default language data. Do this every time. + // Alias 'en' to the default locale data. Do this every time. $.datepicker.regional.en = $.datepicker.regional['']; // Set as Datepicker's global defaults. @@ -10155,35 +10350,35 @@ FC.datepickerLang = function(langCode, dpLangCode, dpOptions) { }; -// Sets FullCalendar-specific translations. Will set the language as the global default. -FC.lang = function(langCode, newFcOptions) { +// Sets FullCalendar-specific translations. Will set the locales as the global default. +FC.locale = function(localeCode, newFcOptions) { var fcOptions; var momOptions; - // get the FullCalendar internal option hash for this language. create if necessary - fcOptions = langOptionHash[langCode] || (langOptionHash[langCode] = {}); + // get the FullCalendar internal option hash for this locale. create if necessary + fcOptions = localeOptionHash[localeCode] || (localeOptionHash[localeCode] = {}); - // provided new options for this language? merge them in + // provided new options for this locales? merge them in if (newFcOptions) { - fcOptions = langOptionHash[langCode] = mergeOptions([ fcOptions, newFcOptions ]); + fcOptions = localeOptionHash[localeCode] = mergeOptions([ fcOptions, newFcOptions ]); } - // compute language options that weren't defined. + // compute locale options that weren't defined. // always do this. newFcOptions can be undefined when initializing from i18n file, // so no way to tell if this is an initialization or a default-setting. - momOptions = getMomentLocaleData(langCode); // will fall back to en + momOptions = getMomentLocaleData(localeCode); // will fall back to en $.each(momComputableOptions, function(name, func) { if (fcOptions[name] == null) { fcOptions[name] = func(momOptions, fcOptions); } }); - // set it as the default language for FullCalendar - Calendar.defaults.lang = langCode; + // set it as the default locale for FullCalendar + Calendar.defaults.locale = localeCode; }; -// NOTE: can't guarantee any of these computations will run because not every language has datepicker +// NOTE: can't guarantee any of these computations will run because not every locale has datepicker // configs, so make sure there are English fallbacks for these in the defaults file. var dpComputableOptions = { @@ -10233,7 +10428,7 @@ var momComputableOptions = { smallTimeFormat: function(momOptions) { return momOptions.longDateFormat('LT') .replace(':mm', '(:mm)') - .replace(/(\Wmm)$/, '($1)') // like above, but for foreign langs + .replace(/(\Wmm)$/, '($1)') // like above, but for foreign locales .replace(/\s*a$/i, 'a'); // convert AM/PM/am/pm to lowercase. remove any spaces beforehand }, @@ -10241,7 +10436,7 @@ var momComputableOptions = { extraSmallTimeFormat: function(momOptions) { return momOptions.longDateFormat('LT') .replace(':mm', '(:mm)') - .replace(/(\Wmm)$/, '($1)') // like above, but for foreign langs + .replace(/(\Wmm)$/, '($1)') // like above, but for foreign locales .replace(/\s*a$/i, 't'); // convert to AM/PM/am/pm to lowercase one-letter. remove any spaces beforehand }, @@ -10249,7 +10444,7 @@ var momComputableOptions = { hourFormat: function(momOptions) { return momOptions.longDateFormat('LT') .replace(':mm', '') - .replace(/(\Wmm)$/, '') // like above, but for foreign langs + .replace(/(\Wmm)$/, '') // like above, but for foreign locales .replace(/\s*a$/i, 'a'); // convert AM/PM/am/pm to lowercase. remove any spaces beforehand }, @@ -10263,7 +10458,7 @@ var momComputableOptions = { // options that should be computed off live calendar options (considers override options) -// TODO: best place for this? related to lang? +// TODO: best place for this? related to locale? // TODO: flipping text based on isRTL is a bad idea because the CSS `direction` might want to handle it var instanceComputableOptions = { @@ -10300,17 +10495,14 @@ function populateInstanceComputableOptions(options) { // Returns moment's internal locale data. If doesn't exist, returns English. -// Works with moment-pre-2.8 -function getMomentLocaleData(langCode) { - var func = moment.localeData || moment.langData; - return func.call(moment, langCode) || - func.call(moment, 'en'); // the newer localData could return null, so fall back to en +function getMomentLocaleData(localeCode) { + return moment.localeData(localeCode) || moment.localeData('en'); } // Initialize English by forcing computation of moment-derived options. // Also, sets it as the default. -FC.lang('en', Calendar.englishDefaults); +FC.locale('en', Calendar.englishDefaults); ;; @@ -10318,7 +10510,7 @@ FC.lang('en', Calendar.englishDefaults); ----------------------------------------------------------------------------------------------------------------------*/ // TODO: rename all header-related things to "toolbar" -function Header(calendar, options) { +function Header(calendar) { var t = this; // exports @@ -10330,38 +10522,50 @@ function Header(calendar, options) { t.disableButton = disableButton; t.enableButton = enableButton; t.getViewsWithButtons = getViewsWithButtons; + t.el = null; // mirrors local `el` // locals - var el = $(); + var el; var viewsWithButtons = []; var tm; + // can be called repeatedly and will rerender function render() { + var options = calendar.options; var sections = options.header; tm = options.theme ? 'ui' : 'fc'; if (sections) { - el = $("
    ") - .append(renderSection('left')) + if (!el) { + el = this.el = $("
    "); + } + else { + el.empty(); + } + el.append(renderSection('left')) .append(renderSection('right')) .append(renderSection('center')) .append('
    '); - - return el; + } + else { + removeElement(); } } function removeElement() { - el.remove(); - el = $(); + if (el) { + el.remove(); + el = t.el = null; + } } function renderSection(position) { var sectionEl = $('
    '); + var options = calendar.options; var buttonStr = options.header[position]; if (buttonStr) { @@ -10387,7 +10591,7 @@ function Header(calendar, options) { isOnlyButtons = false; } else { - if ((customButtonProps = (calendar.options.customButtons || {})[buttonName])) { + if ((customButtonProps = (options.customButtons || {})[buttonName])) { buttonClick = function(ev) { if (customButtonProps.click) { customButtonProps.click.call(button[0], ev); @@ -10523,33 +10727,43 @@ function Header(calendar, options) { function updateTitle(text) { - el.find('h2').text(text); + if (el) { + el.find('h2').text(text); + } } function activateButton(buttonName) { - el.find('.fc-' + buttonName + '-button') - .addClass(tm + '-state-active'); + if (el) { + el.find('.fc-' + buttonName + '-button') + .addClass(tm + '-state-active'); + } } function deactivateButton(buttonName) { - el.find('.fc-' + buttonName + '-button') - .removeClass(tm + '-state-active'); + if (el) { + el.find('.fc-' + buttonName + '-button') + .removeClass(tm + '-state-active'); + } } function disableButton(buttonName) { - el.find('.fc-' + buttonName + '-button') - .prop('disabled', true) - .addClass(tm + '-state-disabled'); + if (el) { + el.find('.fc-' + buttonName + '-button') + .prop('disabled', true) + .addClass(tm + '-state-disabled'); + } } function enableButton(buttonName) { - el.find('.fc-' + buttonName + '-button') - .prop('disabled', false) - .removeClass(tm + '-state-disabled'); + if (el) { + el.find('.fc-' + buttonName + '-button') + .prop('disabled', false) + .removeClass(tm + '-state-disabled'); + } } @@ -10572,7 +10786,7 @@ var ajaxDefaults = { var eventGUID = 1; -function EventManager(options) { // assumed to be a calendar +function EventManager() { // assumed to be a calendar var t = this; @@ -10609,7 +10823,7 @@ function EventManager(options) { // assumed to be a calendar $.each( - (options.events ? [ options.events ] : []).concat(options.eventSources || []), + (t.options.events ? [ t.options.events ] : []).concat(t.options.eventSources || []), function(i, sourceInput) { var source = buildEventSource(sourceInput); if (source) { @@ -10743,7 +10957,7 @@ function EventManager(options) { // assumed to be a calendar source, rangeStart.clone(), rangeEnd.clone(), - options.timezone, + t.options.timezone, callback ); @@ -10766,7 +10980,7 @@ function EventManager(options) { // assumed to be a calendar t, // this, the Calendar object rangeStart.clone(), rangeEnd.clone(), - options.timezone, + t.options.timezone, function(events) { callback(events); t.popLoading(); @@ -10801,9 +11015,9 @@ function EventManager(options) { // assumed to be a calendar // and not affect the passed-in object. var data = $.extend({}, customData || {}); - var startParam = firstDefined(source.startParam, options.startParam); - var endParam = firstDefined(source.endParam, options.endParam); - var timezoneParam = firstDefined(source.timezoneParam, options.timezoneParam); + var startParam = firstDefined(source.startParam, t.options.startParam); + var endParam = firstDefined(source.endParam, t.options.endParam); + var timezoneParam = firstDefined(source.timezoneParam, t.options.timezoneParam); if (startParam) { data[startParam] = rangeStart.format(); @@ -10811,8 +11025,8 @@ function EventManager(options) { // assumed to be a calendar if (endParam) { data[endParam] = rangeEnd.format(); } - if (options.timezone && options.timezone != 'local') { - data[timezoneParam] = options.timezone; + if (t.options.timezone && t.options.timezone != 'local') { + data[timezoneParam] = t.options.timezone; } t.pushLoading(); @@ -11144,7 +11358,7 @@ function EventManager(options) { // assumed to be a calendar reportEvents(cache); } - + function clientEvents(filter) { if ($.isFunction(filter)) { @@ -11158,7 +11372,33 @@ function EventManager(options) { // assumed to be a calendar } return cache; // else, return all } - + + + // Makes sure all array event sources have their internal event objects + // converted over to the Calendar's current timezone. + t.rezoneArrayEventSources = function() { + var i; + var events; + var j; + + for (i = 0; i < sources.length; i++) { + events = sources[i].events; + if ($.isArray(events)) { + + for (j = 0; j < events.length; j++) { + rezoneEventDates(events[j]); + } + } + } + }; + + function rezoneEventDates(event) { + event.start = t.moment(event.start); + if (event.end) { + event.end = t.moment(event.end); + } + backupEventDates(event); + } /* Event Normalization @@ -11174,8 +11414,8 @@ function EventManager(options) { // assumed to be a calendar var start, end; var allDay; - if (options.eventDataTransform) { - input = options.eventDataTransform(input); + if (t.options.eventDataTransform) { + input = t.options.eventDataTransform(input); } if (source && source.eventDataTransform) { input = source.eventDataTransform(input); @@ -11241,7 +11481,7 @@ function EventManager(options) { // assumed to be a calendar if (allDay === undefined) { // still undefined? fallback to default allDay = firstDefined( source ? source.allDayDefault : undefined, - options.allDayDefault + t.options.allDayDefault ); // still undefined? normalizeEventDates will calculate it } @@ -11253,6 +11493,7 @@ function EventManager(options) { // assumed to be a calendar return out; } + t.buildEventFromInput = buildEventFromInput; // Normalizes and assigns the given dates to the given partially-formed event object. @@ -11277,7 +11518,7 @@ function EventManager(options) { // assumed to be a calendar } if (!eventProps.end) { - if (options.forceEventDuration) { + if (t.options.forceEventDuration) { eventProps.end = t.getDefaultEventEnd(eventProps.allDay, eventProps.start); } else { @@ -11376,6 +11617,7 @@ function EventManager(options) { // assumed to be a calendar return events; } + t.expandEvent = expandEvent; @@ -11569,125 +11811,134 @@ function EventManager(options) { // assumed to be a calendar } - /* Business Hours - -----------------------------------------------------------------------------------------*/ - - t.getBusinessHoursEvents = getBusinessHoursEvents; - - - // Returns an array of events as to when the business hours occur in the given view. - // Abuse of our event system :( - function getBusinessHoursEvents(wholeDay) { - var optionVal = options.businessHours; - var defaultVal = { - className: 'fc-nonbusiness', - start: '09:00', - end: '17:00', - dow: [ 1, 2, 3, 4, 5 ], // monday - friday - rendering: 'inverse-background' - }; - var view = t.getView(); - var eventInput; + t.getEventCache = function() { + return cache; + }; - if (optionVal) { // `true` (which means "use the defaults") or an override object - eventInput = $.extend( - {}, // copy to a new object in either case - defaultVal, - typeof optionVal === 'object' ? optionVal : {} // override the defaults - ); - } +} - if (eventInput) { - // if a whole-day series is requested, clear the start/end times - if (wholeDay) { - eventInput.start = null; - eventInput.end = null; - } +// hook for external libs to manipulate event properties upon creation. +// should manipulate the event in-place. +Calendar.prototype.normalizeEvent = function(event) { +}; - return expandEvent( - buildEventFromInput(eventInput), - view.start, - view.end - ); - } - return []; - } +// Does the given span (start, end, and other location information) +// fully contain the other? +Calendar.prototype.spanContainsSpan = function(outerSpan, innerSpan) { + var eventStart = outerSpan.start.clone().stripZone(); + var eventEnd = this.getEventEnd(outerSpan).stripZone(); + return innerSpan.start >= eventStart && innerSpan.end <= eventEnd; +}; - /* Overlapping / Constraining - -----------------------------------------------------------------------------------------*/ - - t.isEventSpanAllowed = isEventSpanAllowed; - t.isExternalSpanAllowed = isExternalSpanAllowed; - t.isSelectionSpanAllowed = isSelectionSpanAllowed; +// Returns a list of events that the given event should be compared against when being considered for a move to +// the specified span. Attached to the Calendar's prototype because EventManager is a mixin for a Calendar. +Calendar.prototype.getPeerEvents = function(span, event) { + var cache = this.getEventCache(); + var peerEvents = []; + var i, otherEvent; - // Determines if the given event can be relocated to the given span (unzoned start/end with other misc data) - function isEventSpanAllowed(span, event) { - var source = event.source || {}; - var constraint = firstDefined( - event.constraint, - source.constraint, - options.eventConstraint - ); - var overlap = firstDefined( - event.overlap, - source.overlap, - options.eventOverlap - ); - return isSpanAllowed(span, constraint, overlap, event); + for (i = 0; i < cache.length; i++) { + otherEvent = cache[i]; + if ( + !event || + event._id !== otherEvent._id // don't compare the event to itself or other related [repeating] events + ) { + peerEvents.push(otherEvent); + } } + return peerEvents; +}; - // Determines if an external event can be relocated to the given span (unzoned start/end with other misc data) - function isExternalSpanAllowed(eventSpan, eventLocation, eventProps) { - var eventInput; - var event; - // note: very similar logic is in View's reportExternalDrop - if (eventProps) { - eventInput = $.extend({}, eventProps, eventLocation); - event = expandEvent(buildEventFromInput(eventInput))[0]; - } +// updates the "backup" properties, which are preserved in order to compute diffs later on. +function backupEventDates(event) { + event._allDay = event.allDay; + event._start = event.start.clone(); + event._end = event.end ? event.end.clone() : null; +} - if (event) { - return isEventSpanAllowed(eventSpan, event); - } - else { // treat it as a selection - return isSelectionSpanAllowed(eventSpan); - } +/* Overlapping / Constraining +-----------------------------------------------------------------------------------------*/ + + +// Determines if the given event can be relocated to the given span (unzoned start/end with other misc data) +Calendar.prototype.isEventSpanAllowed = function(span, event) { + var source = event.source || {}; + + var constraint = firstDefined( + event.constraint, + source.constraint, + this.options.eventConstraint + ); + + var overlap = firstDefined( + event.overlap, + source.overlap, + this.options.eventOverlap + ); + + return this.isSpanAllowed(span, constraint, overlap, event) && + (!this.options.eventAllow || this.options.eventAllow(span, event) !== false); +}; + + +// Determines if an external event can be relocated to the given span (unzoned start/end with other misc data) +Calendar.prototype.isExternalSpanAllowed = function(eventSpan, eventLocation, eventProps) { + var eventInput; + var event; + + // note: very similar logic is in View's reportExternalDrop + if (eventProps) { + eventInput = $.extend({}, eventProps, eventLocation); + event = this.expandEvent( + this.buildEventFromInput(eventInput) + )[0]; } + if (event) { + return this.isEventSpanAllowed(eventSpan, event); + } + else { // treat it as a selection - // Determines the given span (unzoned start/end with other misc data) can be selected. - function isSelectionSpanAllowed(span) { - return isSpanAllowed(span, options.selectConstraint, options.selectOverlap); + return this.isSelectionSpanAllowed(eventSpan); } +}; + +// Determines the given span (unzoned start/end with other misc data) can be selected. +Calendar.prototype.isSelectionSpanAllowed = function(span) { + return this.isSpanAllowed(span, this.options.selectConstraint, this.options.selectOverlap) && + (!this.options.selectAllow || this.options.selectAllow(span) !== false); +}; - // Returns true if the given span (caused by an event drop/resize or a selection) is allowed to exist - // according to the constraint/overlap settings. - // `event` is not required if checking a selection. - function isSpanAllowed(span, constraint, overlap, event) { - var constraintEvents; - var anyContainment; - var peerEvents; - var i, peerEvent; - var peerOverlap; - // the range must be fully contained by at least one of produced constraint events - if (constraint != null) { +// Returns true if the given span (caused by an event drop/resize or a selection) is allowed to exist +// according to the constraint/overlap settings. +// `event` is not required if checking a selection. +Calendar.prototype.isSpanAllowed = function(span, constraint, overlap, event) { + var constraintEvents; + var anyContainment; + var peerEvents; + var i, peerEvent; + var peerOverlap; - // not treated as an event! intermediate data structure - // TODO: use ranges in the future - constraintEvents = constraintToEvents(constraint); + // the range must be fully contained by at least one of produced constraint events + if (constraint != null) { + + // not treated as an event! intermediate data structure + // TODO: use ranges in the future + constraintEvents = this.constraintToEvents(constraint); + if (constraintEvents) { // not invalid anyContainment = false; for (i = 0; i < constraintEvents.length; i++) { - if (eventContainsRange(constraintEvents[i], span)) { + if (this.spanContainsSpan(constraintEvents[i], span)) { anyContainment = true; break; } @@ -11697,126 +11948,150 @@ function EventManager(options) { // assumed to be a calendar return false; } } + } - peerEvents = t.getPeerEvents(span, event); + peerEvents = this.getPeerEvents(span, event); - for (i = 0; i < peerEvents.length; i++) { - peerEvent = peerEvents[i]; + for (i = 0; i < peerEvents.length; i++) { + peerEvent = peerEvents[i]; - // there needs to be an actual intersection before disallowing anything - if (eventIntersectsRange(peerEvent, span)) { + // there needs to be an actual intersection before disallowing anything + if (this.eventIntersectsRange(peerEvent, span)) { + + // evaluate overlap for the given range and short-circuit if necessary + if (overlap === false) { + return false; + } + // if the event's overlap is a test function, pass the peer event in question as the first param + else if (typeof overlap === 'function' && !overlap(peerEvent, event)) { + return false; + } - // evaluate overlap for the given range and short-circuit if necessary - if (overlap === false) { + // if we are computing if the given range is allowable for an event, consider the other event's + // EventObject-specific or Source-specific `overlap` property + if (event) { + peerOverlap = firstDefined( + peerEvent.overlap, + (peerEvent.source || {}).overlap + // we already considered the global `eventOverlap` + ); + if (peerOverlap === false) { return false; } - // if the event's overlap is a test function, pass the peer event in question as the first param - else if (typeof overlap === 'function' && !overlap(peerEvent, event)) { + // if the peer event's overlap is a test function, pass the subject event as the first param + if (typeof peerOverlap === 'function' && !peerOverlap(event, peerEvent)) { return false; } - - // if we are computing if the given range is allowable for an event, consider the other event's - // EventObject-specific or Source-specific `overlap` property - if (event) { - peerOverlap = firstDefined( - peerEvent.overlap, - (peerEvent.source || {}).overlap - // we already considered the global `eventOverlap` - ); - if (peerOverlap === false) { - return false; - } - // if the peer event's overlap is a test function, pass the subject event as the first param - if (typeof peerOverlap === 'function' && !peerOverlap(event, peerEvent)) { - return false; - } - } } } - - return true; } + return true; +}; - // Given an event input from the API, produces an array of event objects. Possible event inputs: - // 'businessHours' - // An event ID (number or string) - // An object with specific start/end dates or a recurring event (like what businessHours accepts) - function constraintToEvents(constraintInput) { - if (constraintInput === 'businessHours') { - return getBusinessHoursEvents(); - } +// Given an event input from the API, produces an array of event objects. Possible event inputs: +// 'businessHours' +// An event ID (number or string) +// An object with specific start/end dates or a recurring event (like what businessHours accepts) +Calendar.prototype.constraintToEvents = function(constraintInput) { - if (typeof constraintInput === 'object') { - return expandEvent(buildEventFromInput(constraintInput)); - } + if (constraintInput === 'businessHours') { + return this.getCurrentBusinessHourEvents(); + } - return clientEvents(constraintInput); // probably an ID + if (typeof constraintInput === 'object') { + if (constraintInput.start != null) { // needs to be event-like input + return this.expandEvent(this.buildEventFromInput(constraintInput)); + } + else { + return null; // invalid + } } + return this.clientEvents(constraintInput); // probably an ID +}; - // Does the event's date range fully contain the given range? - // start/end already assumed to have stripped zones :( - function eventContainsRange(event, range) { - var eventStart = event.start.clone().stripZone(); - var eventEnd = t.getEventEnd(event).stripZone(); - return range.start >= eventStart && range.end <= eventEnd; - } +// Does the event's date range intersect with the given range? +// start/end already assumed to have stripped zones :( +Calendar.prototype.eventIntersectsRange = function(event, range) { + var eventStart = event.start.clone().stripZone(); + var eventEnd = this.getEventEnd(event).stripZone(); + return range.start < eventEnd && range.end > eventStart; +}; - // Does the event's date range intersect with the given range? - // start/end already assumed to have stripped zones :( - function eventIntersectsRange(event, range) { - var eventStart = event.start.clone().stripZone(); - var eventEnd = t.getEventEnd(event).stripZone(); - return range.start < eventEnd && range.end > eventStart; - } +/* Business Hours +-----------------------------------------------------------------------------------------*/ +var BUSINESS_HOUR_EVENT_DEFAULTS = { + id: '_fcBusinessHours', // will relate events from different calls to expandEvent + start: '09:00', + end: '17:00', + dow: [ 1, 2, 3, 4, 5 ], // monday - friday + rendering: 'inverse-background' + // classNames are defined in businessHoursSegClasses +}; - t.getEventCache = function() { - return cache; - }; +// Return events objects for business hours within the current view. +// Abuse of our event system :( +Calendar.prototype.getCurrentBusinessHourEvents = function(wholeDay) { + return this.computeBusinessHourEvents(wholeDay, this.options.businessHours); +}; -} +// Given a raw input value from options, return events objects for business hours within the current view. +Calendar.prototype.computeBusinessHourEvents = function(wholeDay, input) { + if (input === true) { + return this.expandBusinessHourEvents(wholeDay, [ {} ]); + } + else if ($.isPlainObject(input)) { + return this.expandBusinessHourEvents(wholeDay, [ input ]); + } + else if ($.isArray(input)) { + return this.expandBusinessHourEvents(wholeDay, input, true); + } + else { + return []; + } +}; +// inputs expected to be an array of objects. +// if ignoreNoDow is true, will ignore entries that don't specify a day-of-week (dow) key. +Calendar.prototype.expandBusinessHourEvents = function(wholeDay, inputs, ignoreNoDow) { + var view = this.getView(); + var events = []; + var i, input; -// hook for external libs to manipulate event properties upon creation. -// should manipulate the event in-place. -Calendar.prototype.normalizeEvent = function(event) { -}; + for (i = 0; i < inputs.length; i++) { + input = inputs[i]; + if (ignoreNoDow && !input.dow) { + continue; + } -// Returns a list of events that the given event should be compared against when being considered for a move to -// the specified span. Attached to the Calendar's prototype because EventManager is a mixin for a Calendar. -Calendar.prototype.getPeerEvents = function(span, event) { - var cache = this.getEventCache(); - var peerEvents = []; - var i, otherEvent; + // give defaults. will make a copy + input = $.extend({}, BUSINESS_HOUR_EVENT_DEFAULTS, input); - for (i = 0; i < cache.length; i++) { - otherEvent = cache[i]; - if ( - !event || - event._id !== otherEvent._id // don't compare the event to itself or other related [repeating] events - ) { - peerEvents.push(otherEvent); + // if a whole-day series is requested, clear the start/end times + if (wholeDay) { + input.start = null; + input.end = null; } + + events.push.apply(events, // append + this.expandEvent( + this.buildEventFromInput(input), + view.start, + view.end + ) + ); } - return peerEvents; + return events; }; - -// updates the "backup" properties, which are preserved in order to compute diffs later on. -function backupEventDates(event) { - event._allDay = event.allDay; - event._start = event.start.clone(); - event._end = event.end ? event.end.clone() : null; -} - ;; /* An abstract class for the "basic" views, as well as month view. Renders one or more rows of day cells. @@ -11832,7 +12107,8 @@ var BasicView = FC.BasicView = View.extend({ dayGrid: null, // the main subcomponent that does most of the heavy lifting dayNumbersVisible: false, // display day numbers on each day cell? - weekNumbersVisible: false, // display week numbers along the side? + colWeekNumbersVisible: false, // display week numbers along the side? + cellWeekNumbersVisible: false, // display week numbers in day cell? weekNumberWidth: null, // width of all the week-number cells running down the side @@ -11893,8 +12169,18 @@ var BasicView = FC.BasicView = View.extend({ renderDates: function() { this.dayNumbersVisible = this.dayGrid.rowCnt > 1; // TODO: make grid responsible - this.weekNumbersVisible = this.opt('weekNumbers'); - this.dayGrid.numbersVisible = this.dayNumbersVisible || this.weekNumbersVisible; + if (this.opt('weekNumbers')) { + if (this.opt('weekNumbersWithinDays')) { + this.cellWeekNumbersVisible = true; + this.colWeekNumbersVisible = false; + } + else { + this.cellWeekNumbersVisible = false; + this.colWeekNumbersVisible = true; + }; + } + this.dayGrid.numbersVisible = this.dayNumbersVisible || + this.cellWeekNumbersVisible || this.colWeekNumbersVisible; this.el.addClass('fc-basic-view').html(this.renderSkeletonHtml()); this.renderHead(); @@ -11932,6 +12218,11 @@ var BasicView = FC.BasicView = View.extend({ }, + unrenderBusinessHours: function() { + this.dayGrid.unrenderBusinessHours(); + }, + + // Builds the HTML skeleton for the view. // The day-grid component will render inside of a container defined by this HTML. renderSkeletonHtml: function() { @@ -11973,7 +12264,7 @@ var BasicView = FC.BasicView = View.extend({ // Refreshes the horizontal dimensions of the view updateWidth: function() { - if (this.weekNumbersVisible) { + if (this.colWeekNumbersVisible) { // Make sure all week number cells running down the side have the same width. // Record the width for cells created later. this.weekNumberWidth = matchCellWidths( @@ -12114,9 +12405,8 @@ var BasicView = FC.BasicView = View.extend({ unrenderEvents: function() { this.dayGrid.unrenderEvents(); - // we DON'T need to call updateHeight() because: - // A) a renderEvents() call always happens after this, which will eventually call updateHeight() - // B) in IE8, this causes a flash whenever events are rerendered + // we DON'T need to call updateHeight() because + // a renderEvents() call always happens after this, which will eventually call updateHeight() }, @@ -12161,7 +12451,7 @@ var basicDayGridMethods = { renderHeadIntroHtml: function() { var view = this.view; - if (view.weekNumbersVisible) { + if (view.colWeekNumbersVisible) { return '' + '
    '; } @@ -12195,7 +12487,7 @@ var basicDayGridMethods = { renderBgIntroHtml: function() { var view = this.view; - if (view.weekNumbersVisible) { + if (view.colWeekNumbersVisible) { return ''; } @@ -12209,7 +12501,7 @@ var basicDayGridMethods = { renderIntroHtml: function() { var view = this.view; - if (view.weekNumbersVisible) { + if (view.colWeekNumbersVisible) { return ''; } @@ -12243,8 +12535,6 @@ var MonthView = FC.MonthView = BasicView.extend({ // Overrides the default BasicView behavior to have special multi-week auto-height logic setGridHeight: function(height, isAuto) { - isAuto = isAuto || this.opt('weekMode') === 'variable'; // LEGACY: weekMode is deprecated - // if auto, make the height of each row the height that it would be if there were 6 weeks if (isAuto) { height *= this.rowCnt / 6; @@ -12255,11 +12545,6 @@ var MonthView = FC.MonthView = BasicView.extend({ isFixedWeeks: function() { - var weekMode = this.opt('weekMode'); // LEGACY: weekMode is deprecated - if (weekMode) { - return weekMode === 'fixed'; // if any other type of weekMode, assume NOT fixed - } - return this.opt('fixedWeekCount'); } @@ -12689,9 +12974,8 @@ var AgendaView = FC.AgendaView = View.extend({ this.dayGrid.unrenderEvents(); } - // we DON'T need to call updateHeight() because: - // A) a renderEvents() call always happens after this, which will eventually call updateHeight() - // B) in IE8, this causes a flash whenever events are rerendered + // we DON'T need to call updateHeight() because + // a renderEvents() call always happens after this, which will eventually call updateHeight() }, @@ -12759,9 +13043,10 @@ var agendaTimeGridMethods = { return '' + ''; } else { @@ -12800,7 +13085,7 @@ var agendaDayGridMethods = { return '' + ''; }, @@ -12834,7 +13119,6 @@ fcViews.agenda = { 'class': AgendaView, defaults: { allDaySlot: true, - allDayText: 'all-day', slotDuration: '00:30:00', minTime: '00:00:00', maxTime: '24:00:00', @@ -12853,5 +13137,293 @@ fcViews.agendaWeek = { }; ;; -return FC; // export for Node/CommonJS +/* +Responsible for the scroller, and forwarding event-related actions into the "grid" +*/ +var ListView = View.extend({ + + grid: null, + scroller: null, + + initialize: function() { + this.grid = new ListViewGrid(this); + this.scroller = new Scroller({ + overflowX: 'hidden', + overflowY: 'auto' + }); + }, + + setRange: function(range) { + View.prototype.setRange.call(this, range); // super + + this.grid.setRange(range); // needs to process range-related options + }, + + renderSkeleton: function() { + this.el.addClass( + 'fc-list-view ' + + this.widgetContentClass + ); + + this.scroller.render(); + this.scroller.el.appendTo(this.el); + + this.grid.setElement(this.scroller.scrollEl); + }, + + unrenderSkeleton: function() { + this.scroller.destroy(); // will remove the Grid too + }, + + setHeight: function(totalHeight, isAuto) { + this.scroller.setHeight(this.computeScrollerHeight(totalHeight)); + }, + + computeScrollerHeight: function(totalHeight) { + return totalHeight - + subtractInnerElHeight(this.el, this.scroller.el); // everything that's NOT the scroller + }, + + renderEvents: function(events) { + this.grid.renderEvents(events); + }, + + unrenderEvents: function() { + this.grid.unrenderEvents(); + }, + + isEventResizable: function(event) { + return false; + }, + + isEventDraggable: function(event) { + return false; + } + +}); + +/* +Responsible for event rendering and user-interaction. +Its "el" is the inner-content of the above view's scroller. +*/ +var ListViewGrid = Grid.extend({ + + segSelector: '.fc-list-item', // which elements accept event actions + hasDayInteractions: false, // no day selection or day clicking + + // slices by day + spanToSegs: function(span) { + var view = this.view; + var dayStart = view.start.clone(); + var dayEnd; + var seg; + var segs = []; + + while (dayStart < view.end) { + dayEnd = dayStart.clone().add(1, 'day'); + seg = intersectRanges(span, { + start: dayStart, + end: dayEnd + }); + if (seg) { + segs.push(seg); + } + dayStart = dayEnd; + } + + return segs; + }, + + // like "4:00am" + computeEventTimeFormat: function() { + return this.view.opt('mediumTimeFormat'); + }, + + // for events with a url, the whole should be clickable, + // but it's impossible to wrap with an tag. simulate this. + handleSegClick: function(seg, ev) { + var url; + + Grid.prototype.handleSegClick.apply(this, arguments); // super. might prevent the default action + + // not clicking on or within an with an href + if (!$(ev.target).closest('a[href]').length) { + url = seg.event.url; + if (url && !ev.isDefaultPrevented()) { // jsEvent not cancelled in handler + window.location.href = url; // simulate link click + } + } + }, + + // returns list of foreground segs that were actually rendered + renderFgSegs: function(segs) { + segs = this.renderFgSegEls(segs); // might filter away hidden events + + if (!segs.length) { + this.renderEmptyMessage(); + return segs; + } + else { + return this.renderSegList(segs); + } + }, + + renderEmptyMessage: function() { + this.el.html( + '
    ' + // TODO: try less wraps + '
    ' + + '
    ' + + htmlEscape(this.view.opt('noEventsMessage')) + + '
    ' + + '
    ' + + '
    ' + ); + }, + + // render the event segments in the view. returns the mutated array. + renderSegList: function(segs) { + var tableEl = $('
    ' . t('Hub URL') . '' . t('Access Type') . '' . t('Registration Policy') . '' . t('Stats') . '' . t('Software') . '' . t('Ratings') . '
    ' . $urltext . '' . $location . '' . $jj['access'] . '' . $jj['register'] . '' . '' . ucwords($jj['project']) . ' ' . t('View') . '
    ' . $urltext . '' . $location . '' . $jj['access'] . '' . $jj['register'] . '' . '' . ucwords($jj['project']) . ' ' . t('View') . '
    ' . t('Rate') . '
    ' . t('Rate') . '
    ' . $urltext . '' . $location . '' . $jj['access'] . '' . $jj['register'] . '' . '' . ucwords($jj['project']) . '
    ' . $urltext . '' . $location . '' . $jj['access'] . '' . $jj['register'] . '' . '' . ucwords($jj['project']) . (($jj['version']) ? ' ' . $jj['version'] : '') . ' ' . t('View') . '
    ' . t('Rate') . ' 1 ? @@ -5502,8 +5350,12 @@ var DayTableMixin = FC.DayTableMixin = { (otherAttrs ? ' ' + otherAttrs : '') + - '>' + - htmlEscape(date.format(this.colHeadFormat)) + + '>' + + // don't make a link if the heading could represent multiple days, or if there's only one day (forceOff) + view.buildGotoAnchorHtml( + { date: date, forceOff: this.rowCnt > 1 || this.colCnt === 1 }, + htmlEscape(date.format(this.colHeadFormat)) // inner HTML + ) + 's of the "number" row in the DayGrid's content skeleton. // The number row will only exist if either day numbers or week numbers are turned on. renderNumberCellHtml: function(date) { + var html = ''; var classes; + var weekCalcFirstDoW; - if (!this.view.dayNumbersVisible) { // if there are week numbers but not day numbers + if (!this.view.dayNumbersVisible && !this.view.cellWeekNumbersVisible) { + // no numbers in day cell (week number must be along the side) return ''; // will create an empty space above events :( } classes = this.getDayClasses(date); - classes.unshift('fc-day-number'); - - return '' + - '' + - date.date() + - ''; + + if (this.view.cellWeekNumbersVisible && (date.day() == weekCalcFirstDoW)) { + html += this.view.buildGotoAnchorHtml( + { date: date, type: 'week' }, + { 'class': 'fc-week-number' }, + date.format('w') // inner HTML + ); + } + + if (this.view.dayNumbersVisible) { + html += this.view.buildGotoAnchorHtml( + date, + { 'class': 'fc-day-number' }, + date.date() // inner HTML + ); + } + + html += '' + '' + // needed for matchCellWidths @@ -12177,13 +12467,15 @@ var basicDayGridMethods = { // Generates the HTML that will go before content-skeleton cells that display the day/week numbers renderNumberIntroHtml: function(row) { var view = this.view; + var weekStart = this.getCellDate(row, 0); - if (view.weekNumbersVisible) { + if (view.colWeekNumbersVisible) { return '' + '' + - '' + // needed for matchCellWidths - this.getCellDate(row, 0).format('w') + - '' + + view.buildGotoAnchorHtml( // aside from link, important for matchCellWidths + { date: weekStart, type: 'week', forceOff: this.colCnt === 1 }, + weekStart.format('w') // inner HTML + ) + '' + - '' + // needed for matchCellWidths - htmlEscape(weekText) + - '' + + view.buildGotoAnchorHtml( // aside from link, important for matchCellWidths + { date: this.start, type: 'week', forceOff: this.colCnt > 1 }, + htmlEscape(weekText) // inner HTML + ) + '' + '' + // needed for matchCellWidths - (view.opt('allDayHtml') || htmlEscape(view.opt('allDayText'))) + + view.getAllDayHtml() + '' + '
    '); + var tbodyEl = tableEl.find('tbody'); + var i, seg; + var dayDate; + + this.sortEventSegs(segs); + + for (i = 0; i < segs.length; i++) { + seg = segs[i]; + + // append a day header + if (!dayDate || !seg.start.isSame(dayDate, 'day')) { + dayDate = seg.start.clone().stripTime(); + tbodyEl.append(this.dayHeaderHtml(dayDate)); + } + + tbodyEl.append(seg.el); // append event row + } + + this.el.empty().append(tableEl); + + return segs; // return the sorted list + }, + + // generates the HTML for the day headers that live amongst the event rows + dayHeaderHtml: function(dayDate) { + var view = this.view; + var mainFormat = view.opt('listDayFormat'); + var altFormat = view.opt('listDayAltFormat'); + + return '
    ' + + (mainFormat ? + view.buildGotoAnchorHtml( + dayDate, + { 'class': 'fc-list-heading-main' }, + htmlEscape(dayDate.format(mainFormat)) // inner HTML + ) : + '') + + (altFormat ? + view.buildGotoAnchorHtml( + dayDate, + { 'class': 'fc-list-heading-alt' }, + htmlEscape(dayDate.format(altFormat)) // inner HTML + ) : + '') + + '
    ' + + timeHtml + + '' + + '' + + '' + + '' + + htmlEscape(seg.event.title) + + '' + + '
    '+this.renderHeadTrHtml()+"
    "},renderHeadIntroHtml:function(){return this.renderIntroHtml()},renderHeadTrHtml:function(){return""+(this.isRTL?"":this.renderHeadIntroHtml())+this.renderHeadDateCellsHtml()+(this.isRTL?this.renderHeadIntroHtml():"")+""},renderHeadDateCellsHtml:function(){var a,b,c=[];for(a=0;a1?' colspan="'+b+'"':"")+(c?" "+c:"")+">"+ca(a.format(this.colHeadFormat))+""},renderBgTrHtml:function(a){return""+(this.isRTL?"":this.renderBgIntroHtml(a))+this.renderBgCellsHtml(a)+(this.isRTL?this.renderBgIntroHtml(a):"")+""},renderBgIntroHtml:function(a){return this.renderIntroHtml()},renderBgCellsHtml:function(a){var b,c,d=[];for(b=0;b"},renderIntroHtml:function(){},bookendCells:function(a){var b=this.renderIntroHtml();b&&(this.isRTL?a.append(b):a.prepend(b))}},vb=Wa.DayGrid=tb.extend(ub,{numbersVisible:!1,bottomCoordPadding:0,rowEls:null,cellEls:null,helperEls:null,rowCoordCache:null,colCoordCache:null,renderDates:function(a){var b,c,d=this.view,e=this.rowCnt,f=this.colCnt,g="";for(b=0;e>b;b++)g+=this.renderDayRowHtml(b,a);for(this.el.html(g),this.rowEls=this.el.find(".fc-row"),this.cellEls=this.el.find(".fc-day"),this.rowCoordCache=new pb({els:this.rowEls,isVertical:!0}),this.colCoordCache=new pb({els:this.cellEls.slice(0,this.colCnt),isHorizontal:!0}),b=0;e>b;b++)for(c=0;f>c;c++)d.trigger("dayRender",null,this.getCellDate(b,c),this.getCellEl(b,c))},unrenderDates:function(){this.removeSegPopover()},renderBusinessHours:function(){var a=this.view.calendar.getBusinessHoursEvents(!0),b=this.eventsToSegs(a);this.renderFill("businessHours",b,"bgevent")},renderDayRowHtml:function(a,b){var c=this.view,d=["fc-row","fc-week",c.widgetContentClass];return b&&d.push("fc-rigid"),'
    '+this.renderBgTrHtml(a)+'
    '+(this.numbersVisible?""+this.renderNumberTrHtml(a)+"":"")+"
    "},renderNumberTrHtml:function(a){return""+(this.isRTL?"":this.renderNumberIntroHtml(a))+this.renderNumberCellsHtml(a)+(this.isRTL?this.renderNumberIntroHtml(a):"")+""},renderNumberIntroHtml:function(a){return this.renderIntroHtml()},renderNumberCellsHtml:function(a){var b,c,d=[];for(b=0;b'+a.date()+""):""},computeEventTimeFormat:function(){return this.view.opt("extraSmallTimeFormat")},computeDisplayEventEnd:function(){return 1==this.colCnt},rangeUpdated:function(){this.updateDayTable()},spanToSegs:function(a){var b,c,d=this.sliceRangeByRow(a);for(b=0;b');g=c&&c.row===b?c.el.position().top:h.find(".fc-content-skeleton tbody").position().top,i.css("top",g).find("table").append(d[b].tbodyEl),h.append(i),e.push(i[0])}),this.helperEls=a(e)},unrenderHelper:function(){this.helperEls&&(this.helperEls.remove(),this.helperEls=null)},fillSegTag:"td",renderFill:function(b,c,d){var e,f,g,h=[];for(c=this.renderFillSegEls(b,c),e=0;e
    '),f=e.find("tr"),h>0&&f.append(''),f.append(c.el.attr("colspan",i-h)),g>i&&f.append(''),this.bookendCells(f),e}});vb.mixin({rowStructs:null,unrenderEvents:function(){this.removeSegPopover(),tb.prototype.unrenderEvents.apply(this,arguments)},getEventSegs:function(){return tb.prototype.getEventSegs.call(this).concat(this.popoverSegs||[])},renderBgSegs:function(b){var c=a.grep(b,function(a){return a.event.allDay});return tb.prototype.renderBgSegs.call(this,c)},renderFgSegs:function(b){var c;return b=this.renderFgSegEls(b),c=this.rowStructs=this.renderSegRows(b),this.rowEls.each(function(b,d){a(d).find(".fc-content-skeleton > table").append(c[b].tbodyEl)}),b},unrenderFgSegs:function(){for(var a,b=this.rowStructs||[];a=b.pop();)a.tbodyEl.remove();this.rowStructs=null},renderSegRows:function(a){var b,c,d=[];for(b=this.groupSegRows(a),c=0;c'+ca(c)+"")),d=''+(ca(f.title||"")||" ")+"",'
    '+(this.isRTL?d+" "+l:l+" "+d)+"
    "+(h?'
    ':"")+(i?'
    ':"")+""},renderSegRow:function(b,c){function d(b){for(;b>g;)k=(r[e-1]||[])[g],k?k.attr("rowspan",parseInt(k.attr("rowspan")||1,10)+1):(k=a(""),h.append(k)),q[e][g]=k,r[e][g]=k,g++}var e,f,g,h,i,j,k,l=this.colCnt,m=this.buildSegLevels(c),n=Math.max(1,m.length),o=a(""),p=[],q=[],r=[];for(e=0;n>e;e++){if(f=m[e],g=0,h=a(""),p.push([]),q.push([]),r.push([]),f)for(i=0;i').append(j.el),j.leftCol!=j.rightCol?k.attr("colspan",j.rightCol-j.leftCol+1):r[e][g]=k;g<=j.rightCol;)q[e][g]=k,p[e][g]=j,g++;h.append(k)}d(l),this.bookendCells(h),o.append(h)}return{row:b,tbodyEl:o,cellMatrix:q,segMatrix:p,segLevels:m,segs:c}},buildSegLevels:function(a){var b,c,d,e=[];for(this.sortEventSegs(a),b=0;b td > :first-child").each(c),e.position().top+f>h)return d;return!1},limitRow:function(b,c){function d(d){for(;d>w;)j=t.getCellSegs(b,w,c),j.length&&(m=f[c-1][w],s=t.renderMoreLink(b,w,j),r=a("
    ").append(s),m.append(r),v.push(r[0])),w++}var e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t=this,u=this.rowStructs[b],v=[],w=0;if(c&&c').attr("rowspan",n),j=l[p],s=this.renderMoreLink(b,i.leftCol+p,[i].concat(j)),r=a("
    ").append(s),q.append(r),o.push(q[0]),v.push(q[0]);m.addClass("fc-limited").after(a(o)),g.push(m[0])}}d(this.colCnt),u.moreEls=a(v),u.limitedEls=a(g)}},unlimitRow:function(a){var b=this.rowStructs[a];b.moreEls&&(b.moreEls.remove(),b.moreEls=null),b.limitedEls&&(b.limitedEls.removeClass("fc-limited"),b.limitedEls=null)},renderMoreLink:function(b,c,d){var e=this,f=this.view;return a('').text(this.getMoreLinkText(d.length)).on("click",function(g){var h=f.opt("eventLimitClick"),i=e.getCellDate(b,c),j=a(this),k=e.getCellEl(b,c),l=e.getCellSegs(b,c),m=e.resliceDaySegs(l,i),n=e.resliceDaySegs(d,i);"function"==typeof h&&(h=f.trigger("eventLimitClick",null,{date:i,dayEl:k,moreEl:j,segs:m,hiddenSegs:n},g)),"popover"===h?e.showSegPopover(b,c,j,m):"string"==typeof h&&f.calendar.zoomTo(i,h)})},showSegPopover:function(a,b,c,d){var e,f,g=this,h=this.view,i=c.parent();e=1==this.rowCnt?h.el:this.rowEls.eq(a),f={className:"fc-more-popover",content:this.renderSegPopoverContent(a,b,d),parentEl:this.el,top:e.offset().top,autoHide:!0,viewportConstrain:h.opt("popoverViewportConstrain"),hide:function(){g.segPopover.removeElement(),g.segPopover=null,g.popoverSegs=null}},this.isRTL?f.right=i.offset().left+i.outerWidth()+1:f.left=i.offset().left-1,this.segPopover=new ob(f),this.segPopover.show()},renderSegPopoverContent:function(b,c,d){var e,f=this.view,g=f.opt("theme"),h=this.getCellDate(b,c).format(f.opt("dayPopoverFormat")),i=a('
    '+ca(h)+'
    '),j=i.find(".fc-event-container");for(d=this.renderFgSegEls(d,!0),this.popoverSegs=d,e=0;e'+this.renderBgTrHtml(0)+'
    '+this.renderSlatRowHtml()+"
    "},renderSlatRowHtml:function(){for(var a,c,d,e=this.view,f=this.isRTL,g="",h=b.duration(+this.minTime);h"+(c?""+ca(a.format(this.labelFormat))+"":"")+"",g+='"+(f?"":d)+''+(f?d:"")+"",h.add(this.slotDuration);return g},processOptions:function(){var c,d=this.view,e=d.opt("slotDuration"),f=d.opt("snapDuration");e=b.duration(e),f=f?b.duration(f):e,this.slotDuration=e,this.snapDuration=f,this.snapsPerSlot=e/f,this.minResizeDuration=f,this.minTime=b.duration(d.opt("minTime")),this.maxTime=b.duration(d.opt("maxTime")),c=d.opt("slotLabelFormat"),a.isArray(c)&&(c=c[c.length-1]),this.labelFormat=c||d.opt("axisFormat")||d.opt("smallTimeFormat"),c=d.opt("slotLabelInterval"),this.labelInterval=c?b.duration(c):this.computeLabelInterval(e)},computeLabelInterval:function(a){var c,d,e;for(c=Nb.length-1;c>=0;c--)if(d=b.duration(Nb[c]),e=R(d,a),ha(e)&&e>1)return d;return b.duration(a)},computeEventTimeFormat:function(){return this.view.opt("noMeridiemTimeFormat")},computeDisplayEventEnd:function(){return!0},prepareHits:function(){this.colCoordCache.build(),this.slatCoordCache.build()},releaseHits:function(){this.colCoordCache.clear()},queryHit:function(a,b){var c=this.snapsPerSlot,d=this.colCoordCache,e=this.slatCoordCache,f=d.getHorizontalIndex(a),g=e.getVerticalIndex(b);if(null!=f&&null!=g){var h=e.getTopOffset(g),i=e.getHeight(g),j=(b-h)/i,k=Math.floor(j*c),l=g*c+k,m=h+k/c*i,n=h+(k+1)/c*i;return{col:f,snap:l,component:this,left:d.getLeftOffset(f),right:d.getRightOffset(f),top:m,bottom:n}}},getHitSpan:function(a){var b,c=this.getCellDate(0,a.col),d=this.computeSnapTime(a.snap);return c.time(d),b=c.clone().add(this.snapDuration),{start:c,end:b}},getHitEl:function(a){return this.colEls.eq(a.col)},rangeUpdated:function(){this.updateDayTable()},computeSnapTime:function(a){return b.duration(this.minTime+this.snapDuration*a)},spanToSegs:function(a){var b,c=this.sliceRangeByTimes(a);for(b=0;b
    ').css("top",e).appendTo(this.colContainerEls.eq(d[c].col))[0]);d.length>0&&f.push(a('
    ').css("top",e).appendTo(this.el.find(".fc-content-skeleton"))[0]),this.nowIndicatorEls=a(f)},unrenderNowIndicator:function(){this.nowIndicatorEls&&(this.nowIndicatorEls.remove(),this.nowIndicatorEls=null)},renderSelection:function(a){this.view.opt("selectHelper")?this.renderEventLocationHelper(a):this.renderHighlight(a)},unrenderSelection:function(){this.unrenderHelper(),this.unrenderHighlight()},renderHighlight:function(a){this.renderHighlightSegs(this.spanToSegs(a))},unrenderHighlight:function(){this.unrenderHighlightSegs()}});wb.mixin({colContainerEls:null,fgContainerEls:null,bgContainerEls:null,helperContainerEls:null,highlightContainerEls:null,businessContainerEls:null,fgSegs:null,bgSegs:null,helperSegs:null,highlightSegs:null,businessSegs:null,renderContentSkeleton:function(){var b,c,d="";for(b=0;b
    ';c=a('
    '+d+"
    "),this.colContainerEls=c.find(".fc-content-col"),this.helperContainerEls=c.find(".fc-helper-container"),this.fgContainerEls=c.find(".fc-event-container:not(.fc-helper-container)"),this.bgContainerEls=c.find(".fc-bgevent-container"),this.highlightContainerEls=c.find(".fc-highlight-container"),this.businessContainerEls=c.find(".fc-business-container"),this.bookendCells(c.find("tr")),this.el.append(c)},renderFgSegs:function(a){return a=this.renderFgSegsIntoContainers(a,this.fgContainerEls),this.fgSegs=a,a},unrenderFgSegs:function(){this.unrenderNamedSegs("fgSegs")},renderHelperSegs:function(b,c){var d,e,f,g=[];for(b=this.renderFgSegsIntoContainers(b,this.helperContainerEls),d=0;d
    '+(c?'
    '+ca(c)+"
    ":"")+(g.title?'
    '+ca(g.title)+"
    ":"")+'
    '+(j?'
    ':"")+""},updateSegVerticals:function(a){this.computeSegVerticals(a),this.assignSegVerticals(a)},computeSegVerticals:function(a){var b,c;for(b=0;b1?"ll":"LL"},formatRange:function(a,b,c){var d=a.end;return d.hasTime()||(d=d.clone().subtract(1)),ta(a.start,d,b,c,this.opt("isRTL"))},setElement:function(a){this.el=a,this.bindGlobalHandlers()},removeElement:function(){this.clear(),this.isSkeletonRendered&&(this.unrenderSkeleton(),this.isSkeletonRendered=!1),this.unbindGlobalHandlers(),this.el.remove()},display:function(a){var b=this,c=null;return this.displaying&&(c=this.queryScroll()),this.calendar.freezeContentHeight(),ka(this.clear(),function(){return b.displaying=ka(b.displayView(a),function(){b.forceScroll(b.computeInitialScroll(c)),b.calendar.unfreezeContentHeight(),b.triggerRender()})})},clear:function(){var b=this,c=this.displaying;return c?ka(c,function(){return b.displaying=null,b.clearEvents(),b.clearView()}):a.when()},displayView:function(a){this.isSkeletonRendered||(this.renderSkeleton(),this.isSkeletonRendered=!0),a&&this.setDate(a),this.render&&this.render(),this.renderDates(),this.updateSize(),this.renderBusinessHours(),this.startNowIndicator()},clearView:function(){this.unselect(),this.stopNowIndicator(),this.triggerUnrender(),this.unrenderBusinessHours(),this.unrenderDates(),this.destroy&&this.destroy()},renderSkeleton:function(){},unrenderSkeleton:function(){},renderDates:function(){},unrenderDates:function(){},triggerRender:function(){this.trigger("viewRender",this,this,this.el)},triggerUnrender:function(){this.trigger("viewDestroy",this,this,this.el)},bindGlobalHandlers:function(){this.listenTo(a(document),"mousedown",this.handleDocumentMousedown),this.listenTo(a(document),"touchstart",this.processUnselect)},unbindGlobalHandlers:function(){this.stopListeningTo(a(document))},initThemingProps:function(){var a=this.opt("theme")?"ui":"fc";this.widgetHeaderClass=a+"-widget-header",this.widgetContentClass=a+"-widget-content",this.highlightStateClass=a+"-state-highlight"},renderBusinessHours:function(){},unrenderBusinessHours:function(){},startNowIndicator:function(){var a,c,d,e=this;this.opt("nowIndicator")&&(a=this.getNowIndicatorUnit(),a&&(c=ia(this,"updateNowIndicator"),this.initialNowDate=this.calendar.getNow(),this.initialNowQueriedMs=+new Date,this.renderNowIndicator(this.initialNowDate),this.isNowIndicatorRendered=!0,d=this.initialNowDate.clone().startOf(a).add(1,a)-this.initialNowDate,this.nowIndicatorTimeoutID=setTimeout(function(){e.nowIndicatorTimeoutID=null,c(),d=+b.duration(1,a),d=Math.max(100,d),e.nowIndicatorIntervalID=setInterval(c,d)},d)))},updateNowIndicator:function(){this.isNowIndicatorRendered&&(this.unrenderNowIndicator(),this.renderNowIndicator(this.initialNowDate.clone().add(new Date-this.initialNowQueriedMs)))},stopNowIndicator:function(){this.isNowIndicatorRendered&&(this.nowIndicatorTimeoutID&&(clearTimeout(this.nowIndicatorTimeoutID),this.nowIndicatorTimeoutID=null),this.nowIndicatorIntervalID&&(clearTimeout(this.nowIndicatorIntervalID),this.nowIndicatorIntervalID=null),this.unrenderNowIndicator(),this.isNowIndicatorRendered=!1)},getNowIndicatorUnit:function(){},renderNowIndicator:function(a){},unrenderNowIndicator:function(){},updateSize:function(a){var b;a&&(b=this.queryScroll()),this.updateHeight(a),this.updateWidth(a),this.updateNowIndicator(),a&&this.setScroll(b)},updateWidth:function(a){},updateHeight:function(a){var b=this.calendar;this.setHeight(b.getSuggestedViewHeight(),b.isHeightAuto())},setHeight:function(a,b){},computeInitialScroll:function(a){return 0},queryScroll:function(){},setScroll:function(a){},forceScroll:function(a){var b=this;this.setScroll(a),setTimeout(function(){b.setScroll(a)},0)},displayEvents:function(a){var b=this.queryScroll();this.clearEvents(),this.renderEvents(a),this.isEventsRendered=!0,this.setScroll(b),this.triggerEventRender()},clearEvents:function(){var a;this.isEventsRendered&&(a=this.queryScroll(),this.triggerEventUnrender(),this.destroyEvents&&this.destroyEvents(),this.unrenderEvents(),this.setScroll(a),this.isEventsRendered=!1)},renderEvents:function(a){},unrenderEvents:function(){},triggerEventRender:function(){this.renderedEventSegEach(function(a){this.trigger("eventAfterRender",a.event,a.event,a.el)}),this.trigger("eventAfterAllRender")},triggerEventUnrender:function(){this.renderedEventSegEach(function(a){this.trigger("eventDestroy",a.event,a.event,a.el)})},resolveEventEl:function(b,c){var d=this.trigger("eventRender",b,b,c);return d===!1?c=null:d&&d!==!0&&(c=a(d)),c},showEvent:function(a){this.renderedEventSegEach(function(a){a.el.css("visibility","")},a)},hideEvent:function(a){this.renderedEventSegEach(function(a){a.el.css("visibility","hidden")},a)},renderedEventSegEach:function(a,b){var c,d=this.getEventSegs();for(c=0;cb;b++)(d[b]=-1!==a.inArray(b,c))||e++;if(!e)throw"invalid hiddenDays";this.isHiddenDayHash=d},isHiddenDay:function(a){return b.isMoment(a)&&(a=a.day()),this.isHiddenDayHash[a]},skipHiddenDays:function(a,b,c){var d=a.clone();for(b=b||1;this.isHiddenDayHash[(d.day()+(c?b:0)+7)%7];)d.add(b,"days");return d},computeDayRange:function(a){var b,c=a.start.clone().stripTime(),d=a.end,e=null;return d&&(e=d.clone().stripTime(),b=+d.time(),b&&b>=this.nextDayThreshold&&e.add(1,"days")),(!d||c>=e)&&(e=c.clone().add(1,"days")),{start:c,end:e}},isMultiDayEvent:function(a){var b=this.computeDayRange(a);return b.end.diff(b.start,"days")>1}}),yb=Wa.Scroller=ya.extend({el:null,scrollEl:null,overflowX:null,overflowY:null,constructor:function(a){a=a||{},this.overflowX=a.overflowX||a.overflow||"auto",this.overflowY=a.overflowY||a.overflow||"auto"},render:function(){this.el=this.renderEl(),this.applyOverflow()},renderEl:function(){return this.scrollEl=a('
    ')},clear:function(){this.setHeight("auto"),this.applyOverflow()},destroy:function(){this.el.remove()},applyOverflow:function(){this.scrollEl.css({"overflow-x":this.overflowX,"overflow-y":this.overflowY})},lockOverflow:function(a){var b=this.overflowX,c=this.overflowY;a=a||this.getScrollbarWidths(),"auto"===b&&(b=a.top||a.bottom||this.scrollEl[0].scrollWidth-1>this.scrollEl[0].clientWidth?"scroll":"hidden"),"auto"===c&&(c=a.left||a.right||this.scrollEl[0].scrollHeight-1>this.scrollEl[0].clientHeight?"scroll":"hidden"),this.scrollEl.css({"overflow-x":b,"overflow-y":c})},setHeight:function(a){this.scrollEl.height(a)},getScrollTop:function(){return this.scrollEl.scrollTop()},setScrollTop:function(a){this.scrollEl.scrollTop(a)},getClientWidth:function(){return this.scrollEl[0].clientWidth},getClientHeight:function(){return this.scrollEl[0].clientHeight},getScrollbarWidths:function(){return q(this.scrollEl)}}),zb=Wa.Calendar=ya.extend({dirDefaults:null,langDefaults:null,overrides:null,options:null,viewSpecCache:null,view:null,header:null,loadingLevel:0,constructor:Qa,initialize:function(){},initOptions:function(a){var b,e,f,g;a=d(a),b=a.lang,e=Ab[b],e||(b=zb.defaults.lang,e=Ab[b]||{}),f=ba(a.isRTL,e.isRTL,zb.defaults.isRTL),g=f?zb.rtlDefaults:{},this.dirDefaults=g,this.langDefaults=e,this.overrides=a,this.options=c([zb.defaults,g,e,a]),Ra(this.options),this.viewSpecCache={}},getViewSpec:function(a){var b=this.viewSpecCache;return b[a]||(b[a]=this.buildViewSpec(a))},getUnitViewSpec:function(b){var c,d,e;if(-1!=a.inArray(b,_a))for(c=this.header.getViewsWithButtons(),a.each(Wa.views,function(a){c.push(a)}),d=0;d1,this.weekNumbersVisible=this.opt("weekNumbers"),this.dayGrid.numbersVisible=this.dayNumbersVisible||this.weekNumbersVisible,this.el.addClass("fc-basic-view").html(this.renderSkeletonHtml()),this.renderHead(),this.scroller.render();var b=this.scroller.el.addClass("fc-day-grid-container"),c=a('
    ').appendTo(b);this.el.find(".fc-body > tr > td").append(b),this.dayGrid.setElement(c),this.dayGrid.renderDates(this.hasRigidRows())},renderHead:function(){this.headContainerEl=this.el.find(".fc-head-container").html(this.dayGrid.renderHeadHtml()),this.headRowEl=this.headContainerEl.find(".fc-row")},unrenderDates:function(){this.dayGrid.unrenderDates(),this.dayGrid.removeElement(),this.scroller.destroy()},renderBusinessHours:function(){this.dayGrid.renderBusinessHours()},renderSkeletonHtml:function(){return'
    '},weekNumberStyleAttr:function(){return null!==this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},hasRigidRows:function(){var a=this.opt("eventLimit");return a&&"number"!=typeof a},updateWidth:function(){this.weekNumbersVisible&&(this.weekNumberWidth=k(this.el.find(".fc-week-number")))},setHeight:function(a,b){var c,d,g=this.opt("eventLimit");this.scroller.clear(),f(this.headRowEl),this.dayGrid.removeSegPopover(),g&&"number"==typeof g&&this.dayGrid.limitRows(g),c=this.computeScrollerHeight(a),this.setGridHeight(c,b),g&&"number"!=typeof g&&this.dayGrid.limitRows(g),b||(this.scroller.setHeight(c),d=this.scroller.getScrollbarWidths(),(d.left||d.right)&&(e(this.headRowEl,d),c=this.computeScrollerHeight(a),this.scroller.setHeight(c)),this.scroller.lockOverflow(d))},computeScrollerHeight:function(a){return a-l(this.el,this.scroller.el)},setGridHeight:function(a,b){b?j(this.dayGrid.rowEls):i(this.dayGrid.rowEls,a,!0)},queryScroll:function(){return this.scroller.getScrollTop()},setScroll:function(a){this.scroller.setScrollTop(a)},prepareHits:function(){this.dayGrid.prepareHits()},releaseHits:function(){this.dayGrid.releaseHits()},queryHit:function(a,b){return this.dayGrid.queryHit(a,b)},getHitSpan:function(a){return this.dayGrid.getHitSpan(a)},getHitEl:function(a){return this.dayGrid.getHitEl(a)},renderEvents:function(a){this.dayGrid.renderEvents(a),this.updateHeight()},getEventSegs:function(){return this.dayGrid.getEventSegs()},unrenderEvents:function(){this.dayGrid.unrenderEvents()},renderDrag:function(a,b){return this.dayGrid.renderDrag(a,b)},unrenderDrag:function(){this.dayGrid.unrenderDrag()},renderSelection:function(a){this.dayGrid.renderSelection(a)},unrenderSelection:function(){this.dayGrid.unrenderSelection()}}),Hb={renderHeadIntroHtml:function(){var a=this.view;return a.weekNumbersVisible?'"+ca(a.opt("weekNumberTitle"))+"":""},renderNumberIntroHtml:function(a){var b=this.view;return b.weekNumbersVisible?'"+this.getCellDate(a,0).format("w")+"":""},renderBgIntroHtml:function(){var a=this.view;return a.weekNumbersVisible?'":""},renderIntroHtml:function(){var a=this.view;return a.weekNumbersVisible?'":""}},Ib=Wa.MonthView=Gb.extend({computeRange:function(a){var b,c=Gb.prototype.computeRange.call(this,a);return this.isFixedWeeks()&&(b=Math.ceil(c.end.diff(c.start,"weeks",!0)),c.end.add(6-b,"weeks")),c},setGridHeight:function(a,b){b=b||"variable"===this.opt("weekMode"),b&&(a*=this.rowCnt/6),i(this.dayGrid.rowEls,a,!b)},isFixedWeeks:function(){var a=this.opt("weekMode");return a?"fixed"===a:this.opt("fixedWeekCount")}});Xa.basic={"class":Gb},Xa.basicDay={type:"basic",duration:{days:1}},Xa.basicWeek={type:"basic",duration:{weeks:1}},Xa.month={"class":Ib,duration:{months:1},defaults:{fixedWeekCount:!0}};var Jb=Wa.AgendaView=xb.extend({scroller:null,timeGridClass:wb,timeGrid:null,dayGridClass:vb,dayGrid:null,axisWidth:null,headContainerEl:null,noScrollRowEls:null,bottomRuleEl:null,initialize:function(){this.timeGrid=this.instantiateTimeGrid(),this.opt("allDaySlot")&&(this.dayGrid=this.instantiateDayGrid()),this.scroller=new yb({overflowX:"hidden",overflowY:"auto"})},instantiateTimeGrid:function(){var a=this.timeGridClass.extend(Kb);return new a(this)},instantiateDayGrid:function(){var a=this.dayGridClass.extend(Lb);return new a(this)},setRange:function(a){xb.prototype.setRange.call(this,a),this.timeGrid.setRange(a),this.dayGrid&&this.dayGrid.setRange(a)},renderDates:function(){this.el.addClass("fc-agenda-view").html(this.renderSkeletonHtml()),this.renderHead(),this.scroller.render();var b=this.scroller.el.addClass("fc-time-grid-container"),c=a('
    ').appendTo(b);this.el.find(".fc-body > tr > td").append(b),this.timeGrid.setElement(c),this.timeGrid.renderDates(),this.bottomRuleEl=a('
    ').appendTo(this.timeGrid.el),this.dayGrid&&(this.dayGrid.setElement(this.el.find(".fc-day-grid")),this.dayGrid.renderDates(),this.dayGrid.bottomCoordPadding=this.dayGrid.el.next("hr").outerHeight()),this.noScrollRowEls=this.el.find(".fc-row:not(.fc-scroller *)")},renderHead:function(){this.headContainerEl=this.el.find(".fc-head-container").html(this.timeGrid.renderHeadHtml())},unrenderDates:function(){this.timeGrid.unrenderDates(),this.timeGrid.removeElement(),this.dayGrid&&(this.dayGrid.unrenderDates(),this.dayGrid.removeElement()),this.scroller.destroy()},renderSkeletonHtml:function(){return'
    '+(this.dayGrid?'

    ':"")+"
    "},axisStyleAttr:function(){return null!==this.axisWidth?'style="width:'+this.axisWidth+'px"':""},renderBusinessHours:function(){this.timeGrid.renderBusinessHours(),this.dayGrid&&this.dayGrid.renderBusinessHours()},unrenderBusinessHours:function(){this.timeGrid.unrenderBusinessHours(),this.dayGrid&&this.dayGrid.unrenderBusinessHours()},getNowIndicatorUnit:function(){return this.timeGrid.getNowIndicatorUnit()},renderNowIndicator:function(a){this.timeGrid.renderNowIndicator(a)},unrenderNowIndicator:function(){this.timeGrid.unrenderNowIndicator()},updateSize:function(a){this.timeGrid.updateSize(a),xb.prototype.updateSize.call(this,a)},updateWidth:function(){this.axisWidth=k(this.el.find(".fc-axis"))},setHeight:function(a,b){var c,d,g;this.bottomRuleEl.hide(),this.scroller.clear(),f(this.noScrollRowEls),this.dayGrid&&(this.dayGrid.removeSegPopover(),c=this.opt("eventLimit"),c&&"number"!=typeof c&&(c=Mb),c&&this.dayGrid.limitRows(c)),b||(d=this.computeScrollerHeight(a),this.scroller.setHeight(d),g=this.scroller.getScrollbarWidths(),(g.left||g.right)&&(e(this.noScrollRowEls,g),d=this.computeScrollerHeight(a),this.scroller.setHeight(d)),this.scroller.lockOverflow(g),this.timeGrid.getTotalSlatHeight()"+ca(a)+""):'"},renderBgIntroHtml:function(){var a=this.view;return'"},renderIntroHtml:function(){var a=this.view;return'"}},Lb={renderBgIntroHtml:function(){var a=this.view;return'"+(a.opt("allDayHtml")||ca(a.opt("allDayText")))+""},renderIntroHtml:function(){var a=this.view;return'"}},Mb=5,Nb=[{hours:1},{minutes:30},{minutes:15},{seconds:30},{seconds:15}];return Xa.agenda={"class":Jb,defaults:{allDaySlot:!0,allDayText:"all-day",slotDuration:"00:30:00",minTime:"00:00:00",maxTime:"24:00:00",slotEventOverlap:!0}},Xa.agendaDay={type:"agenda",duration:{days:1}},Xa.agendaWeek={type:"agenda",duration:{weeks:1}},Wa}); \ No newline at end of file +!function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):"object"==typeof exports?module.exports=t(require("jquery"),require("moment")):t(jQuery,moment)}(function(t,e){function n(t){return q(t,qt)}function i(t,e){e.left&&t.css({"border-left-width":1,"margin-left":e.left-1}),e.right&&t.css({"border-right-width":1,"margin-right":e.right-1})}function r(t){t.css({"margin-left":"","margin-right":"","border-left-width":"","border-right-width":""})}function s(){t("body").addClass("fc-not-allowed")}function o(){t("body").removeClass("fc-not-allowed")}function l(e,n,i){var r=Math.floor(n/e.length),s=Math.floor(n-r*(e.length-1)),o=[],l=[],u=[],c=0;a(e),e.each(function(n,i){var a=n===e.length-1?s:r,d=t(i).outerHeight(!0);d *").each(function(e,i){var r=t(i).outerWidth();r>n&&(n=r)}),n++,e.width(n),n}function c(t,e){var n,i=t.add(e);return i.css({position:"relative",left:-1}),n=t.outerHeight()-e.outerHeight(),i.css({position:"",left:""}),n}function d(e){var n=e.css("position"),i=e.parents().filter(function(){var e=t(this);return/(auto|scroll)/.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==n&&i.length?i:t(e[0].ownerDocument||document)}function h(t,e){var n=t.offset(),i=n.left-(e?e.left:0),r=n.top-(e?e.top:0);return{left:i,right:i+t.outerWidth(),top:r,bottom:r+t.outerHeight()}}function f(t,e){var n=t.offset(),i=p(t),r=n.left+y(t,"border-left-width")+i.left-(e?e.left:0),s=n.top+y(t,"border-top-width")+i.top-(e?e.top:0);return{left:r,right:r+t[0].clientWidth,top:s,bottom:s+t[0].clientHeight}}function g(t,e){var n=t.offset(),i=n.left+y(t,"border-left-width")+y(t,"padding-left")-(e?e.left:0),r=n.top+y(t,"border-top-width")+y(t,"padding-top")-(e?e.top:0);return{left:i,right:i+t.width(),top:r,bottom:r+t.height()}}function p(t){var e=t.innerWidth()-t[0].clientWidth,n={left:0,right:0,top:0,bottom:t.innerHeight()-t[0].clientHeight};return v()&&"rtl"==t.css("direction")?n.left=e:n.right=e,n}function v(){return null===Zt&&(Zt=m()),Zt}function m(){var e=t("
    ").css({position:"absolute",top:-1e3,left:0,border:0,padding:0,overflow:"scroll",direction:"rtl"}).appendTo("body"),n=e.children(),i=n.offset().left>e.offset().left;return e.remove(),i}function y(t,e){return parseFloat(t.css(e))||0}function S(t){return 1==t.which&&!t.ctrlKey}function w(t){if(void 0!==t.pageX)return t.pageX;var e=t.originalEvent.touches;return e?e[0].pageX:void 0}function E(t){if(void 0!==t.pageY)return t.pageY;var e=t.originalEvent.touches;return e?e[0].pageY:void 0}function b(t){return/^touch/.test(t.type)}function D(t){t.addClass("fc-unselectable").on("selectstart",C)}function C(t){t.preventDefault()}function H(t){return!!window.addEventListener&&(window.addEventListener("scroll",t,!0),!0)}function T(t){return!!window.removeEventListener&&(window.removeEventListener("scroll",t,!0),!0)}function x(t,e){var n={left:Math.max(t.left,e.left),right:Math.min(t.right,e.right),top:Math.max(t.top,e.top),bottom:Math.min(t.bottom,e.bottom)};return n.lefta&&o=a?(n=o.clone(),r=!0):(n=a.clone(),r=!1),l<=u?(i=l.clone(),s=!0):(i=u.clone(),s=!1),{start:n,end:i,isStart:r,isEnd:s}}function N(t,n){return e.duration({days:t.clone().stripTime().diff(n.clone().stripTime(),"days"),ms:t.time()-n.time()})}function G(t,n){return e.duration({days:t.clone().stripTime().diff(n.clone().stripTime(),"days")})}function O(t,n,i){return e.duration(Math.round(t.diff(n,i,!0)),i)}function A(t,e){var n,i,r;for(n=0;n=1&&ot(r)));n++);return i}function V(t,n,i){return null!=i?i.diff(n,t,!0):e.isDuration(n)?n.as(t):n.end.diff(n.start,t,!0)}function P(t,e,n){var i;return W(n)?(e-t)/n:(i=n.asMonths(),Math.abs(i)>=1&&ot(i)?e.diff(t,"months",!0)/i:e.diff(t,"days",!0)/n.asDays())}function _(t,e){var n,i;return W(t)||W(e)?t/e:(n=t.asMonths(),i=e.asMonths(),Math.abs(n)>=1&&ot(n)&&Math.abs(i)>=1&&ot(i)?n/i:t.asDays()/e.asDays())}function Y(t,n){var i;return W(t)?e.duration(t*n):(i=t.asMonths(),Math.abs(i)>=1&&ot(i)?e.duration({months:i*n}):e.duration({days:t.asDays()*n}))}function W(t){return Boolean(t.hours()||t.minutes()||t.seconds()||t.milliseconds())}function j(t){return"[object Date]"===Object.prototype.toString.call(t)||t instanceof Date}function U(t){return/^\d+\:\d+(?:\:\d+\.?(?:\d{3})?)?$/.test(t)}function q(t,e){var n,i,r,s,o,l,a={};if(e)for(n=0;n=0;s--)if(o=t[s][i],"object"==typeof o)r.unshift(o);else if(void 0!==o){a[i]=o;break}r.length&&(a[i]=q(r))}for(n=t.length-1;n>=0;n--){l=t[n];for(i in l)i in a||(a[i]=l[i])}return a}function Z(t){var e=function(){};return e.prototype=t,new e}function $(t,e){for(var n in t)X(t,n)&&(e[n]=t[n])}function X(t,e){return Kt.call(t,e)}function K(e){return/undefined|null|boolean|number|string/.test(t.type(e))}function Q(e,n,i){if(t.isFunction(e)&&(e=[e]),e){var r,s;for(r=0;r/g,">").replace(/'/g,"'").replace(/"/g,""").replace(/\n/g,"
    ")}function et(t){return t.replace(/&.*?;/g,"")}function nt(e){var n=[];return t.each(e,function(t,e){null!=e&&n.push(t+":"+e)}),n.join(";")}function it(e){var n=[];return t.each(e,function(t,e){null!=e&&n.push(t+'="'+tt(e)+'"')}),n.join(" ")}function rt(t){return t.charAt(0).toUpperCase()+t.slice(1)}function st(t,e){return t-e}function ot(t){return t%1===0}function lt(t,e){var n=t[e];return function(){return n.apply(t,arguments)}}function at(t,e,n){var i,r,s,o,l,a=function(){var u=+new Date-o;uo&&(s=mt(t,e,u,c,n[l]),s!==!1);l--)h=s+h;for(a=o;a<=l;a++)f+=gt(t,n[a]),g+=gt(e,n[a]);return(f||g)&&(p=r?g+i+f:f+i+g),d+p+h}function mt(t,e,n,i,r){var s,o;return"string"==typeof r?r:!!((s=r.token)&&(o=re[s.charAt(0)],o&&n.isSame(i,o)))&&dt(t,s)}function yt(t){return t in se?se[t]:se[t]=St(t)}function St(t){for(var e,n=[],i=/\[([^\]]*)\]|\(([^\)]*)\)|(LTS|LT|(\w)\4*o?)|([^\w\[\(]+)/g;e=i.exec(t);)e[1]?n.push(e[1]):e[2]?n.push({maybe:St(e[2])}):e[3]?n.push({token:e[3]}):e[5]&&n.push(e[5]);return n}function wt(){}function Et(t,e){var n;return X(e,"constructor")&&(n=e.constructor),"function"!=typeof n&&(n=e.constructor=function(){t.apply(this,arguments)}),n.prototype=Z(t.prototype),$(e,n.prototype),$(t,n),n}function bt(t,e){$(e,t.prototype)}function Dt(t,e){return!t&&!e||!(!t||!e)&&(t.component===e.component&&Ct(t,e)&&Ct(e,t))}function Ct(t,e){for(var n in t)if(!/^(component|left|right|top|bottom)$/.test(n)&&t[n]!==e[n])return!1;return!0}function Ht(t){return{start:t.start.clone(),end:t.end?t.end.clone():null,allDay:t.allDay}}function Tt(t){var e=Rt(t);return"background"===e||"inverse-background"===e}function xt(t){return"inverse-background"===Rt(t)}function Rt(t){return J((t.source||{}).rendering,t.rendering)}function It(t){var e,n,i={};for(e=0;e=t.leftCol)return!0;return!1}function zt(t,e){return t.leftCol-e.leftCol}function Bt(t){var e,n,i,r=[];for(e=0;ee.top&&t.top").prependTo(n),q=j.header=new _t(j),l(),c(j.options.defaultView),j.options.handleWindowResize&&(J=at(m,j.options.windowResizeDelay),t(window).resize(J))}function l(){q.render(),q.el&&n.prepend(q.el)}function a(){K&&K.removeElement(),q.removeElement(),$.remove(),n.removeClass("fc fc-ltr fc-rtl fc-unthemed ui-widget"),n.off(".fc"),J&&t(window).unbind("resize",J)}function u(){return n.is(":visible")}function c(e,n){lt++,K&&e&&K.type!==e&&(O(),d()),!K&&e&&(K=j.view=ot[e]||(ot[e]=j.instantiateView(e)),K.setElement(t("
    ").appendTo($)),q.activateButton(e)),K&&(tt=K.massageCurrentDate(tt),K.displaying&&tt>=K.intervalStart&&tt=K.intervalStart&&t"),h.append(r("left")).append(r("right")).append(r("center")).append('
    ')):i()}function i(){h&&(h.remove(),h=d.el=null)}function r(n){var i=t('
    '),r=e.options,s=r.header[n];return s&&t.each(s.split(" "),function(n){var s,o=t(),l=!0;t.each(this.split(","),function(n,i){var s,a,u,c,d,h,p,v,m,y;"title"==i?(o=o.add(t("

     

    ")),l=!1):((s=(r.customButtons||{})[i])?(u=function(t){s.click&&s.click.call(y[0],t)},c="",d=s.text):(a=e.getViewSpec(i))?(u=function(){e.changeView(i)},g.push(i),c=a.buttonTextOverride,d=a.buttonTextDefault):e[i]&&(u=function(){e[i]()},c=(e.overrides.buttonText||{})[i],d=r.buttonText[i]),u&&(h=s?s.themeIcon:r.themeButtonIcons[i],p=s?s.icon:r.buttonIcons[i],v=c?tt(c):h&&r.theme?"":p&&!r.theme?"":tt(d),m=["fc-"+i+"-button",f+"-button",f+"-state-default"],y=t('").click(function(t){y.hasClass(f+"-state-disabled")||(u(t),(y.hasClass(f+"-state-active")||y.hasClass(f+"-state-disabled"))&&y.removeClass(f+"-state-hover"))}).mousedown(function(){y.not("."+f+"-state-active").not("."+f+"-state-disabled").addClass(f+"-state-down")}).mouseup(function(){y.removeClass(f+"-state-down")}).hover(function(){y.not("."+f+"-state-active").not("."+f+"-state-disabled").addClass(f+"-state-hover")},function(){y.removeClass(f+"-state-hover").removeClass(f+"-state-down")}),o=o.add(y)))}),l&&o.first().addClass(f+"-corner-left").end().last().addClass(f+"-corner-right").end(),o.length>1?(s=t("
    "),l&&s.addClass("fc-button-group"),s.append(o),i.append(s)):i.append(o)}),i}function s(t){h&&h.find("h2").text(t)}function o(t){h&&h.find(".fc-"+t+"-button").addClass(f+"-state-active")}function l(t){h&&h.find(".fc-"+t+"-button").removeClass(f+"-state-active")}function a(t){h&&h.find(".fc-"+t+"-button").prop("disabled",!0).addClass(f+"-state-disabled")}function u(t){h&&h.find(".fc-"+t+"-button").prop("disabled",!1).removeClass(f+"-state-disabled")}function c(){return g}var d=this;d.render=n,d.removeElement=i,d.updateTitle=s,d.activateButton=o,d.deactivateButton=l,d.disableButton=a,d.enableButton=u,d.getViewsWithButtons=c,d.el=null;var h,f,g=[]}function Yt(){function n(t,e){return!A||tV}function i(t,e){A=t,V=e,r(Y,"reset")}function r(t,e){var n,i;for("reset"===e?j=[]:"add"!==e&&(j=w(j,t)),n=0;n').addClass(n.className||"").css({top:0,left:0}).append(n.content).appendTo(n.parentEl), +this.el.on("click",".fc-close",function(){e.hide()}),n.autoHide&&this.listenTo(t(document),"mousedown",this.documentMousedown)},documentMousedown:function(e){this.el&&!t(e.target).closest(this.el).length&&this.hide()},removeElement:function(){this.hide(),this.el&&(this.el.remove(),this.el=null),this.stopListeningTo(t(document),"mousedown")},position:function(){var e,n,i,r,s,o=this.options,l=this.el.offsetParent().offset(),a=this.el.outerWidth(),u=this.el.outerHeight(),c=t(window),h=d(this.el);r=o.top||0,s=void 0!==o.left?o.left:void 0!==o.right?o.right-a:0,h.is(window)||h.is(document)?(h=c,e=0,n=0):(i=h.offset(),e=i.top,n=i.left),e+=c.scrollTop(),n+=c.scrollLeft(),o.viewportConstrain!==!1&&(r=Math.min(r,e+h.outerHeight()-u-this.margin),r=Math.max(r,e+this.margin),s=Math.min(s,n+h.outerWidth()-a-this.margin),s=Math.max(s,n+this.margin)),this.el.css({top:r-l.top,left:s-l.left})},trigger:function(t){this.options[t]&&this.options[t].apply(this,Array.prototype.slice.call(arguments,1))}}),ce=jt.CoordCache=wt.extend({els:null,forcedOffsetParentEl:null,origin:null,boundingRect:null,isHorizontal:!1,isVertical:!1,lefts:null,rights:null,tops:null,bottoms:null,constructor:function(e){this.els=t(e.els),this.isHorizontal=e.isHorizontal,this.isVertical=e.isVertical,this.forcedOffsetParentEl=e.offsetParent?t(e.offsetParent):null},build:function(){var t=this.forcedOffsetParentEl||this.els.eq(0).offsetParent();this.origin=t.offset(),this.boundingRect=this.queryBoundingRect(),this.isHorizontal&&this.buildElHorizontals(),this.isVertical&&this.buildElVerticals()},clear:function(){this.origin=null,this.boundingRect=null,this.lefts=null,this.rights=null,this.tops=null,this.bottoms=null},ensureBuilt:function(){this.origin||this.build()},buildElHorizontals:function(){var e=[],n=[];this.els.each(function(i,r){var s=t(r),o=s.offset().left,l=s.outerWidth();e.push(o),n.push(o+l)}),this.lefts=e,this.rights=n},buildElVerticals:function(){var e=[],n=[];this.els.each(function(i,r){var s=t(r),o=s.offset().top,l=s.outerHeight();e.push(o),n.push(o+l)}),this.tops=e,this.bottoms=n},getHorizontalIndex:function(t){this.ensureBuilt();var e,n=this.lefts,i=this.rights,r=n.length;for(e=0;e=n[e]&&t=n[e]&&t=this.boundingRect.left&&t=this.boundingRect.top&&t=r*r&&this.handleDistanceSurpassed(t)),this.isDragging&&this.handleDrag(n,i,t)},handleDrag:function(t,e,n){this.trigger("drag",t,e,n),this.updateAutoScroll(n)},endDrag:function(t){this.isDragging&&(this.isDragging=!1,this.handleDragEnd(t))},handleDragEnd:function(t){this.trigger("dragEnd",t)},startDelay:function(t){var e=this;this.delay?this.delayTimeoutId=setTimeout(function(){e.handleDelayEnd(t)},this.delay):this.handleDelayEnd(t)},handleDelayEnd:function(t){this.isDelayEnded=!0,this.isDistanceSurpassed&&this.startDrag(t)},handleDistanceSurpassed:function(t){this.isDistanceSurpassed=!0,this.isDelayEnded&&this.startDrag(t)},handleTouchMove:function(t){this.isDragging&&t.preventDefault(),this.handleMove(t)},handleMouseMove:function(t){this.handleMove(t)},handleTouchScroll:function(t){this.isDragging||this.endInteraction(t,!0)},trigger:function(t){this.options[t]&&this.options[t].apply(this,Array.prototype.slice.call(arguments,1)),this["_"+t]&&this["_"+t].apply(this,Array.prototype.slice.call(arguments,1))}});de.mixin({isAutoScroll:!1,scrollBounds:null,scrollTopVel:null,scrollLeftVel:null,scrollIntervalId:null,scrollSensitivity:30,scrollSpeed:200,scrollIntervalMs:50,initAutoScroll:function(){var t=this.scrollEl;this.isAutoScroll=this.options.scroll&&t&&!t.is(window)&&!t.is(document),this.isAutoScroll&&this.listenTo(t,"scroll",at(this.handleDebouncedScroll,100))},destroyAutoScroll:function(){this.endAutoScroll(),this.isAutoScroll&&this.stopListeningTo(this.scrollEl,"scroll")},computeScrollBounds:function(){this.isAutoScroll&&(this.scrollBounds=h(this.scrollEl))},updateAutoScroll:function(t){var e,n,i,r,s=this.scrollSensitivity,o=this.scrollBounds,l=0,a=0;o&&(e=(s-(E(t)-o.top))/s,n=(s-(o.bottom-E(t)))/s,i=(s-(w(t)-o.left))/s,r=(s-(o.right-w(t)))/s,e>=0&&e<=1?l=e*this.scrollSpeed*-1:n>=0&&n<=1&&(l=n*this.scrollSpeed),i>=0&&i<=1?a=i*this.scrollSpeed*-1:r>=0&&r<=1&&(a=r*this.scrollSpeed)),this.setScrollVel(l,a)},setScrollVel:function(t,e){this.scrollTopVel=t,this.scrollLeftVel=e,this.constrainScrollVel(),!this.scrollTopVel&&!this.scrollLeftVel||this.scrollIntervalId||(this.scrollIntervalId=setInterval(lt(this,"scrollIntervalFunc"),this.scrollIntervalMs))},constrainScrollVel:function(){var t=this.scrollEl;this.scrollTopVel<0?t.scrollTop()<=0&&(this.scrollTopVel=0):this.scrollTopVel>0&&t.scrollTop()+t[0].clientHeight>=t[0].scrollHeight&&(this.scrollTopVel=0),this.scrollLeftVel<0?t.scrollLeft()<=0&&(this.scrollLeftVel=0):this.scrollLeftVel>0&&t.scrollLeft()+t[0].clientWidth>=t[0].scrollWidth&&(this.scrollLeftVel=0)},scrollIntervalFunc:function(){var t=this.scrollEl,e=this.scrollIntervalMs/1e3;this.scrollTopVel&&t.scrollTop(t.scrollTop()+this.scrollTopVel*e),this.scrollLeftVel&&t.scrollLeft(t.scrollLeft()+this.scrollLeftVel*e),this.constrainScrollVel(),this.scrollTopVel||this.scrollLeftVel||this.endAutoScroll()},endAutoScroll:function(){this.scrollIntervalId&&(clearInterval(this.scrollIntervalId),this.scrollIntervalId=null,this.handleScrollEnd())},handleDebouncedScroll:function(){this.scrollIntervalId||this.handleScrollEnd()},handleScrollEnd:function(){}});var he=de.extend({component:null,origHit:null,hit:null,coordAdjust:null,constructor:function(t,e){de.call(this,e),this.component=t},handleInteractionStart:function(t){var e,n,i,r=this.subjectEl;this.computeCoords(),t?(n={left:w(t),top:E(t)},i=n,r&&(e=h(r),i=R(i,e)),this.origHit=this.queryHit(i.left,i.top),r&&this.options.subjectCenter&&(this.origHit&&(e=x(this.origHit,e)||e),i=I(e)),this.coordAdjust=k(i,n)):(this.origHit=null,this.coordAdjust=null),de.prototype.handleInteractionStart.apply(this,arguments)},computeCoords:function(){this.component.prepareHits(),this.computeScrollBounds()},handleDragStart:function(t){var e;de.prototype.handleDragStart.apply(this,arguments),e=this.queryHit(w(t),E(t)),e&&this.handleHitOver(e)},handleDrag:function(t,e,n){var i;de.prototype.handleDrag.apply(this,arguments),i=this.queryHit(w(n),E(n)),Dt(i,this.hit)||(this.hit&&this.handleHitOut(),i&&this.handleHitOver(i))},handleDragEnd:function(){this.handleHitDone(),de.prototype.handleDragEnd.apply(this,arguments)},handleHitOver:function(t){var e=Dt(t,this.origHit);this.hit=t,this.trigger("hitOver",this.hit,e,this.origHit)},handleHitOut:function(){this.hit&&(this.trigger("hitOut",this.hit),this.handleHitDone(),this.hit=null)},handleHitDone:function(){this.hit&&this.trigger("hitDone",this.hit)},handleInteractionEnd:function(){de.prototype.handleInteractionEnd.apply(this,arguments),this.origHit=null,this.hit=null,this.component.releaseHits()},handleScrollEnd:function(){de.prototype.handleScrollEnd.apply(this,arguments),this.computeCoords()},queryHit:function(t,e){return this.coordAdjust&&(t+=this.coordAdjust.left,e+=this.coordAdjust.top),this.component.queryHit(t,e)}}),fe=wt.extend(le,{options:null,sourceEl:null,el:null,parentEl:null,top0:null,left0:null,y0:null,x0:null,topDelta:null,leftDelta:null,isFollowing:!1,isHidden:!1,isAnimating:!1,constructor:function(e,n){this.options=n=n||{},this.sourceEl=e,this.parentEl=n.parentEl?t(n.parentEl):e.parent()},start:function(e){this.isFollowing||(this.isFollowing=!0,this.y0=E(e),this.x0=w(e),this.topDelta=0,this.leftDelta=0,this.isHidden||this.updatePosition(),b(e)?this.listenTo(t(document),"touchmove",this.handleMove):this.listenTo(t(document),"mousemove",this.handleMove))},stop:function(e,n){function i(){r.isAnimating=!1,r.removeElement(),r.top0=r.left0=null,n&&n()}var r=this,s=this.options.revertDuration;this.isFollowing&&!this.isAnimating&&(this.isFollowing=!1,this.stopListeningTo(t(document)),e&&s&&!this.isHidden?(this.isAnimating=!0,this.el.animate({top:this.top0,left:this.left0},{duration:s,complete:i})):i())},getEl:function(){var t=this.el;return t||(t=this.el=this.sourceEl.clone().addClass(this.options.additionalClass||"").css({position:"absolute",visibility:"",display:this.isHidden?"none":"",margin:0,right:"auto",bottom:"auto",width:this.sourceEl.width(),height:this.sourceEl.height(),opacity:this.options.opacity||"",zIndex:this.options.zIndex}),t.addClass("fc-unselectable"),t.appendTo(this.parentEl)),t},removeElement:function(){this.el&&(this.el.remove(),this.el=null)},updatePosition:function(){var t,e;this.getEl(),null===this.top0&&(t=this.sourceEl.offset(),e=this.el.offsetParent().offset(),this.top0=t.top-e.top,this.left0=t.left-e.left),this.el.css({top:this.top0+this.topDelta,left:this.left0+this.leftDelta})},handleMove:function(t){this.topDelta=E(t)-this.y0,this.leftDelta=w(t)-this.x0,this.isHidden||this.updatePosition()},hide:function(){this.isHidden||(this.isHidden=!0,this.el&&this.el.hide())},show:function(){this.isHidden&&(this.isHidden=!1,this.updatePosition(),this.getEl().show())}}),ge=jt.Grid=wt.extend(le,ae,{hasDayInteractions:!0,view:null,isRTL:null,start:null,end:null,el:null,elsByFill:null,eventTimeFormat:null,displayEventTime:null,displayEventEnd:null,minResizeDuration:null,largeUnit:null,dayDragListener:null,segDragListener:null,segResizeListener:null,externalDragListener:null,constructor:function(t){this.view=t,this.isRTL=t.opt("isRTL"),this.elsByFill={},this.dayDragListener=this.buildDayDragListener(),this.initMouseIgnoring()},computeEventTimeFormat:function(){return this.view.opt("smallTimeFormat")},computeDisplayEventTime:function(){return!0},computeDisplayEventEnd:function(){return!0},setRange:function(t){this.start=t.start.clone(),this.end=t.end.clone(),this.rangeUpdated(),this.processRangeOptions()},rangeUpdated:function(){},processRangeOptions:function(){var t,e,n=this.view;this.eventTimeFormat=n.opt("eventTimeFormat")||n.opt("timeFormat")||this.computeEventTimeFormat(),t=n.opt("displayEventTime"),null==t&&(t=this.computeDisplayEventTime()),e=n.opt("displayEventEnd"),null==e&&(e=this.computeDisplayEventEnd()),this.displayEventTime=t,this.displayEventEnd=e},spanToSegs:function(t){},diffDates:function(t,e){return this.largeUnit?O(t,e,this.largeUnit):N(t,e)},prepareHits:function(){},releaseHits:function(){},queryHit:function(t,e){},getHitSpan:function(t){},getHitEl:function(t){},setElement:function(t){this.el=t,this.hasDayInteractions&&(D(t),this.bindDayHandler("touchstart",this.dayTouchStart),this.bindDayHandler("mousedown",this.dayMousedown)),this.bindSegHandlers(),this.bindGlobalHandlers()},bindDayHandler:function(e,n){var i=this;this.el.on(e,function(e){if(!t(e.target).is(i.segSelector+","+i.segSelector+" *,.fc-more,a[data-goto]"))return n.call(i,e)})},removeElement:function(){this.unbindGlobalHandlers(),this.clearDragListeners(),this.el.remove()},renderSkeleton:function(){},renderDates:function(){},unrenderDates:function(){},bindGlobalHandlers:function(){this.listenTo(t(document),{dragstart:this.externalDragStart,sortstart:this.externalDragStart})},unbindGlobalHandlers:function(){this.stopListeningTo(t(document))},dayMousedown:function(t){this.isIgnoringMouse||this.dayDragListener.startInteraction(t,{})},dayTouchStart:function(t){var e=this.view;(e.isSelected||e.selectedEvent)&&this.tempIgnoreMouse(),this.dayDragListener.startInteraction(t,{delay:this.view.opt("longPressDelay")})},buildDayDragListener:function(){var t,e,n=this,i=this.view,r=i.opt("selectable"),l=new he(this,{scroll:i.opt("dragScroll"),interactionStart:function(){t=l.origHit,e=null},dragStart:function(){i.unselect()},hitOver:function(i,o,l){l&&(o||(t=null),r&&(e=n.computeSelection(n.getHitSpan(l),n.getHitSpan(i)),e?n.renderSelection(e):e===!1&&s()))},hitOut:function(){t=null,e=null,n.unrenderSelection()},hitDone:function(){o()},interactionEnd:function(r,s){s||(t&&!n.isIgnoringMouse&&i.triggerDayClick(n.getHitSpan(t),n.getHitEl(t),r),e&&i.reportSelection(e,r))}});return l},clearDragListeners:function(){this.dayDragListener.endInteraction(),this.segDragListener&&this.segDragListener.endInteraction(),this.segResizeListener&&this.segResizeListener.endInteraction(),this.externalDragListener&&this.externalDragListener.endInteraction()},renderEventLocationHelper:function(t,e){var n=this.fabricateHelperEvent(t,e);return this.renderHelper(n,e)},fabricateHelperEvent:function(t,e){var n=e?Z(e.event):{};return n.start=t.start.clone(),n.end=t.end?t.end.clone():null,n.allDay=null,this.view.calendar.normalizeEventDates(n),n.className=(n.className||[]).concat("fc-helper"),e||(n.editable=!1),n},renderHelper:function(t,e){},unrenderHelper:function(){},renderSelection:function(t){this.renderHighlight(t)},unrenderSelection:function(){this.unrenderHighlight()},computeSelection:function(t,e){var n=this.computeSelectionSpan(t,e);return!(n&&!this.view.calendar.isSelectionSpanAllowed(n))&&n},computeSelectionSpan:function(t,e){var n=[t.start,t.end,e.start,e.end];return n.sort(st),{start:n[0].clone(),end:n[3].clone()}},renderHighlight:function(t){this.renderFill("highlight",this.spanToSegs(t))},unrenderHighlight:function(){this.unrenderFill("highlight")},highlightSegClasses:function(){return["fc-highlight"]},renderBusinessHours:function(){},unrenderBusinessHours:function(){},getNowIndicatorUnit:function(){},renderNowIndicator:function(t){},unrenderNowIndicator:function(){},renderFill:function(t,e){},unrenderFill:function(t){var e=this.elsByFill[t];e&&(e.remove(),delete this.elsByFill[t])},renderFillSegEls:function(e,n){var i,r=this,s=this[e+"SegEl"],o="",l=[];if(n.length){for(i=0;i"},getDayClasses:function(t){var e=this.view,n=e.calendar.getNow(),i=["fc-"+$t[t.day()]];return 1==e.intervalDuration.as("months")&&t.month()!=e.intervalStart.month()&&i.push("fc-other-month"),t.isSame(n,"day")?i.push("fc-today",e.highlightStateClass):t *",mousedOverSeg:null,isDraggingSeg:!1,isResizingSeg:!1,isDraggingExternal:!1,segs:null,renderEvents:function(t){var e,n=[],i=[];for(e=0;el&&o.push({start:l,end:n.start}),l=n.end;return l=e.length?e[e.length-1]+1:e[n]},computeColHeadFormat:function(){return this.rowCnt>1||this.colCnt>10?"ddd":this.colCnt>1?this.view.opt("dayOfMonthFormat"):"dddd"},sliceRangeByRow:function(t){var e,n,i,r,s,o=this.daysPerRow,l=this.view.computeDayRange(t),a=this.getDateDayIndex(l.start),u=this.getDateDayIndex(l.end.clone().subtract(1,"days")),c=[];for(e=0;e'+this.renderHeadTrHtml()+"
    "},renderHeadIntroHtml:function(){return this.renderIntroHtml()},renderHeadTrHtml:function(){return""+(this.isRTL?"":this.renderHeadIntroHtml())+this.renderHeadDateCellsHtml()+(this.isRTL?this.renderHeadIntroHtml():"")+""; +},renderHeadDateCellsHtml:function(){var t,e,n=[];for(t=0;t1?' colspan="'+e+'"':"")+(n?" "+n:"")+">"+i.buildGotoAnchorHtml({date:t,forceOff:this.rowCnt>1||1===this.colCnt},tt(t.format(this.colHeadFormat)))+""},renderBgTrHtml:function(t){return""+(this.isRTL?"":this.renderBgIntroHtml(t))+this.renderBgCellsHtml(t)+(this.isRTL?this.renderBgIntroHtml(t):"")+""},renderBgIntroHtml:function(t){return this.renderIntroHtml()},renderBgCellsHtml:function(t){var e,n,i=[];for(e=0;e"},renderIntroHtml:function(){},bookendCells:function(t){var e=this.renderIntroHtml();e&&(this.isRTL?t.append(e):t.prepend(e))}},ve=jt.DayGrid=ge.extend(pe,{numbersVisible:!1,bottomCoordPadding:0,rowEls:null,cellEls:null,helperEls:null,rowCoordCache:null,colCoordCache:null,renderDates:function(t){var e,n,i=this.view,r=this.rowCnt,s=this.colCnt,o="";for(e=0;e
    '+this.renderBgTrHtml(t)+'
    '+(this.numbersVisible?""+this.renderNumberTrHtml(t)+"":"")+"
    "},renderNumberTrHtml:function(t){return""+(this.isRTL?"":this.renderNumberIntroHtml(t))+this.renderNumberCellsHtml(t)+(this.isRTL?this.renderNumberIntroHtml(t):"")+""},renderNumberIntroHtml:function(t){return this.renderIntroHtml()},renderNumberCellsHtml:function(t){var e,n,i=[];for(e=0;e',this.view.cellWeekNumbersVisible&&t.day()==n&&(i+=this.view.buildGotoAnchorHtml({date:t,type:"week"},{class:"fc-week-number"},t.format("w"))),this.view.dayNumbersVisible&&(i+=this.view.buildGotoAnchorHtml(t,{class:"fc-day-number"},t.date())),i+=""):""},computeEventTimeFormat:function(){return this.view.opt("extraSmallTimeFormat")},computeDisplayEventEnd:function(){return 1==this.colCnt},rangeUpdated:function(){this.updateDayTable()},spanToSegs:function(t){var e,n,i=this.sliceRangeByRow(t);for(e=0;e');o=n&&n.row===e?n.el.position().top:l.find(".fc-content-skeleton tbody").position().top,a.css("top",o).find("table").append(i[e].tbodyEl),l.append(a),r.push(a[0])}),this.helperEls=t(r)},unrenderHelper:function(){this.helperEls&&(this.helperEls.remove(),this.helperEls=null)},fillSegTag:"td",renderFill:function(e,n,i){var r,s,o,l=[];for(n=this.renderFillSegEls(e,n),r=0;r
    '),s=r.find("tr"),l>0&&s.append(''),s.append(n.el.attr("colspan",a-l)),a'),this.bookendCells(s),r}});ve.mixin({rowStructs:null,unrenderEvents:function(){this.removeSegPopover(),ge.prototype.unrenderEvents.apply(this,arguments)},getEventSegs:function(){return ge.prototype.getEventSegs.call(this).concat(this.popoverSegs||[])},renderBgSegs:function(e){var n=t.grep(e,function(t){return t.event.allDay});return ge.prototype.renderBgSegs.call(this,n)},renderFgSegs:function(e){var n;return e=this.renderFgSegEls(e),n=this.rowStructs=this.renderSegRows(e),this.rowEls.each(function(e,i){t(i).find(".fc-content-skeleton > table").append(n[e].tbodyEl)}),e},unrenderFgSegs:function(){for(var t,e=this.rowStructs||[];t=e.pop();)t.tbodyEl.remove();this.rowStructs=null},renderSegRows:function(t){var e,n,i=[];for(e=this.groupSegRows(t),n=0;n'+tt(n)+"")),i=''+(tt(s.title||"")||" ")+"",'
    '+(this.isRTL?i+" "+d:d+" "+i)+"
    "+(l?'
    ':"")+(a?'
    ':"")+""},renderSegRow:function(e,n){function i(e){for(;o"),l.append(c)),v[r][o]=c,m[r][o]=c,o++}var r,s,o,l,a,u,c,d=this.colCnt,h=this.buildSegLevels(n),f=Math.max(1,h.length),g=t(""),p=[],v=[],m=[];for(r=0;r"),p.push([]),v.push([]),m.push([]),s)for(a=0;a').append(u.el),u.leftCol!=u.rightCol?c.attr("colspan",u.rightCol-u.leftCol+1):m[r][o]=c;o<=u.rightCol;)v[r][o]=c,p[r][o]=u,o++;l.append(c)}i(d),this.bookendCells(l),g.append(l)}return{row:e,tbodyEl:g,cellMatrix:v,segMatrix:p,segLevels:h,segs:n}},buildSegLevels:function(t){var e,n,i,r=[];for(this.sortEventSegs(t),e=0;e td > :first-child").each(n),r.position().top+s>l)return i;return!1},limitRow:function(e,n){function i(i){for(;b").append(y),h.append(m),E.push(m[0])),b++}var r,s,o,l,a,u,c,d,h,f,g,p,v,m,y,S=this,w=this.rowStructs[e],E=[],b=0;if(n&&n').attr("rowspan",f),u=d[p],y=this.renderMoreLink(e,a.leftCol+p,[a].concat(u)),m=t("
    ").append(y),v.append(m),g.push(v[0]),E.push(v[0]);h.addClass("fc-limited").after(t(g)),o.push(h[0])}}i(this.colCnt),w.moreEls=t(E),w.limitedEls=t(o)}},unlimitRow:function(t){var e=this.rowStructs[t];e.moreEls&&(e.moreEls.remove(),e.moreEls=null),e.limitedEls&&(e.limitedEls.removeClass("fc-limited"),e.limitedEls=null)},renderMoreLink:function(e,n,i){var r=this,s=this.view;return t('').text(this.getMoreLinkText(i.length)).on("click",function(o){var l=s.opt("eventLimitClick"),a=r.getCellDate(e,n),u=t(this),c=r.getCellEl(e,n),d=r.getCellSegs(e,n),h=r.resliceDaySegs(d,a),f=r.resliceDaySegs(i,a);"function"==typeof l&&(l=s.trigger("eventLimitClick",null,{date:a,dayEl:c,moreEl:u,segs:h,hiddenSegs:f},o)),"popover"===l?r.showSegPopover(e,n,u,h):"string"==typeof l&&s.calendar.zoomTo(a,l)})},showSegPopover:function(t,e,n,i){var r,s,o=this,l=this.view,a=n.parent();r=1==this.rowCnt?l.el:this.rowEls.eq(t),s={className:"fc-more-popover",content:this.renderSegPopoverContent(t,e,i),parentEl:this.view.el,top:r.offset().top,autoHide:!0,viewportConstrain:l.opt("popoverViewportConstrain"),hide:function(){o.segPopover.removeElement(),o.segPopover=null,o.popoverSegs=null}},this.isRTL?s.right=a.offset().left+a.outerWidth()+1:s.left=a.offset().left-1,this.segPopover=new ue(s),this.segPopover.show(),this.bindSegHandlersToEl(this.segPopover.el)},renderSegPopoverContent:function(e,n,i){var r,s=this.view,o=s.opt("theme"),l=this.getCellDate(e,n).format(s.opt("dayPopoverFormat")),a=t('
    '+tt(l)+'
    '),u=a.find(".fc-event-container");for(i=this.renderFgSegEls(i,!0),this.popoverSegs=i,r=0;r'+this.renderBgTrHtml(0)+'
    '+this.renderSlatRowHtml()+"
    "},renderSlatRowHtml:function(){for(var t,n,i,r=this.view,s=this.isRTL,o="",l=e.duration(+this.minTime);l"+(n?""+tt(t.format(this.labelFormat))+"":"")+"",o+='"+(s?"":i)+''+(s?i:"")+"",l.add(this.slotDuration);return o},processOptions:function(){var n,i=this.view,r=i.opt("slotDuration"),s=i.opt("snapDuration");r=e.duration(r),s=s?e.duration(s):r,this.slotDuration=r,this.snapDuration=s,this.snapsPerSlot=r/s,this.minResizeDuration=s,this.minTime=e.duration(i.opt("minTime")),this.maxTime=e.duration(i.opt("maxTime")),n=i.opt("slotLabelFormat"),t.isArray(n)&&(n=n[n.length-1]),this.labelFormat=n||i.opt("smallTimeFormat"),n=i.opt("slotLabelInterval"),this.labelInterval=n?e.duration(n):this.computeLabelInterval(r)},computeLabelInterval:function(t){var n,i,r;for(n=Fe.length-1;n>=0;n--)if(i=e.duration(Fe[n]),r=_(i,t),ot(r)&&r>1)return i;return e.duration(t)},computeEventTimeFormat:function(){return this.view.opt("noMeridiemTimeFormat")},computeDisplayEventEnd:function(){return!0},prepareHits:function(){this.colCoordCache.build(),this.slatCoordCache.build()},releaseHits:function(){this.colCoordCache.clear()},queryHit:function(t,e){var n=this.snapsPerSlot,i=this.colCoordCache,r=this.slatCoordCache;if(i.isLeftInBounds(t)&&r.isTopInBounds(e)){var s=i.getHorizontalIndex(t),o=r.getVerticalIndex(e);if(null!=s&&null!=o){var l=r.getTopOffset(o),a=r.getHeight(o),u=(e-l)/a,c=Math.floor(u*n),d=o*n+c,h=l+c/n*a,f=l+(c+1)/n*a;return{col:s,snap:d,component:this,left:i.getLeftOffset(s),right:i.getRightOffset(s),top:h,bottom:f}}}},getHitSpan:function(t){var e,n=this.getCellDate(0,t.col),i=this.computeSnapTime(t.snap);return n.time(i),e=n.clone().add(this.snapDuration),{start:n,end:e}},getHitEl:function(t){return this.colEls.eq(t.col)},rangeUpdated:function(){this.updateDayTable()},computeSnapTime:function(t){return e.duration(this.minTime+this.snapDuration*t)},spanToSegs:function(t){var e,n=this.sliceRangeByTimes(t);for(e=0;e
    ').css("top",r).appendTo(this.colContainerEls.eq(i[n].col))[0]);i.length>0&&s.push(t('
    ').css("top",r).appendTo(this.el.find(".fc-content-skeleton"))[0]),this.nowIndicatorEls=t(s)},unrenderNowIndicator:function(){this.nowIndicatorEls&&(this.nowIndicatorEls.remove(),this.nowIndicatorEls=null)},renderSelection:function(t){this.view.opt("selectHelper")?this.renderEventLocationHelper(t):this.renderHighlight(t)},unrenderSelection:function(){this.unrenderHelper(),this.unrenderHighlight()},renderHighlight:function(t){this.renderHighlightSegs(this.spanToSegs(t))},unrenderHighlight:function(){this.unrenderHighlightSegs()}});me.mixin({colContainerEls:null,fgContainerEls:null,bgContainerEls:null,helperContainerEls:null,highlightContainerEls:null,businessContainerEls:null,fgSegs:null,bgSegs:null,helperSegs:null,highlightSegs:null,businessSegs:null,renderContentSkeleton:function(){var e,n,i="";for(e=0;e
    ';n=t('
    '+i+"
    "),this.colContainerEls=n.find(".fc-content-col"),this.helperContainerEls=n.find(".fc-helper-container"),this.fgContainerEls=n.find(".fc-event-container:not(.fc-helper-container)"),this.bgContainerEls=n.find(".fc-bgevent-container"),this.highlightContainerEls=n.find(".fc-highlight-container"),this.businessContainerEls=n.find(".fc-business-container"),this.bookendCells(n.find("tr")),this.el.append(n)},renderFgSegs:function(t){return t=this.renderFgSegsIntoContainers(t,this.fgContainerEls),this.fgSegs=t,t},unrenderFgSegs:function(){this.unrenderNamedSegs("fgSegs")},renderHelperSegs:function(e,n){var i,r,s,o=[];for(e=this.renderFgSegsIntoContainers(e,this.helperContainerEls),i=0;i
    '+(n?'
    '+tt(n)+"
    ":"")+(o.title?'
    '+tt(o.title)+"
    ":"")+'
    '+(u?'
    ':"")+""},updateSegVerticals:function(t){this.computeSegVerticals(t),this.assignSegVerticals(t)},computeSegVerticals:function(t){var e,n;for(e=0;e1?"ll":"LL"},formatRange:function(t,e,n){var i=t.end;return i.hasTime()||(i=i.clone().subtract(1)),pt(t.start,i,e,n,this.opt("isRTL"))},getAllDayHtml:function(){return this.opt("allDayHtml")||tt(this.opt("allDayText"))},buildGotoAnchorHtml:function(e,n,i){var r,s,o,l;return t.isPlainObject(e)?(r=e.date,s=e.type,o=e.forceOff):r=e,r=jt.moment(r),l={date:r.format("YYYY-MM-DD"),type:s||"day"},"string"==typeof n&&(i=n,n=null),n=n?" "+it(n):"",i=i||"",!o&&this.opt("navLinks")?"'+i+"":""+i+""},setElement:function(t){this.el=t,this.bindGlobalHandlers()},removeElement:function(){this.clear(),this.isSkeletonRendered&&(this.unrenderSkeleton(),this.isSkeletonRendered=!1),this.unbindGlobalHandlers(),this.el.remove()},display:function(t,e){var n=this,i=null;return null!=e&&this.displaying&&(i=this.queryScroll()),this.calendar.freezeContentHeight(),ut(this.clear(),function(){return n.displaying=ut(n.displayView(t),function(){null!=e?n.setScroll(e):n.forceScroll(n.computeInitialScroll(i)),n.calendar.unfreezeContentHeight(),n.triggerRender()})})},clear:function(){var e=this,n=this.displaying;return n?ut(n,function(){return e.displaying=null,e.clearEvents(),e.clearView()}):t.when()},displayView:function(t){this.isSkeletonRendered||(this.renderSkeleton(),this.isSkeletonRendered=!0),t&&this.setDate(t),this.render&&this.render(),this.renderDates(),this.updateSize(),this.renderBusinessHours(),this.startNowIndicator()},clearView:function(){this.unselect(),this.stopNowIndicator(),this.triggerUnrender(),this.unrenderBusinessHours(),this.unrenderDates(),this.destroy&&this.destroy()},renderSkeleton:function(){},unrenderSkeleton:function(){},renderDates:function(){},unrenderDates:function(){},triggerRender:function(){this.trigger("viewRender",this,this,this.el)},triggerUnrender:function(){this.trigger("viewDestroy",this,this,this.el)},bindGlobalHandlers:function(){this.listenTo(t(document),"mousedown",this.handleDocumentMousedown),this.listenTo(t(document),"touchstart",this.processUnselect)},unbindGlobalHandlers:function(){this.stopListeningTo(t(document))},initThemingProps:function(){var t=this.opt("theme")?"ui":"fc";this.widgetHeaderClass=t+"-widget-header",this.widgetContentClass=t+"-widget-content",this.highlightStateClass=t+"-state-highlight"},renderBusinessHours:function(){},unrenderBusinessHours:function(){},startNowIndicator:function(){var t,n,i,r=this;this.opt("nowIndicator")&&(t=this.getNowIndicatorUnit(),t&&(n=lt(this,"updateNowIndicator"),this.initialNowDate=this.calendar.getNow(),this.initialNowQueriedMs=+new Date,this.renderNowIndicator(this.initialNowDate),this.isNowIndicatorRendered=!0,i=this.initialNowDate.clone().startOf(t).add(1,t)-this.initialNowDate,this.nowIndicatorTimeoutID=setTimeout(function(){r.nowIndicatorTimeoutID=null,n(),i=+e.duration(1,t),i=Math.max(100,i),r.nowIndicatorIntervalID=setInterval(n,i)},i)))},updateNowIndicator:function(){this.isNowIndicatorRendered&&(this.unrenderNowIndicator(),this.renderNowIndicator(this.initialNowDate.clone().add(new Date-this.initialNowQueriedMs)))},stopNowIndicator:function(){this.isNowIndicatorRendered&&(this.nowIndicatorTimeoutID&&(clearTimeout(this.nowIndicatorTimeoutID),this.nowIndicatorTimeoutID=null),this.nowIndicatorIntervalID&&(clearTimeout(this.nowIndicatorIntervalID),this.nowIndicatorIntervalID=null),this.unrenderNowIndicator(),this.isNowIndicatorRendered=!1)},getNowIndicatorUnit:function(){},renderNowIndicator:function(t){},unrenderNowIndicator:function(){},updateSize:function(t){var e;t&&(e=this.queryScroll()),this.updateHeight(t),this.updateWidth(t),this.updateNowIndicator(),t&&this.setScroll(e)},updateWidth:function(t){},updateHeight:function(t){var e=this.calendar;this.setHeight(e.getSuggestedViewHeight(),e.isHeightAuto())},setHeight:function(t,e){},computeInitialScroll:function(t){return 0},queryScroll:function(){},setScroll:function(t){},forceScroll:function(t){var e=this;this.setScroll(t),setTimeout(function(){e.setScroll(t)},0)},displayEvents:function(t){var e=this.queryScroll();this.clearEvents(),this.renderEvents(t),this.isEventsRendered=!0,this.setScroll(e),this.triggerEventRender()},clearEvents:function(){var t;this.isEventsRendered&&(t=this.queryScroll(),this.triggerEventUnrender(),this.destroyEvents&&this.destroyEvents(),this.unrenderEvents(),this.setScroll(t),this.isEventsRendered=!1)},renderEvents:function(t){},unrenderEvents:function(){},triggerEventRender:function(){this.renderedEventSegEach(function(t){this.trigger("eventAfterRender",t.event,t.event,t.el)}),this.trigger("eventAfterAllRender")},triggerEventUnrender:function(){this.renderedEventSegEach(function(t){this.trigger("eventDestroy",t.event,t.event,t.el)})},resolveEventEl:function(e,n){var i=this.trigger("eventRender",e,e,n);return i===!1?n=null:i&&i!==!0&&(n=t(i)),n},showEvent:function(t){this.renderedEventSegEach(function(t){t.el.css("visibility","")},t)},hideEvent:function(t){this.renderedEventSegEach(function(t){t.el.css("visibility","hidden")},t)},renderedEventSegEach:function(t,e){var n,i=this.getEventSegs();for(n=0;n=this.nextDayThreshold&&r.add(1,"days")),(!i||r<=n)&&(r=n.clone().add(1,"days")),{start:n,end:r}},isMultiDayEvent:function(t){var e=this.computeDayRange(t);return e.end.diff(e.start,"days")>1}}),Se=jt.Scroller=wt.extend({el:null,scrollEl:null,overflowX:null,overflowY:null,constructor:function(t){t=t||{},this.overflowX=t.overflowX||t.overflow||"auto",this.overflowY=t.overflowY||t.overflow||"auto"},render:function(){this.el=this.renderEl(),this.applyOverflow()},renderEl:function(){return this.scrollEl=t('
    ')},clear:function(){this.setHeight("auto"),this.applyOverflow()},destroy:function(){this.el.remove()},applyOverflow:function(){this.scrollEl.css({"overflow-x":this.overflowX,"overflow-y":this.overflowY})},lockOverflow:function(t){var e=this.overflowX,n=this.overflowY;t=t||this.getScrollbarWidths(),"auto"===e&&(e=t.top||t.bottom||this.scrollEl[0].scrollWidth-1>this.scrollEl[0].clientWidth?"scroll":"hidden"),"auto"===n&&(n=t.left||t.right||this.scrollEl[0].scrollHeight-1>this.scrollEl[0].clientHeight?"scroll":"hidden"),this.scrollEl.css({"overflow-x":e,"overflow-y":n})},setHeight:function(t){this.scrollEl.height(t)},getScrollTop:function(){return this.scrollEl.scrollTop()},setScrollTop:function(t){this.scrollEl.scrollTop(t)},getClientWidth:function(){return this.scrollEl[0].clientWidth},getClientHeight:function(){return this.scrollEl[0].clientHeight},getScrollbarWidths:function(){return p(this.scrollEl)}}),we=jt.Calendar=wt.extend({dirDefaults:null,localeDefaults:null,overrides:null,dynamicOverrides:null,options:null,viewSpecCache:null,view:null,header:null,loadingLevel:0,constructor:At,initialize:function(){},populateOptionsHash:function(){var t,e,i,r;t=J(this.dynamicOverrides.locale,this.overrides.locale),e=Ee[t],e||(t=we.defaults.locale,e=Ee[t]||{}),i=J(this.dynamicOverrides.isRTL,this.overrides.isRTL,e.isRTL,we.defaults.isRTL),r=i?we.rtlDefaults:{},this.dirDefaults=r,this.localeDefaults=e,this.options=n([we.defaults,r,e,this.overrides,this.dynamicOverrides]),Vt(this.options)},getViewSpec:function(t){var e=this.viewSpecCache;return e[t]||(e[t]=this.buildViewSpec(t))},getUnitViewSpec:function(e){var n,i,r;if(t.inArray(e,Xt)!=-1)for(n=this.header.getViewsWithButtons(),t.each(jt.views,function(t){n.push(t)}),i=0;i=n&&e.end<=i},we.prototype.getPeerEvents=function(t,e){var n,i,r=this.getEventCache(),s=[];for(n=0;nn};var xe={id:"_fcBusinessHours",start:"09:00",end:"17:00",dow:[1,2,3,4,5],rendering:"inverse-background"};we.prototype.getCurrentBusinessHourEvents=function(t){return this.computeBusinessHourEvents(t,this.options.businessHours)},we.prototype.computeBusinessHourEvents=function(e,n){return n===!0?this.expandBusinessHourEvents(e,[{}]):t.isPlainObject(n)?this.expandBusinessHourEvents(e,[n]):t.isArray(n)?this.expandBusinessHourEvents(e,n,!0):[]},we.prototype.expandBusinessHourEvents=function(e,n,i){var r,s,o=this.getView(),l=[];for(r=0;r1,this.opt("weekNumbers")&&(this.opt("weekNumbersWithinDays")?(this.cellWeekNumbersVisible=!0,this.colWeekNumbersVisible=!1):(this.cellWeekNumbersVisible=!1,this.colWeekNumbersVisible=!0)),this.dayGrid.numbersVisible=this.dayNumbersVisible||this.cellWeekNumbersVisible||this.colWeekNumbersVisible,this.el.addClass("fc-basic-view").html(this.renderSkeletonHtml()),this.renderHead(),this.scroller.render();var e=this.scroller.el.addClass("fc-day-grid-container"),n=t('
    ').appendTo(e);this.el.find(".fc-body > tr > td").append(e),this.dayGrid.setElement(n),this.dayGrid.renderDates(this.hasRigidRows())},renderHead:function(){this.headContainerEl=this.el.find(".fc-head-container").html(this.dayGrid.renderHeadHtml()),this.headRowEl=this.headContainerEl.find(".fc-row")},unrenderDates:function(){this.dayGrid.unrenderDates(),this.dayGrid.removeElement(),this.scroller.destroy()},renderBusinessHours:function(){this.dayGrid.renderBusinessHours()},unrenderBusinessHours:function(){this.dayGrid.unrenderBusinessHours()},renderSkeletonHtml:function(){return'
    '},weekNumberStyleAttr:function(){return null!==this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},hasRigidRows:function(){var t=this.opt("eventLimit");return t&&"number"!=typeof t},updateWidth:function(){this.colWeekNumbersVisible&&(this.weekNumberWidth=u(this.el.find(".fc-week-number")))},setHeight:function(t,e){var n,s,o=this.opt("eventLimit");this.scroller.clear(),r(this.headRowEl),this.dayGrid.removeSegPopover(),o&&"number"==typeof o&&this.dayGrid.limitRows(o),n=this.computeScrollerHeight(t),this.setGridHeight(n,e),o&&"number"!=typeof o&&this.dayGrid.limitRows(o),e||(this.scroller.setHeight(n),s=this.scroller.getScrollbarWidths(),(s.left||s.right)&&(i(this.headRowEl,s),n=this.computeScrollerHeight(t),this.scroller.setHeight(n)),this.scroller.lockOverflow(s))},computeScrollerHeight:function(t){return t-c(this.el,this.scroller.el)},setGridHeight:function(t,e){e?a(this.dayGrid.rowEls):l(this.dayGrid.rowEls,t,!0)},queryScroll:function(){return this.scroller.getScrollTop()},setScroll:function(t){this.scroller.setScrollTop(t)},prepareHits:function(){this.dayGrid.prepareHits()},releaseHits:function(){this.dayGrid.releaseHits()},queryHit:function(t,e){return this.dayGrid.queryHit(t,e)},getHitSpan:function(t){return this.dayGrid.getHitSpan(t)},getHitEl:function(t){return this.dayGrid.getHitEl(t)},renderEvents:function(t){this.dayGrid.renderEvents(t),this.updateHeight()},getEventSegs:function(){return this.dayGrid.getEventSegs()},unrenderEvents:function(){this.dayGrid.unrenderEvents()},renderDrag:function(t,e){return this.dayGrid.renderDrag(t,e)},unrenderDrag:function(){this.dayGrid.unrenderDrag()},renderSelection:function(t){this.dayGrid.renderSelection(t)},unrenderSelection:function(){this.dayGrid.unrenderSelection()}}),Ie={renderHeadIntroHtml:function(){var t=this.view;return t.colWeekNumbersVisible?'"+tt(t.opt("weekNumberTitle"))+"":""},renderNumberIntroHtml:function(t){var e=this.view,n=this.getCellDate(t,0);return e.colWeekNumbersVisible?'"+e.buildGotoAnchorHtml({date:n,type:"week",forceOff:1===this.colCnt},n.format("w"))+"":""},renderBgIntroHtml:function(){var t=this.view;return t.colWeekNumbersVisible?'":""},renderIntroHtml:function(){var t=this.view;return t.colWeekNumbersVisible?'":""}},ke=jt.MonthView=Re.extend({computeRange:function(t){var e,n=Re.prototype.computeRange.call(this,t);return this.isFixedWeeks()&&(e=Math.ceil(n.end.diff(n.start,"weeks",!0)),n.end.add(6-e,"weeks")),n},setGridHeight:function(t,e){e&&(t*=this.rowCnt/6),l(this.dayGrid.rowEls,t,!e)},isFixedWeeks:function(){return this.opt("fixedWeekCount")}});Ut.basic={class:Re},Ut.basicDay={type:"basic",duration:{days:1}},Ut.basicWeek={type:"basic",duration:{weeks:1}},Ut.month={class:ke,duration:{months:1},defaults:{fixedWeekCount:!0}};var Le=jt.AgendaView=ye.extend({scroller:null,timeGridClass:me,timeGrid:null,dayGridClass:ve,dayGrid:null,axisWidth:null,headContainerEl:null,noScrollRowEls:null,bottomRuleEl:null,initialize:function(){this.timeGrid=this.instantiateTimeGrid(),this.opt("allDaySlot")&&(this.dayGrid=this.instantiateDayGrid()),this.scroller=new Se({overflowX:"hidden",overflowY:"auto"})},instantiateTimeGrid:function(){var t=this.timeGridClass.extend(Me);return new t(this)},instantiateDayGrid:function(){var t=this.dayGridClass.extend(ze);return new t(this)},setRange:function(t){ye.prototype.setRange.call(this,t),this.timeGrid.setRange(t),this.dayGrid&&this.dayGrid.setRange(t)},renderDates:function(){this.el.addClass("fc-agenda-view").html(this.renderSkeletonHtml()),this.renderHead(),this.scroller.render();var e=this.scroller.el.addClass("fc-time-grid-container"),n=t('
    ').appendTo(e);this.el.find(".fc-body > tr > td").append(e),this.timeGrid.setElement(n),this.timeGrid.renderDates(),this.bottomRuleEl=t('
    ').appendTo(this.timeGrid.el),this.dayGrid&&(this.dayGrid.setElement(this.el.find(".fc-day-grid")),this.dayGrid.renderDates(),this.dayGrid.bottomCoordPadding=this.dayGrid.el.next("hr").outerHeight()),this.noScrollRowEls=this.el.find(".fc-row:not(.fc-scroller *)")},renderHead:function(){this.headContainerEl=this.el.find(".fc-head-container").html(this.timeGrid.renderHeadHtml())},unrenderDates:function(){this.timeGrid.unrenderDates(),this.timeGrid.removeElement(),this.dayGrid&&(this.dayGrid.unrenderDates(),this.dayGrid.removeElement()),this.scroller.destroy()},renderSkeletonHtml:function(){return'
    '+(this.dayGrid?'

    ':"")+"
    "},axisStyleAttr:function(){return null!==this.axisWidth?'style="width:'+this.axisWidth+'px"':""},renderBusinessHours:function(){this.timeGrid.renderBusinessHours(),this.dayGrid&&this.dayGrid.renderBusinessHours()},unrenderBusinessHours:function(){this.timeGrid.unrenderBusinessHours(),this.dayGrid&&this.dayGrid.unrenderBusinessHours()},getNowIndicatorUnit:function(){return this.timeGrid.getNowIndicatorUnit()},renderNowIndicator:function(t){this.timeGrid.renderNowIndicator(t)},unrenderNowIndicator:function(){this.timeGrid.unrenderNowIndicator()},updateSize:function(t){this.timeGrid.updateSize(t),ye.prototype.updateSize.call(this,t)},updateWidth:function(){this.axisWidth=u(this.el.find(".fc-axis"))},setHeight:function(t,e){var n,s,o;this.bottomRuleEl.hide(),this.scroller.clear(),r(this.noScrollRowEls),this.dayGrid&&(this.dayGrid.removeSegPopover(),n=this.opt("eventLimit"),n&&"number"!=typeof n&&(n=Be),n&&this.dayGrid.limitRows(n)),e||(s=this.computeScrollerHeight(t),this.scroller.setHeight(s),o=this.scroller.getScrollbarWidths(),(o.left||o.right)&&(i(this.noScrollRowEls,o),s=this.computeScrollerHeight(t),this.scroller.setHeight(s)),this.scroller.lockOverflow(o),this.timeGrid.getTotalSlatHeight()"+e.buildGotoAnchorHtml({date:this.start,type:"week",forceOff:this.colCnt>1},tt(t))+""):'"},renderBgIntroHtml:function(){var t=this.view;return'"},renderIntroHtml:function(){var t=this.view;return'"}},ze={renderBgIntroHtml:function(){var t=this.view;return'"+t.getAllDayHtml()+""},renderIntroHtml:function(){var t=this.view;return'"}},Be=5,Fe=[{hours:1},{minutes:30},{minutes:15},{seconds:30},{seconds:15}];Ut.agenda={class:Le,defaults:{allDaySlot:!0,slotDuration:"00:30:00",minTime:"00:00:00",maxTime:"24:00:00",slotEventOverlap:!0}},Ut.agendaDay={type:"agenda",duration:{days:1}},Ut.agendaWeek={type:"agenda",duration:{weeks:1}};var Ne=ye.extend({grid:null,scroller:null,initialize:function(){this.grid=new Ge(this),this.scroller=new Se({overflowX:"hidden",overflowY:"auto"})},setRange:function(t){ye.prototype.setRange.call(this,t),this.grid.setRange(t)},renderSkeleton:function(){this.el.addClass("fc-list-view "+this.widgetContentClass),this.scroller.render(),this.scroller.el.appendTo(this.el),this.grid.setElement(this.scroller.scrollEl)},unrenderSkeleton:function(){this.scroller.destroy()},setHeight:function(t,e){this.scroller.setHeight(this.computeScrollerHeight(t))},computeScrollerHeight:function(t){return t-c(this.el,this.scroller.el)},renderEvents:function(t){this.grid.renderEvents(t)},unrenderEvents:function(){this.grid.unrenderEvents()},isEventResizable:function(t){return!1},isEventDraggable:function(t){return!1}}),Ge=ge.extend({segSelector:".fc-list-item",hasDayInteractions:!1,spanToSegs:function(t){for(var e,n,i=this.view,r=i.start.clone(),s=[];r
    '+tt(this.view.opt("noEventsMessage"))+"
    ")},renderSegList:function(e){var n,i,r,s=t('
    '),o=s.find("tbody");for(this.sortEventSegs(e),n=0;n'+(n?e.buildGotoAnchorHtml(t,{class:"fc-list-heading-main"},tt(t.format(n))):"")+(i?e.buildGotoAnchorHtml(t,{class:"fc-list-heading-alt"},tt(t.format(i))):"")+""},fgSegHtml:function(t){var e,n=this.view,i=["fc-list-item"].concat(this.getSegCustomClasses(t)),r=this.getSegBackgroundColor(t),s=t.event,o=s.url;return t.start.hasTime()?e=tt(this.getEventTimeText(s)):this.displayEventTime&&(e=n.getAllDayHtml()),o&&i.push("fc-has-url"),''+(e?''+e+"":"")+'"+tt(t.event.title)+""}});return Ut.list={class:Ne,buttonTextKey:"list",defaults:{buttonText:"list",listTime:!0,listDayFormat:"LL",noEventsMessage:"No events to display"}},Ut.listDay={type:"list",duration:{days:1},defaults:{listDayFormat:"dddd"}},Ut.listWeek={type:"list",duration:{weeks:1},defaults:{listDayFormat:"dddd",listDayAltFormat:"LL"}},Ut.listMonth={type:"list",duration:{month:1},defaults:{listDayAltFormat:"dddd"}},Ut.listYear={type:"list",duration:{year:1},defaults:{listDayAltFormat:"dddd"}},jt}); \ No newline at end of file diff --git a/library/fullcalendar/fullcalendar.print.css b/library/fullcalendar/fullcalendar.print.css index 83d11563b..c420097ca 100644 --- a/library/fullcalendar/fullcalendar.print.css +++ b/library/fullcalendar/fullcalendar.print.css @@ -1,5 +1,5 @@ /*! - * FullCalendar v2.8.0 Print Stylesheet + * FullCalendar v3.0.0 Print Stylesheet * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw */ diff --git a/library/fullcalendar/gcal.js b/library/fullcalendar/gcal.js index 1d6b91c5b..ff9748e4c 100644 --- a/library/fullcalendar/gcal.js +++ b/library/fullcalendar/gcal.js @@ -1,5 +1,5 @@ /*! - * FullCalendar v2.8.0 Google Calendar Plugin + * FullCalendar v3.0.0 Google Calendar Plugin * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw */ diff --git a/library/fullcalendar/lang-all.js b/library/fullcalendar/lang-all.js deleted file mode 100644 index dc7577063..000000000 --- a/library/fullcalendar/lang-all.js +++ /dev/null @@ -1,4 +0,0 @@ -!function(a){"function"==typeof define&&define.amd?define(["jquery","moment"],a):"object"==typeof exports?module.exports=a(require("jquery"),require("moment")):a(jQuery,moment)}(function(a,b){!function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"ar-ma",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:6,doy:12}});return a}(),a.fullCalendar.datepickerLang("ar-ma","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("ar-ma",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})}(),function(){!function(){"use strict";var a={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},c={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},d=(b.defineLocale||b.lang).call(b,"ar-sa",{months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(a){return"م"===a},meridiem:function(a,b,c){return 12>a?"ص":"م"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},preparse:function(a){return a.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(a){return c[a]}).replace(/،/g,",")},postformat:function(b){return b.replace(/\d/g,function(b){return a[b]}).replace(/,/g,"،")},week:{dow:6,doy:12}});return d}(),a.fullCalendar.datepickerLang("ar-sa","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("ar-sa",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"ar-tn",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("ar-tn","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("ar-tn",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})}(),function(){!function(){"use strict";var a={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},c={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},d=function(a){return 0===a?0:1===a?1:2===a?2:a%100>=3&&10>=a%100?3:a%100>=11?4:5},e={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},f=function(a){return function(b,c,f,g){var h=d(b),i=e[a][d(b)];return 2===h&&(i=i[c?0:1]),i.replace(/%d/i,b)}},g=["كانون الثاني يناير","شباط فبراير","آذار مارس","نيسان أبريل","أيار مايو","حزيران يونيو","تموز يوليو","آب أغسطس","أيلول سبتمبر","تشرين الأول أكتوبر","تشرين الثاني نوفمبر","كانون الأول ديسمبر"],h=(b.defineLocale||b.lang).call(b,"ar",{months:g,monthsShort:g,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(a){return"م"===a},meridiem:function(a,b,c){return 12>a?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:f("s"),m:f("m"),mm:f("m"),h:f("h"),hh:f("h"),d:f("d"),dd:f("d"),M:f("M"),MM:f("M"),y:f("y"),yy:f("y")},preparse:function(a){return a.replace(/\u200f/g,"").replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(a){return c[a]}).replace(/،/g,",")},postformat:function(b){return b.replace(/\d/g,function(b){return a[b]}).replace(/,/g,"،")},week:{dow:6,doy:12}});return h}(),a.fullCalendar.datepickerLang("ar","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("ar",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[В изминалата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[В изминалия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дни",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},ordinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(a){var b=a%10,c=a%100;return 0===a?a+"-ев":0===c?a+"-ен":c>10&&20>c?a+"-ти":1===b?a+"-ви":2===b?a+"-ри":7===b||8===b?a+"-ми":a+"-ти"},week:{dow:1,doy:7}});return a}(),a.fullCalendar.datepickerLang("bg","bg",{closeText:"затвори",prevText:"<назад",nextText:"напред>",nextBigText:">>",currentText:"днес",monthNames:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Яну","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Нов","Дек"],dayNames:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],dayNamesShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Съ"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("bg",{buttonText:{month:"Месец",week:"Седмица",day:"Ден",list:"График"},allDayText:"Цял ден",eventLimitText:function(a){return"+още "+a}})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"ca",{months:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),monthsShort:"gen._febr._mar._abr._mai._jun._jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"Dg_Dl_Dt_Dc_Dj_Dv_Ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd D MMMM YYYY H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demà a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"fa %s",s:"uns segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},ordinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(a,b){var c=1===a?"r":2===a?"n":3===a?"r":4===a?"t":"è";return"w"!==b&&"W"!==b||(c="a"),a+c},week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("ca","ca",{closeText:"Tanca",prevText:"Anterior",nextText:"Següent",currentText:"Avui",monthNames:["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"],monthNamesShort:["gen","feb","març","abr","maig","juny","jul","ag","set","oct","nov","des"],dayNames:["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],dayNamesShort:["dg","dl","dt","dc","dj","dv","ds"],dayNamesMin:["dg","dl","dt","dc","dj","dv","ds"],weekHeader:"Set",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("ca",{buttonText:{month:"Mes",week:"Setmana",day:"Dia",list:"Agenda"},allDayText:"Tot el dia",eventLimitText:"més"})}(),function(){!function(){"use strict";function a(a){return a>1&&5>a&&1!==~~(a/10)}function c(b,c,d,e){var f=b+" ";switch(d){case"s":return c||e?"pár sekund":"pár sekundami";case"m":return c?"minuta":e?"minutu":"minutou";case"mm":return c||e?f+(a(b)?"minuty":"minut"):f+"minutami";case"h":return c?"hodina":e?"hodinu":"hodinou";case"hh":return c||e?f+(a(b)?"hodiny":"hodin"):f+"hodinami";case"d":return c||e?"den":"dnem";case"dd":return c||e?f+(a(b)?"dny":"dní"):f+"dny";case"M":return c||e?"měsíc":"měsícem";case"MM":return c||e?f+(a(b)?"měsíce":"měsíců"):f+"měsíci";case"y":return c||e?"rok":"rokem";case"yy":return c||e?f+(a(b)?"roky":"let"):f+"lety"}}var d="leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec".split("_"),e="led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro".split("_"),f=(b.defineLocale||b.lang).call(b,"cs",{months:d,monthsShort:e,monthsParse:function(a,b){var c,d=[];for(c=0;12>c;c++)d[c]=new RegExp("^"+a[c]+"$|^"+b[c]+"$","i");return d}(d,e),shortMonthsParse:function(a){var b,c=[];for(b=0;12>b;b++)c[b]=new RegExp("^"+a[b]+"$","i");return c}(e),longMonthsParse:function(a){var b,c=[];for(b=0;12>b;b++)c[b]=new RegExp("^"+a[b]+"$","i");return c}(d),weekdays:"neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_út_st_čt_pá_so".split("_"),weekdaysMin:"ne_po_út_st_čt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zítra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v neděli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve středu v] LT";case 4:return"[ve čtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[včera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou neděli v] LT";case 1:case 2:return"[minulé] dddd [v] LT";case 3:return"[minulou středu v] LT";case 4:case 5:return"[minulý] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"před %s",s:c,m:c,mm:c,h:c,hh:c,d:c,dd:c,M:c,MM:c,y:c,yy:c},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return f}(),a.fullCalendar.datepickerLang("cs","cs",{closeText:"Zavřít",prevText:"<Dříve",nextText:"Později>",currentText:"Nyní",monthNames:["leden","únor","březen","duben","květen","červen","červenec","srpen","září","říjen","listopad","prosinec"],monthNamesShort:["led","úno","bře","dub","kvě","čer","čvc","srp","zář","říj","lis","pro"],dayNames:["neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota"],dayNamesShort:["ne","po","út","st","čt","pá","so"],dayNamesMin:["ne","po","út","st","čt","pá","so"],weekHeader:"Týd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("cs",{buttonText:{month:"Měsíc",week:"Týden",day:"Den",list:"Agenda"},allDayText:"Celý den",eventLimitText:function(a){return"+další: "+a}})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY HH:mm"},calendar:{sameDay:"[I dag kl.] LT",nextDay:"[I morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[I går kl.] LT",lastWeek:"[sidste] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("da","da",{closeText:"Luk",prevText:"<Forrige",nextText:"Næste>",currentText:"Idag",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["Sø","Ma","Ti","On","To","Fr","Lø"],weekHeader:"Uge",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("da",{buttonText:{month:"Måned",week:"Uge",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"flere"})}(),function(){!function(){"use strict";function a(a,b,c,d){var e={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[a+" Tage",a+" Tagen"],M:["ein Monat","einem Monat"],MM:[a+" Monate",a+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[a+" Jahre",a+" Jahren"]};return b?e[c][0]:e[c][1]}var c=(b.defineLocale||b.lang).call(b,"de-at",{months:"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jän._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:a,mm:"%d Minuten",h:a,hh:"%d Stunden",d:a,dd:a,M:a,MM:a,y:a,yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return c}(),a.fullCalendar.datepickerLang("de-at","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("de-at",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(a){return"+ weitere "+a}})}(),function(){!function(){"use strict";function a(a,b,c,d){var e={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[a+" Tage",a+" Tagen"],M:["ein Monat","einem Monat"],MM:[a+" Monate",a+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[a+" Jahre",a+" Jahren"]};return b?e[c][0]:e[c][1]}var c=(b.defineLocale||b.lang).call(b,"de",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:a,mm:"%d Minuten",h:a,hh:"%d Stunden",d:a,dd:a,M:a,MM:a,y:a,yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return c}(),a.fullCalendar.datepickerLang("de","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("de",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(a){return"+ weitere "+a}})}(),function(){!function(){"use strict";function a(a){return a instanceof Function||"[object Function]"===Object.prototype.toString.call(a)}var c=(b.defineLocale||b.lang).call(b,"el",{monthsNominativeEl:"Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),monthsGenitiveEl:"Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου".split("_"),months:function(a,b){return/D/.test(b.substring(0,b.indexOf("MMMM")))?this._monthsGenitiveEl[a.month()]:this._monthsNominativeEl[a.month()]},monthsShort:"Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),weekdaysShort:"Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(a,b,c){return a>11?c?"μμ":"ΜΜ":c?"πμ":"ΠΜ"},isPM:function(a){return"μ"===(a+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Μ?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[Σήμερα {}] LT",nextDay:"[Αύριο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[το προηγούμενο] dddd [{}] LT";default:return"[την προηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(b,c){var d=this._calendarEl[b],e=c&&c.hours();return a(d)&&(d=d.apply(c)),d.replace("{}",e%12===1?"στη":"στις")},relativeTime:{future:"σε %s",past:"%s πριν",s:"λίγα δευτερόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ώρα",hh:"%d ώρες",d:"μία μέρα",dd:"%d μέρες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χρόνος",yy:"%d χρόνια"},ordinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}});return c}(),a.fullCalendar.datepickerLang("el","el",{closeText:"Κλείσιμο",prevText:"Προηγούμενος",nextText:"Επόμενος",currentText:"Σήμερα",monthNames:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthNamesShort:["Ιαν","Φεβ","Μαρ","Απρ","Μαι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],dayNames:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],dayNamesShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],dayNamesMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],weekHeader:"Εβδ",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("el",{buttonText:{month:"Μήνας",week:"Εβδομάδα",day:"Ημέρα",list:"Ατζέντα"},allDayText:"Ολοήμερο",eventLimitText:"περισσότερα"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(a){var b=a%10,c=1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c},week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("en-au","en-AU",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("en-au")}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(a){var b=a%10,c=1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c}});return a}(),a.fullCalendar.lang("en-ca")}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(a){var b=a%10,c=1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c},week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("en-gb","en-GB",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("en-gb")}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(a){var b=a%10,c=1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c},week:{dow:1,doy:4}});return a}(),a.fullCalendar.lang("en-ie")}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(a){var b=a%10,c=1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c},week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("en-nz","en-NZ",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("en-nz")}(),function(){!function(){"use strict";var a="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),c="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),d=(b.defineLocale||b.lang).call(b,"es",{ -months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(b,d){return/-MMM-/.test(d)?c[b.month()]:a[b.month()]},monthsParseExact:!0,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return d}(),a.fullCalendar.datepickerLang("es","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("es",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
    el día",eventLimitText:"más"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return a}(),a.fullCalendar.datepickerLang("eu","eu",{closeText:"Egina",prevText:"<Aur",nextText:"Hur>",currentText:"Gaur",monthNames:["urtarrila","otsaila","martxoa","apirila","maiatza","ekaina","uztaila","abuztua","iraila","urria","azaroa","abendua"],monthNamesShort:["urt.","ots.","mar.","api.","mai.","eka.","uzt.","abu.","ira.","urr.","aza.","abe."],dayNames:["igandea","astelehena","asteartea","asteazkena","osteguna","ostirala","larunbata"],dayNamesShort:["ig.","al.","ar.","az.","og.","ol.","lr."],dayNamesMin:["ig","al","ar","az","og","ol","lr"],weekHeader:"As",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("eu",{buttonText:{month:"Hilabetea",week:"Astea",day:"Eguna",list:"Agenda"},allDayHtml:"Egun
    osoa",eventLimitText:"gehiago"})}(),function(){!function(){"use strict";var a={1:"۱",2:"۲",3:"۳",4:"۴",5:"۵",6:"۶",7:"۷",8:"۸",9:"۹",0:"۰"},c={"۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","۰":"0"},d=(b.defineLocale||b.lang).call(b,"fa",{months:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),monthsShort:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),weekdays:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysShort:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysMin:"ی_د_س_چ_پ_ج_ش".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(a){return/بعد از ظهر/.test(a)},meridiem:function(a,b,c){return 12>a?"قبل از ظهر":"بعد از ظهر"},calendar:{sameDay:"[امروز ساعت] LT",nextDay:"[فردا ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[دیروز ساعت] LT",lastWeek:"dddd [پیش] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s پیش",s:"چندین ثانیه",m:"یک دقیقه",mm:"%d دقیقه",h:"یک ساعت",hh:"%d ساعت",d:"یک روز",dd:"%d روز",M:"یک ماه",MM:"%d ماه",y:"یک سال",yy:"%d سال"},preparse:function(a){return a.replace(/[۰-۹]/g,function(a){return c[a]}).replace(/،/g,",")},postformat:function(b){return b.replace(/\d/g,function(b){return a[b]}).replace(/,/g,"،")},ordinalParse:/\d{1,2}م/,ordinal:"%dم",week:{dow:6,doy:12}});return d}(),a.fullCalendar.datepickerLang("fa","fa",{closeText:"بستن",prevText:"<قبلی",nextText:"بعدی>",currentText:"امروز",monthNames:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["يکشنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayNamesShort:["ی","د","س","چ","پ","ج","ش"],dayNamesMin:["ی","د","س","چ","پ","ج","ش"],weekHeader:"هف",dateFormat:"yy/mm/dd",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("fa",{buttonText:{month:"ماه",week:"هفته",day:"روز",list:"برنامه"},allDayText:"تمام روز",eventLimitText:function(a){return"بیش از "+a}})}(),function(){!function(){"use strict";function a(a,b,d,e){var f="";switch(d){case"s":return e?"muutaman sekunnin":"muutama sekunti";case"m":return e?"minuutin":"minuutti";case"mm":f=e?"minuutin":"minuuttia";break;case"h":return e?"tunnin":"tunti";case"hh":f=e?"tunnin":"tuntia";break;case"d":return e?"päivän":"päivä";case"dd":f=e?"päivän":"päivää";break;case"M":return e?"kuukauden":"kuukausi";case"MM":f=e?"kuukauden":"kuukautta";break;case"y":return e?"vuoden":"vuosi";case"yy":f=e?"vuoden":"vuotta"}return f=c(a,e)+" "+f}function c(a,b){return 10>a?b?e[a]:d[a]:a}var d="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),e=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",d[7],d[8],d[9]],f=(b.defineLocale||b.lang).call(b,"fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return f}(),a.fullCalendar.datepickerLang("fi","fi",{closeText:"Sulje",prevText:"«Edellinen",nextText:"Seuraava»",currentText:"Tänään",monthNames:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],monthNamesShort:["Tammi","Helmi","Maalis","Huhti","Touko","Kesä","Heinä","Elo","Syys","Loka","Marras","Joulu"],dayNamesShort:["Su","Ma","Ti","Ke","To","Pe","La"],dayNames:["Sunnuntai","Maanantai","Tiistai","Keskiviikko","Torstai","Perjantai","Lauantai"],dayNamesMin:["Su","Ma","Ti","Ke","To","Pe","La"],weekHeader:"Vk",dateFormat:"d.m.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("fi",{buttonText:{month:"Kuukausi",week:"Viikko",day:"Päivä",list:"Tapahtumat"},allDayText:"Koko päivä",eventLimitText:"lisää"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"fr-ca",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|e)/,ordinal:function(a){return a+(1===a?"er":"e")}});return a}(),a.fullCalendar.datepickerLang("fr-ca","fr-CA",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("fr-ca",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
    journée",eventLimitText:"en plus"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|e)/,ordinal:function(a){return a+(1===a?"er":"e")},week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("fr-ch","fr-CH",{closeText:"Fermer",prevText:"<Préc",nextText:"Suiv>",currentText:"Courant",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sm",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("fr-ch",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
    journée",eventLimitText:"en plus"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"fr",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|)/,ordinal:function(a){return a+(1===a?"er":"")},week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("fr","fr",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avr.","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("fr",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
    journée",eventLimitText:"en plus"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"gl",{months:"Xaneiro_Febreiro_Marzo_Abril_Maio_Xuño_Xullo_Agosto_Setembro_Outubro_Novembro_Decembro".split("_"),monthsShort:"Xan._Feb._Mar._Abr._Mai._Xuñ._Xul._Ago._Set._Out._Nov._Dec.".split("_"),monthsParseExact:!0,weekdays:"Domingo_Luns_Martes_Mércores_Xoves_Venres_Sábado".split("_"),weekdaysShort:"Dom._Lun._Mar._Mér._Xov._Ven._Sáb.".split("_"),weekdaysMin:"Do_Lu_Ma_Mé_Xo_Ve_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd D MMMM YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"ás":"á")+"] LT"},nextDay:function(){return"[mañá "+(1!==this.hours()?"ás":"á")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"ás":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"á":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"ás":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(a){return"uns segundos"===a?"nuns segundos":"en "+a},past:"hai %s",s:"uns segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:7}});return a}(),a.fullCalendar.datepickerLang("gl","gl",{closeText:"Pechar",prevText:"<Ant",nextText:"Seg>",currentText:"Hoxe",monthNames:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthNamesShort:["Xan","Feb","Mar","Abr","Mai","Xuñ","Xul","Ago","Set","Out","Nov","Dec"],dayNames:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],dayNamesShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],dayNamesMin:["Do","Lu","Ma","Mé","Xo","Ve","Sá"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("gl",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Axenda"},allDayHtml:"Todo
    o día",eventLimitText:"máis"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"he",{months:"ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר".split("_"),monthsShort:"ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳".split("_"),weekdays:"ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"),weekdaysShort:"א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),weekdaysMin:"א_ב_ג_ד_ה_ו_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [ב]MMMM YYYY",LLL:"D [ב]MMMM YYYY HH:mm",LLLL:"dddd, D [ב]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[היום ב־]LT",nextDay:"[מחר ב־]LT",nextWeek:"dddd [בשעה] LT",lastDay:"[אתמול ב־]LT",lastWeek:"[ביום] dddd [האחרון בשעה] LT",sameElse:"L"},relativeTime:{future:"בעוד %s",past:"לפני %s",s:"מספר שניות",m:"דקה",mm:"%d דקות",h:"שעה",hh:function(a){return 2===a?"שעתיים":a+" שעות"},d:"יום",dd:function(a){return 2===a?"יומיים":a+" ימים"},M:"חודש",MM:function(a){return 2===a?"חודשיים":a+" חודשים"},y:"שנה",yy:function(a){return 2===a?"שנתיים":a%10===0&&10!==a?a+" שנה":a+" שנים"}},meridiemParse:/אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,isPM:function(a){return/^(אחה"צ|אחרי הצהריים|בערב)$/.test(a)},meridiem:function(a,b,c){return 5>a?"לפנות בוקר":10>a?"בבוקר":12>a?c?'לפנה"צ':"לפני הצהריים":18>a?c?'אחה"צ':"אחרי הצהריים":"בערב"}});return a}(),a.fullCalendar.datepickerLang("he","he",{closeText:"סגור",prevText:"<הקודם",nextText:"הבא>",currentText:"היום",monthNames:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","אפר","מאי","יוני","יולי","אוג","ספט","אוק","נוב","דצמ"],dayNames:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],dayNamesMin:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("he",{defaultButtonText:{month:"חודש",week:"שבוע",day:"יום",list:"סדר יום"},weekNumberTitle:"שבוע",allDayText:"כל היום",eventLimitText:"אחר"})}(),function(){!function(){"use strict";var a={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},c={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"},d=(b.defineLocale||b.lang).call(b,"hi",{months:"जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर".split("_"),monthsShort:"जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm बजे",LTS:"A h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm बजे",LLLL:"dddd, D MMMM YYYY, A h:mm बजे"},calendar:{sameDay:"[आज] LT",nextDay:"[कल] LT",nextWeek:"dddd, LT",lastDay:"[कल] LT",lastWeek:"[पिछले] dddd, LT",sameElse:"L"},relativeTime:{future:"%s में",past:"%s पहले",s:"कुछ ही क्षण",m:"एक मिनट",mm:"%d मिनट",h:"एक घंटा",hh:"%d घंटे",d:"एक दिन",dd:"%d दिन",M:"एक महीने",MM:"%d महीने",y:"एक वर्ष",yy:"%d वर्ष"},preparse:function(a){return a.replace(/[१२३४५६७८९०]/g,function(a){return c[a]})},postformat:function(b){return b.replace(/\d/g,function(b){return a[b]})},meridiemParse:/रात|सुबह|दोपहर|शाम/,meridiemHour:function(a,b){return 12===a&&(a=0),"रात"===b?4>a?a:a+12:"सुबह"===b?a:"दोपहर"===b?a>=10?a:a+12:"शाम"===b?a+12:void 0},meridiem:function(a,b,c){return 4>a?"रात":10>a?"सुबह":17>a?"दोपहर":20>a?"शाम":"रात"},week:{dow:0,doy:6}});return d}(),a.fullCalendar.datepickerLang("hi","hi",{closeText:"बंद",prevText:"पिछला",nextText:"अगला",currentText:"आज",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मई","जून","जूलाई","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मई","जून","जूलाई","अग","सित","अक्ट","नव","दि"],dayNames:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],dayNamesMin:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],weekHeader:"हफ्ता",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("hi",{buttonText:{month:"महीना",week:"सप्ताह",day:"दिन",list:"कार्यसूची"},allDayText:"सभी दिन",eventLimitText:function(a){return"+अधिक "+a}})}(),function(){!function(){"use strict";function a(a,b,c){var d=a+" ";switch(c){case"m":return b?"jedna minuta":"jedne minute";case"mm":return d+=1===a?"minuta":2===a||3===a||4===a?"minute":"minuta";case"h":return b?"jedan sat":"jednog sata";case"hh":return d+=1===a?"sat":2===a||3===a||4===a?"sata":"sati";case"dd":return d+=1===a?"dan":"dana";case"MM":return d+=1===a?"mjesec":2===a||3===a||4===a?"mjeseca":"mjeseci";case"yy":return d+=1===a?"godina":2===a||3===a||4===a?"godine":"godina"}}var c=(b.defineLocale||b.lang).call(b,"hr",{months:{format:"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",m:a,mm:a,h:a,hh:a,d:"dan",dd:a,M:"mjesec",MM:a,y:"godinu",yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return c}(),a.fullCalendar.datepickerLang("hr","hr",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthNamesShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Tje",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("hr",{buttonText:{month:"Mjesec",week:"Tjedan",day:"Dan",list:"Raspored"},allDayText:"Cijeli dan",eventLimitText:function(a){return"+ još "+a}})}(),function(){!function(){"use strict";function a(a,b,c,d){var e=a;switch(c){case"s":return d||b?"néhány másodperc":"néhány másodperce";case"m":return"egy"+(d||b?" perc":" perce");case"mm":return e+(d||b?" perc":" perce");case"h":return"egy"+(d||b?" óra":" órája");case"hh":return e+(d||b?" óra":" órája");case"d":return"egy"+(d||b?" nap":" napja");case"dd":return e+(d||b?" nap":" napja");case"M":return"egy"+(d||b?" hónap":" hónapja");case"MM":return e+(d||b?" hónap":" hónapja");case"y":return"egy"+(d||b?" év":" éve");case"yy":return e+(d||b?" év":" éve")}return""}function c(a){return(a?"":"[múlt] ")+"["+d[this.day()]+"] LT[-kor]"}var d="vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton".split(" "),e=(b.defineLocale||b.lang).call(b,"hu",{months:"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),monthsShort:"jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec".split("_"),weekdays:"vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"),weekdaysShort:"vas_hét_kedd_sze_csüt_pén_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(a){return"u"===a.charAt(1).toLowerCase()},meridiem:function(a,b,c){return 12>a?c===!0?"de":"DE":c===!0?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return c.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return c.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s múlva",past:"%s",s:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return e}(),a.fullCalendar.datepickerLang("hu","hu",{closeText:"bezár",prevText:"vissza",nextText:"előre",currentText:"ma",monthNames:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],monthNamesShort:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Szep","Okt","Nov","Dec"],dayNames:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],dayNamesShort:["Vas","Hét","Ked","Sze","Csü","Pén","Szo"],dayNamesMin:["V","H","K","Sze","Cs","P","Szo"],weekHeader:"Hét",dateFormat:"yy.mm.dd.",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),a.fullCalendar.lang("hu",{buttonText:{month:"Hónap",week:"Hét",day:"Nap",list:"Napló"},allDayText:"Egész nap",eventLimitText:"további"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(a,b){return 12===a&&(a=0),"pagi"===b?a:"siang"===b?a>=11?a:a+12:"sore"===b||"malam"===b?a+12:void 0},meridiem:function(a,b,c){return 11>a?"pagi":15>a?"siang":19>a?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return a}(),a.fullCalendar.datepickerLang("id","id",{closeText:"Tutup",prevText:"<mundur",nextText:"maju>",currentText:"hari ini",monthNames:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agus","Sep","Okt","Nop","Des"],dayNames:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],dayNamesShort:["Min","Sen","Sel","Rab","kam","Jum","Sab"],dayNamesMin:["Mg","Sn","Sl","Rb","Km","jm","Sb"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("id",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayHtml:"Sehari
    penuh",eventLimitText:"lebih"})}(),function(){!function(){"use strict";function a(a){return a%100===11?!0:a%10!==1}function c(b,c,d,e){var f=b+" ";switch(d){case"s":return c||e?"nokkrar sekúndur":"nokkrum sekúndum";case"m":return c?"mínúta":"mínútu";case"mm":return a(b)?f+(c||e?"mínútur":"mínútum"):c?f+"mínúta":f+"mínútu";case"hh":return a(b)?f+(c||e?"klukkustundir":"klukkustundum"):f+"klukkustund";case"d":return c?"dagur":e?"dag":"degi";case"dd":return a(b)?c?f+"dagar":f+(e?"daga":"dögum"):c?f+"dagur":f+(e?"dag":"degi");case"M":return c?"mánuður":e?"mánuð":"mánuði";case"MM":return a(b)?c?f+"mánuðir":f+(e?"mánuði":"mánuðum"):c?f+"mánuður":f+(e?"mánuð":"mánuði");case"y":return c||e?"ár":"ári";case"yy":return a(b)?f+(c||e?"ár":"árum"):f+(c||e?"ár":"ári")}}var d=(b.defineLocale||b.lang).call(b,"is",{months:"janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),weekdays:"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_þri_mið_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Þr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[í dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[í gær kl.] LT",lastWeek:"[síðasta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s síðan",s:c,m:c,mm:c,h:"klukkustund",hh:c,d:c,dd:c,M:c,MM:c,y:c,yy:c},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return d}(),a.fullCalendar.datepickerLang("is","is",{closeText:"Loka",prevText:"< Fyrri",nextText:"Næsti >",currentText:"Í dag",monthNames:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],dayNames:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],dayNamesShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],dayNamesMin:["Su","Má","Þr","Mi","Fi","Fö","La"],weekHeader:"Vika",dateFormat:"dd.mm.yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("is",{buttonText:{month:"Mánuður",week:"Vika",day:"Dagur",list:"Dagskrá"},allDayHtml:"Allan
    daginn",eventLimitText:"meira"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato".split("_"),weekdaysShort:"Dom_Lun_Mar_Mer_Gio_Ven_Sab".split("_"),weekdaysMin:"Do_Lu_Ma_Me_Gi_Ve_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(a){return(/^[0-9].+$/.test(a)?"tra":"in")+" "+a},past:"%s fa",s:"alcuni secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("it","it",{closeText:"Chiudi",prevText:"<Prec",nextText:"Succ>",currentText:"Oggi",monthNames:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"], -monthNamesShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],dayNames:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],dayNamesShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],dayNamesMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("it",{buttonText:{month:"Mese",week:"Settimana",day:"Giorno",list:"Agenda"},allDayHtml:"Tutto il
    giorno",eventLimitText:function(a){return"+altri "+a}})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"ja",{months:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"日_月_火_水_木_金_土".split("_"),weekdaysMin:"日_月_火_水_木_金_土".split("_"),longDateFormat:{LT:"Ah時m分",LTS:"Ah時m分s秒",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah時m分",LLLL:"YYYY年M月D日Ah時m分 dddd"},meridiemParse:/午前|午後/i,isPM:function(a){return"午後"===a},meridiem:function(a,b,c){return 12>a?"午前":"午後"},calendar:{sameDay:"[今日] LT",nextDay:"[明日] LT",nextWeek:"[来週]dddd LT",lastDay:"[昨日] LT",lastWeek:"[前週]dddd LT",sameElse:"L"},ordinalParse:/\d{1,2}日/,ordinal:function(a,b){switch(b){case"d":case"D":case"DDD":return a+"日";default:return a}},relativeTime:{future:"%s後",past:"%s前",s:"数秒",m:"1分",mm:"%d分",h:"1時間",hh:"%d時間",d:"1日",dd:"%d日",M:"1ヶ月",MM:"%dヶ月",y:"1年",yy:"%d年"}});return a}(),a.fullCalendar.datepickerLang("ja","ja",{closeText:"閉じる",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayNames:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["日","月","火","水","木","金","土"],dayNamesMin:["日","月","火","水","木","金","土"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),a.fullCalendar.lang("ja",{buttonText:{month:"月",week:"週",day:"日",list:"予定リスト"},allDayText:"終日",eventLimitText:function(a){return"他 "+a+" 件"}})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"ko",{months:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),monthsShort:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),weekdays:"일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"),weekdaysShort:"일_월_화_수_목_금_토".split("_"),weekdaysMin:"일_월_화_수_목_금_토".split("_"),longDateFormat:{LT:"A h시 m분",LTS:"A h시 m분 s초",L:"YYYY.MM.DD",LL:"YYYY년 MMMM D일",LLL:"YYYY년 MMMM D일 A h시 m분",LLLL:"YYYY년 MMMM D일 dddd A h시 m분"},calendar:{sameDay:"오늘 LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"어제 LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s 전",s:"몇 초",ss:"%d초",m:"일분",mm:"%d분",h:"한 시간",hh:"%d시간",d:"하루",dd:"%d일",M:"한 달",MM:"%d달",y:"일 년",yy:"%d년"},ordinalParse:/\d{1,2}일/,ordinal:"%d일",meridiemParse:/오전|오후/,isPM:function(a){return"오후"===a},meridiem:function(a,b,c){return 12>a?"오전":"오후"}});return a}(),a.fullCalendar.datepickerLang("ko","ko",{closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"오늘",monthNames:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthNamesShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayNames:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],dayNamesShort:["일","월","화","수","목","금","토"],dayNamesMin:["일","월","화","수","목","금","토"],weekHeader:"Wk",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"년"}),a.fullCalendar.lang("ko",{buttonText:{month:"월",week:"주",day:"일",list:"일정목록"},allDayText:"종일",eventLimitText:"개"})}(),function(){!function(){"use strict";function a(a,b,c,d){var e={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return b?e[c][0]:e[c][1]}function c(a){var b=a.substr(0,a.indexOf(" "));return e(b)?"a "+a:"an "+a}function d(a){var b=a.substr(0,a.indexOf(" "));return e(b)?"viru "+a:"virun "+a}function e(a){if(a=parseInt(a,10),isNaN(a))return!1;if(0>a)return!0;if(10>a)return a>=4&&7>=a;if(100>a){var b=a%10,c=a/10;return e(0===b?c:b)}if(1e4>a){for(;a>=10;)a/=10;return e(a)}return a/=1e3,e(a)}var f=(b.defineLocale||b.lang).call(b,"lb",{months:"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._Mé._Dë._Më._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mé_Dë_Më_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[Gëschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:c,past:d,s:"e puer Sekonnen",m:a,mm:"%d Minutten",h:a,hh:"%d Stonnen",d:a,dd:"%d Deeg",M:a,MM:"%d Méint",y:a,yy:"%d Joer"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return f}(),a.fullCalendar.datepickerLang("lb","lb",{closeText:"Fäerdeg",prevText:"Zréck",nextText:"Weider",currentText:"Haut",monthNames:["Januar","Februar","Mäerz","Abrëll","Mee","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mäe","Abr","Mee","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonndeg","Méindeg","Dënschdeg","Mëttwoch","Donneschdeg","Freideg","Samschdeg"],dayNamesShort:["Son","Méi","Dën","Mët","Don","Fre","Sam"],dayNamesMin:["So","Mé","Dë","Më","Do","Fr","Sa"],weekHeader:"W",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("lb",{buttonText:{month:"Mount",week:"Woch",day:"Dag",list:"Terminiwwersiicht"},allDayText:"Ganzen Dag",eventLimitText:"méi"})}(),function(){!function(){"use strict";function a(a,b,c,d){return b?"kelios sekundės":d?"kelių sekundžių":"kelias sekundes"}function c(a,b,c,d){return b?e(c)[0]:d?e(c)[1]:e(c)[2]}function d(a){return a%10===0||a>10&&20>a}function e(a){return g[a].split("_")}function f(a,b,f,g){var h=a+" ";return 1===a?h+c(a,b,f[0],g):b?h+(d(a)?e(f)[1]:e(f)[0]):g?h+e(f)[1]:h+(d(a)?e(f)[1]:e(f)[2])}var g={m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"},h=(b.defineLocale||b.lang).call(b,"lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis".split("_")},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:a,m:c,mm:f,h:c,hh:f,d:c,dd:f,M:c,MM:f,y:c,yy:f},ordinalParse:/\d{1,2}-oji/,ordinal:function(a){return a+"-oji"},week:{dow:1,doy:4}});return h}(),a.fullCalendar.datepickerLang("lt","lt",{closeText:"Uždaryti",prevText:"<Atgal",nextText:"Pirmyn>",currentText:"Šiandien",monthNames:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthNamesShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],dayNames:["sekmadienis","pirmadienis","antradienis","trečiadienis","ketvirtadienis","penktadienis","šeštadienis"],dayNamesShort:["sek","pir","ant","tre","ket","pen","šeš"],dayNamesMin:["Se","Pr","An","Tr","Ke","Pe","Še"],weekHeader:"SAV",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),a.fullCalendar.lang("lt",{buttonText:{month:"Mėnuo",week:"Savaitė",day:"Diena",list:"Darbotvarkė"},allDayText:"Visą dieną",eventLimitText:"daugiau"})}(),function(){!function(){"use strict";function a(a,b,c){return c?b%10===1&&11!==b?a[2]:a[3]:b%10===1&&11!==b?a[0]:a[1]}function c(b,c,d){return b+" "+a(f[d],b,c)}function d(b,c,d){return a(f[d],b,c)}function e(a,b){return b?"dažas sekundes":"dažām sekundēm"}var f={m:"minūtes_minūtēm_minūte_minūtes".split("_"),mm:"minūtes_minūtēm_minūte_minūtes".split("_"),h:"stundas_stundām_stunda_stundas".split("_"),hh:"stundas_stundām_stunda_stundas".split("_"),d:"dienas_dienām_diena_dienas".split("_"),dd:"dienas_dienām_diena_dienas".split("_"),M:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),MM:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")},g=(b.defineLocale||b.lang).call(b,"lv",{months:"janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec".split("_"),weekdays:"svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Šodien pulksten] LT",nextDay:"[Rīt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pagājušā] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pēc %s",past:"pirms %s",s:e,m:d,mm:c,h:d,hh:c,d:d,dd:c,M:d,MM:c,y:d,yy:c},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return g}(),a.fullCalendar.datepickerLang("lv","lv",{closeText:"Aizvērt",prevText:"Iepr.",nextText:"Nāk.",currentText:"Šodien",monthNames:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthNamesShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],dayNames:["svētdiena","pirmdiena","otrdiena","trešdiena","ceturtdiena","piektdiena","sestdiena"],dayNamesShort:["svt","prm","otr","tre","ctr","pkt","sst"],dayNamesMin:["Sv","Pr","Ot","Tr","Ct","Pk","Ss"],weekHeader:"Ned.",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("lv",{buttonText:{month:"Mēnesis",week:"Nedēļa",day:"Diena",list:"Dienas kārtība"},allDayText:"Visu dienu",eventLimitText:function(a){return"+vēl "+a}})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("nb","nb",{closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("nb",{buttonText:{month:"Måned",week:"Uke",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"til"})}(),function(){!function(){"use strict";var a="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),c="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),d=(b.defineLocale||b.lang).call(b,"nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(b,d){return/-MMM-/.test(d)?c[b.month()]:a[b.month()]},monthsParseExact:!0,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"Zo_Ma_Di_Wo_Do_Vr_Za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(a){return a+(1===a||8===a||a>=20?"ste":"de")},week:{dow:1,doy:4}});return d}(),a.fullCalendar.datepickerLang("nl","nl",{closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("nl",{buttonText:{month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Hele dag",eventLimitText:"extra"})}(),function(){!function(){"use strict";function a(a){return 5>a%10&&a%10>1&&~~(a/10)%10!==1}function c(b,c,d){var e=b+" ";switch(d){case"m":return c?"minuta":"minutę";case"mm":return e+(a(b)?"minuty":"minut");case"h":return c?"godzina":"godzinę";case"hh":return e+(a(b)?"godziny":"godzin");case"MM":return e+(a(b)?"miesiące":"miesięcy");case"yy":return e+(a(b)?"lata":"lat")}}var d="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),e="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_"),f=(b.defineLocale||b.lang).call(b,"pl",{months:function(a,b){return""===b?"("+e[a.month()]+"|"+d[a.month()]+")":/D MMMM/.test(b)?e[a.month()]:d[a.month()]},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"nie_pon_wt_śr_czw_pt_sb".split("_"),weekdaysMin:"Nd_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:"[W] dddd [o] LT",lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:c,mm:c,h:c,hh:c,d:"1 dzień",dd:"%d dni",M:"miesiąc",MM:c,y:"rok",yy:c},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return f}(),a.fullCalendar.datepickerLang("pl","pl",{closeText:"Zamknij",prevText:"<Poprzedni",nextText:"Następny>",currentText:"Dziś",monthNames:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthNamesShort:["Sty","Lu","Mar","Kw","Maj","Cze","Lip","Sie","Wrz","Pa","Lis","Gru"],dayNames:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],dayNamesShort:["Nie","Pn","Wt","Śr","Czw","Pt","So"],dayNamesMin:["N","Pn","Wt","Śr","Cz","Pt","So"],weekHeader:"Tydz",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("pl",{buttonText:{month:"Miesiąc",week:"Tydzień",day:"Dzień",list:"Plan dnia"},allDayText:"Cały dzień",eventLimitText:"więcej"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"pt-br",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ª_3ª_4ª_5ª_6ª_Sáb".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"%s atrás",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº"});return a}(),a.fullCalendar.datepickerLang("pt-br","pt-BR",{closeText:"Fechar",prevText:"<Anterior",nextText:"Próximo>",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("pt-br",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Compromissos"},allDayText:"dia inteiro",eventLimitText:function(a){return"mais +"+a}})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"pt",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ª_3ª_4ª_5ª_6ª_Sáb".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("pt","pt",{closeText:"Fechar",prevText:"Anterior",nextText:"Seguinte",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sem",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("pt",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Agenda"},allDayText:"Todo o dia",eventLimitText:"mais"})}(),function(){!function(){"use strict";function a(a,b,c){var d={mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"},e=" ";return(a%100>=20||a>=100&&a%100===0)&&(e=" de "),a+e+d[c]}var c=(b.defineLocale||b.lang).call(b,"ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"duminică_luni_marți_miercuri_joi_vineri_sâmbătă".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mâine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s în urmă",s:"câteva secunde",m:"un minut",mm:a,h:"o oră",hh:a,d:"o zi",dd:a,M:"o lună",MM:a,y:"un an",yy:a},week:{dow:1,doy:7}});return c}(),a.fullCalendar.datepickerLang("ro","ro",{closeText:"Închide",prevText:"« Luna precedentă",nextText:"Luna următoare »",currentText:"Azi",monthNames:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthNamesShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],dayNamesShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],dayNamesMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],weekHeader:"Săpt",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("ro",{buttonText:{prev:"precedentă",next:"următoare",month:"Lună",week:"Săptămână",day:"Zi",list:"Agendă"},allDayText:"Toată ziua",eventLimitText:function(a){return"+alte "+a}})}(),function(){!function(){"use strict";function a(a,b){var c=a.split("_");return b%10===1&&b%100!==11?c[0]:b%10>=2&&4>=b%10&&(10>b%100||b%100>=20)?c[1]:c[2]}function c(b,c,d){var e={mm:c?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"};return"m"===d?c?"минута":"минуту":b+" "+a(e[d],+b)}var d=[/^янв/i,/^фев/i,/^мар/i,/^апр/i,/^ма[йя]/i,/^июн/i,/^июл/i,/^авг/i,/^сен/i,/^окт/i,/^ноя/i,/^дек/i],e=(b.defineLocale||b.lang).call(b,"ru",{months:{format:"января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"),standalone:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_")},monthsShort:{format:"янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"),standalone:"янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_")},weekdays:{standalone:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),format:"воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу".split("_"),isFormat:/\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/},weekdaysShort:"вс_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),monthsParse:d,longMonthsParse:d,shortMonthsParse:d,monthsRegex:/^(сентябр[яь]|октябр[яь]|декабр[яь]|феврал[яь]|январ[яь]|апрел[яь]|августа?|ноябр[яь]|сент\.|февр\.|нояб\.|июнь|янв.|июль|дек.|авг.|апр.|марта|мар[.т]|окт.|июн[яь]|июл[яь]|ма[яй])/i,monthsShortRegex:/^(сентябр[яь]|октябр[яь]|декабр[яь]|феврал[яь]|январ[яь]|апрел[яь]|августа?|ноябр[яь]|сент\.|февр\.|нояб\.|июнь|янв.|июль|дек.|авг.|апр.|марта|мар[.т]|окт.|июн[яь]|июл[яь]|ма[яй])/i,monthsStrictRegex:/^(сентябр[яь]|октябр[яь]|декабр[яь]|феврал[яь]|январ[яь]|апрел[яь]|августа?|ноябр[яь]|марта?|июн[яь]|июл[яь]|ма[яй])/i,monthsShortStrictRegex:/^(нояб\.|февр\.|сент\.|июль|янв\.|июн[яь]|мар[.т]|авг\.|апр\.|окт\.|дек\.|ма[яй])/i,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., HH:mm",LLLL:"dddd, D MMMM YYYY г., HH:mm"},calendar:{sameDay:"[Сегодня в] LT",nextDay:"[Завтра в] LT",lastDay:"[Вчера в] LT",nextWeek:function(a){if(a.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В следующее] dddd [в] LT";case 1:case 2:case 4:return"[В следующий] dddd [в] LT";case 3:case 5:case 6:return"[В следующую] dddd [в] LT"}},lastWeek:function(a){if(a.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В прошлое] dddd [в] LT";case 1:case 2:case 4:return"[В прошлый] dddd [в] LT";case 3:case 5:case 6:return"[В прошлую] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",m:c,mm:c,h:"час",hh:c,d:"день",dd:c,M:"месяц",MM:c,y:"год",yy:c},meridiemParse:/ночи|утра|дня|вечера/i,isPM:function(a){return/^(дня|вечера)$/.test(a)},meridiem:function(a,b,c){return 4>a?"ночи":12>a?"утра":17>a?"дня":"вечера"},ordinalParse:/\d{1,2}-(й|го|я)/,ordinal:function(a,b){switch(b){case"M":case"d":case"DDD":return a+"-й";case"D":return a+"-го";case"w":case"W":return a+"-я";default:return a}},week:{dow:1,doy:7}});return e}(),a.fullCalendar.datepickerLang("ru","ru",{closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],dayNamesShort:["вск","пнд","втр","срд","чтв","птн","сбт"],dayNamesMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("ru",{buttonText:{month:"Месяц",week:"Неделя",day:"День",list:"Повестка дня"},allDayText:"Весь день",eventLimitText:function(a){return"+ ещё "+a}})}(),function(){!function(){"use strict";function a(a){return a>1&&5>a}function c(b,c,d,e){var f=b+" ";switch(d){case"s":return c||e?"pár sekúnd":"pár sekundami";case"m":return c?"minúta":e?"minútu":"minútou";case"mm":return c||e?f+(a(b)?"minúty":"minút"):f+"minútami";case"h":return c?"hodina":e?"hodinu":"hodinou";case"hh":return c||e?f+(a(b)?"hodiny":"hodín"):f+"hodinami";case"d":return c||e?"deň":"dňom";case"dd":return c||e?f+(a(b)?"dni":"dní"):f+"dňami";case"M":return c||e?"mesiac":"mesiacom";case"MM":return c||e?f+(a(b)?"mesiace":"mesiacov"):f+"mesiacmi";case"y":return c||e?"rok":"rokom";case"yy":return c||e?f+(a(b)?"roky":"rokov"):f+"rokmi"}}var d="január_február_marec_apríl_máj_jún_júl_august_september_október_november_december".split("_"),e="jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec".split("_"),f=(b.defineLocale||b.lang).call(b,"sk",{months:d,monthsShort:e,weekdays:"nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[včera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulú nedeľu o] LT";case 1:case 2:return"[minulý] dddd [o] LT";case 3:return"[minulú stredu o] LT";case 4:case 5:return"[minulý] dddd [o] LT";case 6:return"[minulú sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:c,m:c,mm:c,h:c,hh:c,d:c,dd:c,M:c,MM:c,y:c,yy:c},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return f}(),a.fullCalendar.datepickerLang("sk","sk",{closeText:"Zavrieť",prevText:"<Predchádzajúci",nextText:"Nasledujúci>",currentText:"Dnes",monthNames:["január","február","marec","apríl","máj","jún","júl","august","september","október","november","december"],monthNamesShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],dayNames:["nedeľa","pondelok","utorok","streda","štvrtok","piatok","sobota"],dayNamesShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],dayNamesMin:["Ne","Po","Ut","St","Št","Pia","So"],weekHeader:"Ty",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("sk",{buttonText:{month:"Mesiac",week:"Týždeň",day:"Deň",list:"Rozvrh"},allDayText:"Celý deň",eventLimitText:function(a){return"+ďalšie: "+a}})}(),function(){!function(){"use strict";function a(a,b,c,d){var e=a+" ";switch(c){case"s":return b||d?"nekaj sekund":"nekaj sekundami";case"m":return b?"ena minuta":"eno minuto";case"mm":return e+=1===a?b?"minuta":"minuto":2===a?b||d?"minuti":"minutama":5>a?b||d?"minute":"minutami":b||d?"minut":"minutami";case"h":return b?"ena ura":"eno uro";case"hh":return e+=1===a?b?"ura":"uro":2===a?b||d?"uri":"urama":5>a?b||d?"ure":"urami":b||d?"ur":"urami";case"d":return b||d?"en dan":"enim dnem";case"dd":return e+=1===a?b||d?"dan":"dnem":2===a?b||d?"dni":"dnevoma":b||d?"dni":"dnevi";case"M":return b||d?"en mesec":"enim mesecem";case"MM":return e+=1===a?b||d?"mesec":"mesecem":2===a?b||d?"meseca":"mesecema":5>a?b||d?"mesece":"meseci":b||d?"mesecev":"meseci";case"y":return b||d?"eno leto":"enim letom";case"yy":return e+=1===a?b||d?"leto":"letom":2===a?b||d?"leti":"letoma":5>a?b||d?"leta":"leti":b||d?"let":"leti"}}var c=(b.defineLocale||b.lang).call(b,"sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._čet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_če_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[včeraj ob] LT",lastWeek:function(){ -switch(this.day()){case 0:return"[prejšnjo] [nedeljo] [ob] LT";case 3:return"[prejšnjo] [sredo] [ob] LT";case 6:return"[prejšnjo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"čez %s",past:"pred %s",s:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return c}(),a.fullCalendar.datepickerLang("sl","sl",{closeText:"Zapri",prevText:"<Prejšnji",nextText:"Naslednji>",currentText:"Trenutni",monthNames:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],dayNamesShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],dayNamesMin:["Ne","Po","To","Sr","Če","Pe","So"],weekHeader:"Teden",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("sl",{buttonText:{month:"Mesec",week:"Teden",day:"Dan",list:"Dnevni red"},allDayText:"Ves dan",eventLimitText:"več"})}(),function(){!function(){"use strict";var a={words:{m:["један минут","једне минуте"],mm:["минут","минуте","минута"],h:["један сат","једног сата"],hh:["сат","сата","сати"],dd:["дан","дана","дана"],MM:["месец","месеца","месеци"],yy:["година","године","година"]},correctGrammaticalCase:function(a,b){return 1===a?b[0]:a>=2&&4>=a?b[1]:b[2]},translate:function(b,c,d){var e=a.words[d];return 1===d.length?c?e[0]:e[1]:b+" "+a.correctGrammaticalCase(b,e)}},c=(b.defineLocale||b.lang).call(b,"sr-cyrl",{months:"јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар".split("_"),monthsShort:"јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.".split("_"),monthsParseExact:!0,weekdays:"недеља_понедељак_уторак_среда_четвртак_петак_субота".split("_"),weekdaysShort:"нед._пон._уто._сре._чет._пет._суб.".split("_"),weekdaysMin:"не_по_ут_ср_че_пе_су".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[данас у] LT",nextDay:"[сутра у] LT",nextWeek:function(){switch(this.day()){case 0:return"[у] [недељу] [у] LT";case 3:return"[у] [среду] [у] LT";case 6:return"[у] [суботу] [у] LT";case 1:case 2:case 4:case 5:return"[у] dddd [у] LT"}},lastDay:"[јуче у] LT",lastWeek:function(){var a=["[прошле] [недеље] [у] LT","[прошлог] [понедељка] [у] LT","[прошлог] [уторка] [у] LT","[прошле] [среде] [у] LT","[прошлог] [четвртка] [у] LT","[прошлог] [петка] [у] LT","[прошле] [суботе] [у] LT"];return a[this.day()]},sameElse:"L"},relativeTime:{future:"за %s",past:"пре %s",s:"неколико секунди",m:a.translate,mm:a.translate,h:a.translate,hh:a.translate,d:"дан",dd:a.translate,M:"месец",MM:a.translate,y:"годину",yy:a.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return c}(),a.fullCalendar.datepickerLang("sr-cyrl","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("sr-cyrl",{buttonText:{month:"Месец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео дан",eventLimitText:function(a){return"+ још "+a}})}(),function(){!function(){"use strict";var a={words:{m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(a,b){return 1===a?b[0]:a>=2&&4>=a?b[1]:b[2]},translate:function(b,c,d){var e=a.words[d];return 1===d.length?c?e[0]:e[1]:b+" "+a.correctGrammaticalCase(b,e)}},c=(b.defineLocale||b.lang).call(b,"sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){var a=["[prošle] [nedelje] [u] LT","[prošlog] [ponedeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"];return a[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",m:a.translate,mm:a.translate,h:a.translate,hh:a.translate,d:"dan",dd:a.translate,M:"mesec",MM:a.translate,y:"godinu",yy:a.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return c}(),a.fullCalendar.datepickerLang("sr","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("sr",{buttonText:{month:"Месец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео дан",eventLimitText:function(a){return"+ још "+a}})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mån_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_må_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Igår] LT",nextWeek:"[På] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"några sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en månad",MM:"%d månader",y:"ett år",yy:"%d år"},ordinalParse:/\d{1,2}(e|a)/,ordinal:function(a){var b=a%10,c=1===~~(a%100/10)?"e":1===b?"a":2===b?"a":"e";return a+c},week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("sv","sv",{closeText:"Stäng",prevText:"«Förra",nextText:"Nästa»",currentText:"Idag",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNamesShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],dayNames:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesMin:["Sö","Må","Ti","On","To","Fr","Lö"],weekHeader:"Ve",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("sv",{buttonText:{month:"Månad",week:"Vecka",day:"Dag",list:"Program"},allDayText:"Heldag",eventLimitText:"till"})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"th",{months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"มกรา_กุมภา_มีนา_เมษา_พฤษภา_มิถุนา_กรกฎา_สิงหา_กันยา_ตุลา_พฤศจิกา_ธันวา".split("_"),monthsParseExact:!0,weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H นาฬิกา m นาที",LTS:"H นาฬิกา m นาที s วินาที",L:"YYYY/MM/DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H นาฬิกา m นาที",LLLL:"วันddddที่ D MMMM YYYY เวลา H นาฬิกา m นาที"},meridiemParse:/ก่อนเที่ยง|หลังเที่ยง/,isPM:function(a){return"หลังเที่ยง"===a},meridiem:function(a,b,c){return 12>a?"ก่อนเที่ยง":"หลังเที่ยง"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุ่งนี้ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมื่อวานนี้ เวลา] LT",lastWeek:"[วัน]dddd[ที่แล้ว เวลา] LT",sameElse:"L"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"}});return a}(),a.fullCalendar.datepickerLang("th","th",{closeText:"ปิด",prevText:"« ย้อน",nextText:"ถัดไป »",currentText:"วันนี้",monthNames:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthNamesShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],dayNames:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์"],dayNamesShort:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],dayNamesMin:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("th",{buttonText:{month:"เดือน",week:"สัปดาห์",day:"วัน",list:"แผนงาน"},allDayText:"ตลอดวัน",eventLimitText:"เพิ่มเติม"})}(),function(){!function(){"use strict";var a={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"},c=(b.defineLocale||b.lang).call(b,"tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[haftaya] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen hafta] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinalParse:/\d{1,2}'(inci|nci|üncü|ncı|uncu|ıncı)/,ordinal:function(b){if(0===b)return b+"'ıncı";var c=b%10,d=b%100-c,e=b>=100?100:null;return b+(a[c]||a[d]||a[e])},week:{dow:1,doy:7}});return c}(),a.fullCalendar.datepickerLang("tr","tr",{closeText:"kapat",prevText:"<geri",nextText:"ileri>",currentText:"bugün",monthNames:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],dayNames:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],dayNamesShort:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],dayNamesMin:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("tr",{buttonText:{next:"ileri",month:"Ay",week:"Hafta",day:"Gün",list:"Ajanda"},allDayText:"Tüm gün",eventLimitText:"daha fazla"})}(),function(){!function(){"use strict";function a(a,b){var c=a.split("_");return b%10===1&&b%100!==11?c[0]:b%10>=2&&4>=b%10&&(10>b%100||b%100>=20)?c[1]:c[2]}function c(b,c,d){var e={mm:c?"хвилина_хвилини_хвилин":"хвилину_хвилини_хвилин",hh:c?"година_години_годин":"годину_години_годин",dd:"день_дні_днів",MM:"місяць_місяці_місяців",yy:"рік_роки_років"};return"m"===d?c?"хвилина":"хвилину":"h"===d?c?"година":"годину":b+" "+a(e[d],+b)}function d(a,b){var c={nominative:"неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота".split("_"),accusative:"неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу".split("_"),genitive:"неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи".split("_")},d=/(\[[ВвУу]\]) ?dddd/.test(b)?"accusative":/\[?(?:минулої|наступної)? ?\] ?dddd/.test(b)?"genitive":"nominative";return c[d][a.day()]}function e(a){return function(){return a+"о"+(11===this.hours()?"б":"")+"] LT"}}var f=(b.defineLocale||b.lang).call(b,"uk",{months:{format:"січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня".split("_"),standalone:"січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень".split("_")},monthsShort:"січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд".split("_"),weekdays:d,weekdaysShort:"нд_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY р.",LLL:"D MMMM YYYY р., HH:mm",LLLL:"dddd, D MMMM YYYY р., HH:mm"},calendar:{sameDay:e("[Сьогодні "),nextDay:e("[Завтра "),lastDay:e("[Вчора "),nextWeek:e("[У] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return e("[Минулої] dddd [").call(this);case 1:case 2:case 4:return e("[Минулого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"за %s",past:"%s тому",s:"декілька секунд",m:c,mm:c,h:"годину",hh:c,d:"день",dd:c,M:"місяць",MM:c,y:"рік",yy:c},meridiemParse:/ночі|ранку|дня|вечора/,isPM:function(a){return/^(дня|вечора)$/.test(a)},meridiem:function(a,b,c){return 4>a?"ночі":12>a?"ранку":17>a?"дня":"вечора"},ordinalParse:/\d{1,2}-(й|го)/,ordinal:function(a,b){switch(b){case"M":case"d":case"DDD":case"w":case"W":return a+"-й";case"D":return a+"-го";default:return a}},week:{dow:1,doy:7}});return f}(),a.fullCalendar.datepickerLang("uk","uk",{closeText:"Закрити",prevText:"<",nextText:">",currentText:"Сьогодні",monthNames:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthNamesShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],dayNames:["неділя","понеділок","вівторок","середа","четвер","п’ятниця","субота"],dayNamesShort:["нед","пнд","вів","срд","чтв","птн","сбт"],dayNamesMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Тиж",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("uk",{buttonText:{month:"Місяць",week:"Тиждень",day:"День",list:"Порядок денний"},allDayText:"Увесь день",eventLimitText:function(a){return"+ще "+a+"..."}})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),monthsParseExact:!0,weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(a){return/^ch$/i.test(a)},meridiem:function(a,b,c){return 12>a?c?"sa":"SA":c?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY HH:mm",LLLL:"dddd, D MMMM [năm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[Hôm nay lúc] LT",nextDay:"[Ngày mai lúc] LT",nextWeek:"dddd [tuần tới lúc] LT",lastDay:"[Hôm qua lúc] LT",lastWeek:"dddd [tuần rồi lúc] LT",sameElse:"L"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"},ordinalParse:/\d{1,2}/,ordinal:function(a){return a},week:{dow:1,doy:4}});return a}(),a.fullCalendar.datepickerLang("vi","vi",{closeText:"Đóng",prevText:"<Trước",nextText:"Tiếp>",currentText:"Hôm nay",monthNames:["Tháng Một","Tháng Hai","Tháng Ba","Tháng Tư","Tháng Năm","Tháng Sáu","Tháng Bảy","Tháng Tám","Tháng Chín","Tháng Mười","Tháng Mười Một","Tháng Mười Hai"],monthNamesShort:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],dayNames:["Chủ Nhật","Thứ Hai","Thứ Ba","Thứ Tư","Thứ Năm","Thứ Sáu","Thứ Bảy"],dayNamesShort:["CN","T2","T3","T4","T5","T6","T7"],dayNamesMin:["CN","T2","T3","T4","T5","T6","T7"],weekHeader:"Tu",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.fullCalendar.lang("vi",{buttonText:{month:"Tháng",week:"Tuần",day:"Ngày",list:"Lịch biểu"},allDayText:"Cả ngày",eventLimitText:function(a){return"+ thêm "+a}})}(),function(){!function(){"use strict";var a=(b.defineLocale||b.lang).call(b,"zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"Ah点mm分",LTS:"Ah点m分s秒",L:"YYYY-MM-DD",LL:"YYYY年MMMD日",LLL:"YYYY年MMMD日Ah点mm分",LLLL:"YYYY年MMMD日ddddAh点mm分",l:"YYYY-MM-DD",ll:"YYYY年MMMD日",lll:"YYYY年MMMD日Ah点mm分",llll:"YYYY年MMMD日ddddAh点mm分"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(a,b){return 12===a&&(a=0),"凌晨"===b||"早上"===b||"上午"===b?a:"下午"===b||"晚上"===b?a+12:a>=11?a:a+12},meridiem:function(a,b,c){var d=100*a+b;return 600>d?"凌晨":900>d?"早上":1130>d?"上午":1230>d?"中午":1800>d?"下午":"晚上"},calendar:{sameDay:function(){return 0===this.minutes()?"[今天]Ah[点整]":"[今天]LT"},nextDay:function(){return 0===this.minutes()?"[明天]Ah[点整]":"[明天]LT"},lastDay:function(){return 0===this.minutes()?"[昨天]Ah[点整]":"[昨天]LT"},nextWeek:function(){var a,c;return a=b().startOf("week"),c=this.diff(a,"days")>=7?"[下]":"[本]",0===this.minutes()?c+"dddAh点整":c+"dddAh点mm"},lastWeek:function(){var a,c;return a=b().startOf("week"),c=this.unix()=11?a:a+12:"下午"===b||"晚上"===b?a+12:void 0},meridiem:function(a,b,c){var d=100*a+b;return 900>d?"早上":1130>d?"上午":1230>d?"中午":1800>d?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},ordinalParse:/\d{1,2}(日|月|週)/,ordinal:function(a,b){switch(b){case"d":case"D":case"DDD":return a+"日";case"M":return a+"月";case"w":case"W":return a+"週";default:return a}},relativeTime:{future:"%s內",past:"%s前",s:"幾秒",m:"1分鐘",mm:"%d分鐘",h:"1小時",hh:"%d小時",d:"1天",dd:"%d天",M:"1個月",MM:"%d個月",y:"1年",yy:"%d年"}});return a}(),a.fullCalendar.datepickerLang("zh-tw","zh-TW",{closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy/mm/dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),a.fullCalendar.lang("zh-tw",{buttonText:{month:"月",week:"週",day:"天",list:"待辦事項"},allDayText:"全天",eventLimitText:"更多"})}(),(b.locale||b.lang).call(b,"en"),a.fullCalendar.lang("en"),a.datepicker&&a.datepicker.setDefaults(a.datepicker.regional[""])}); \ No newline at end of file -- cgit v1.2.3 From b0f9cd30229b10563031df367f8b5f2842d90f0a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 14 Sep 2016 22:51:39 +0200 Subject: add new locale file --- library/fullcalendar/locale-all.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 library/fullcalendar/locale-all.js diff --git a/library/fullcalendar/locale-all.js b/library/fullcalendar/locale-all.js new file mode 100644 index 000000000..b8247c54e --- /dev/null +++ b/library/fullcalendar/locale-all.js @@ -0,0 +1,5 @@ +!function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):"object"==typeof exports?module.exports=e(require("jquery"),require("moment")):e(jQuery,moment)}(function(e,a){!function(){!function(){var e={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},t={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},r={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},s=function(e){return function(a,t,s,d){var i=n(a),o=r[e][n(a)];return 2===i&&(o=o[t?0:1]),o.replace(/%d/i,a)}},d=["كانون الثاني يناير","شباط فبراير","آذار مارس","نيسان أبريل","أيار مايو","حزيران يونيو","تموز يوليو","آب أغسطس","أيلول سبتمبر","تشرين الأول أكتوبر","تشرين الثاني نوفمبر","كانون الأول ديسمبر"],i=a.defineLocale("ar",{months:d,monthsShort:d,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,a,t){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:s("s"),m:s("m"),mm:s("m"),h:s("h"),hh:s("h"),d:s("d"),dd:s("d"),M:s("M"),MM:s("M"),y:s("y"),yy:s("y")},preparse:function(e){return e.replace(/\u200f/g,"").replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return t[e]}).replace(/،/g,",")},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]}).replace(/,/g,"،")},week:{dow:6,doy:12}});return i}(),e.fullCalendar.datepickerLocale("ar","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})}(),function(){!function(){var e=a.defineLocale("ar-ma",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:6,doy:12}});return e}(),e.fullCalendar.datepickerLocale("ar-ma","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar-ma",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})}(),function(){!function(){var e={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},t={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},n=a.defineLocale("ar-sa",{months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,a,t){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return t[e]}).replace(/،/g,",")},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]}).replace(/,/g,"،")},week:{dow:6,doy:12}});return n}(),e.fullCalendar.datepickerLocale("ar-sa","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar-sa",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})}(),function(){!function(){var e=a.defineLocale("ar-tn",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("ar-tn","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar-tn",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})}(),function(){!function(){var e=a.defineLocale("bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[В изминалата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[В изминалия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дни",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},ordinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var a=e%10,t=e%100;return 0===e?e+"-ев":0===t?e+"-ен":t>10&&t<20?e+"-ти":1===a?e+"-ви":2===a?e+"-ри":7===a||8===a?e+"-ми":e+"-ти"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("bg","bg",{closeText:"затвори",prevText:"<назад",nextText:"напред>",nextBigText:">>",currentText:"днес",monthNames:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Яну","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Нов","Дек"],dayNames:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],dayNamesShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Съ"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("bg",{buttonText:{month:"Месец",week:"Седмица",day:"Ден",list:"График"},allDayText:"Цял ден",eventLimitText:function(e){return"+още "+e},noEventsMessage:"Няма събития за показване"})}(),function(){!function(){var e=a.defineLocale("ca",{months:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),monthsShort:"gen._febr._mar._abr._mai._jun._jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"Dg_Dl_Dt_Dc_Dj_Dv_Ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd D MMMM YYYY H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demà a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"fa %s",s:"uns segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},ordinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,a){var t=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"è";return"w"!==a&&"W"!==a||(t="a"),e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("ca","ca",{closeText:"Tanca",prevText:"Anterior",nextText:"Següent",currentText:"Avui",monthNames:["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"],monthNamesShort:["gen","feb","març","abr","maig","juny","jul","ag","set","oct","nov","des"],dayNames:["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],dayNamesShort:["dg","dl","dt","dc","dj","dv","ds"],dayNamesMin:["dg","dl","dt","dc","dj","dv","ds"],weekHeader:"Set",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ca",{buttonText:{month:"Mes",week:"Setmana",day:"Dia",list:"Agenda"},allDayText:"Tot el dia",eventLimitText:"més",noEventsMessage:"No hi ha esdeveniments per mostrar"})}(),function(){!function(){function e(e){return e>1&&e<5&&1!==~~(e/10)}function t(a,t,n,r){var s=a+" ";switch(n){case"s":return t||r?"pár sekund":"pár sekundami";case"m":return t?"minuta":r?"minutu":"minutou";case"mm":return t||r?s+(e(a)?"minuty":"minut"):s+"minutami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?s+(e(a)?"hodiny":"hodin"):s+"hodinami";case"d":return t||r?"den":"dnem";case"dd":return t||r?s+(e(a)?"dny":"dní"):s+"dny";case"M":return t||r?"měsíc":"měsícem";case"MM":return t||r?s+(e(a)?"měsíce":"měsíců"):s+"měsíci";case"y":return t||r?"rok":"rokem";case"yy":return t||r?s+(e(a)?"roky":"let"):s+"lety"}}var n="leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec".split("_"),r="led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro".split("_"),s=a.defineLocale("cs",{months:n,monthsShort:r,monthsParse:function(e,a){var t,n=[];for(t=0;t<12;t++)n[t]=new RegExp("^"+e[t]+"$|^"+a[t]+"$","i");return n}(n,r),shortMonthsParse:function(e){var a,t=[];for(a=0;a<12;a++)t[a]=new RegExp("^"+e[a]+"$","i");return t}(r),longMonthsParse:function(e){var a,t=[];for(a=0;a<12;a++)t[a]=new RegExp("^"+e[a]+"$","i");return t}(n),weekdays:"neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_út_st_čt_pá_so".split("_"),weekdaysMin:"ne_po_út_st_čt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zítra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v neděli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve středu v] LT";case 4:return"[ve čtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[včera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou neděli v] LT";case 1:case 2:return"[minulé] dddd [v] LT";case 3:return"[minulou středu v] LT";case 4:case 5:return"[minulý] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"před %s",s:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("cs","cs",{closeText:"Zavřít",prevText:"<Dříve",nextText:"Později>",currentText:"Nyní",monthNames:["leden","únor","březen","duben","květen","červen","červenec","srpen","září","říjen","listopad","prosinec"],monthNamesShort:["led","úno","bře","dub","kvě","čer","čvc","srp","zář","říj","lis","pro"],dayNames:["neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota"],dayNamesShort:["ne","po","út","st","čt","pá","so"],dayNamesMin:["ne","po","út","st","čt","pá","so"],weekHeader:"Týd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("cs",{buttonText:{month:"Měsíc",week:"Týden",day:"Den",list:"Agenda"},allDayText:"Celý den",eventLimitText:function(e){return"+další: "+e},noEventsMessage:"Žádné akce k zobrazení"})}(),function(){!function(){var e=a.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY HH:mm"},calendar:{sameDay:"[I dag kl.] LT",nextDay:"[I morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[I går kl.] LT",lastWeek:"[sidste] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("da","da",{closeText:"Luk",prevText:"<Forrige",nextText:"Næste>",currentText:"Idag",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["Sø","Ma","Ti","On","To","Fr","Lø"],weekHeader:"Uge",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("da",{buttonText:{month:"Måned",week:"Uge",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"flere",noEventsMessage:"Ingen arrangementer at vise"})}(),function(){!function(){function e(e,a,t,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return a?r[t][0]:r[t][1]}var t=a.defineLocale("de",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return t}(),e.fullCalendar.datepickerLocale("de","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("de",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzeigen"})}(),function(){!function(){function e(e,a,t,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return a?r[t][0]:r[t][1]}var t=a.defineLocale("de-at",{months:"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jän._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return t}(),e.fullCalendar.datepickerLocale("de-at","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("de-at",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzeigen"})}(),function(){!function(){function e(e){return e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}var t=a.defineLocale("el",{monthsNominativeEl:"Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),monthsGenitiveEl:"Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου".split("_"),months:function(e,a){return/D/.test(a.substring(0,a.indexOf("MMMM")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]},monthsShort:"Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),weekdaysShort:"Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(e,a,t){return e>11?t?"μμ":"ΜΜ":t?"πμ":"ΠΜ"},isPM:function(e){return"μ"===(e+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Μ?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[Σήμερα {}] LT",nextDay:"[Αύριο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[το προηγούμενο] dddd [{}] LT";default:return"[την προηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(a,t){var n=this._calendarEl[a],r=t&&t.hours();return e(n)&&(n=n.apply(t)),n.replace("{}",r%12===1?"στη":"στις")},relativeTime:{future:"σε %s",past:"%s πριν",s:"λίγα δευτερόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ώρα",hh:"%d ώρες",d:"μία μέρα",dd:"%d μέρες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χρόνος",yy:"%d χρόνια"},ordinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}});return t}(),e.fullCalendar.datepickerLocale("el","el",{closeText:"Κλείσιμο",prevText:"Προηγούμενος",nextText:"Επόμενος",currentText:"Σήμερα",monthNames:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthNamesShort:["Ιαν","Φεβ","Μαρ","Απρ","Μαι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],dayNames:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],dayNamesShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],dayNamesMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],weekHeader:"Εβδ",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("el",{buttonText:{month:"Μήνας",week:"Εβδομάδα",day:"Ημέρα",list:"Ατζέντα"},allDayText:"Ολοήμερο",eventLimitText:"περισσότερα",noEventsMessage:"Δεν υπάρχουν γεγονότα για να εμφανιστεί"})}(),function(){!function(){var e=a.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("en-au","en-AU",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("en-au")}(),function(){!function(){var e=a.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t}});return e}(),e.fullCalendar.locale("en-ca")}(),function(){!function(){var e=a.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("en-gb","en-GB",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("en-gb")}(),function(){!function(){var e=a.defineLocale("en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.locale("en-ie")}(),function(){!function(){var e=a.defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("en-nz","en-NZ",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("en-nz")}(),function(){!function(){var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),t="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=a.defineLocale("es",{ +months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(a,n){return/-MMM-/.test(n)?t[a.month()]:e[a.month()]},monthsParseExact:!0,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return n}(),e.fullCalendar.datepickerLocale("es","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("es",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
    el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})}(),function(){!function(){var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),t="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=a.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(a,n){return/-MMM-/.test(n)?t[a.month()]:e[a.month()]},monthsParseExact:!0,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return n}(),e.fullCalendar.datepickerLocale("es-do","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("es-do",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
    el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})}(),function(){!function(){var e=a.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("eu","eu",{closeText:"Egina",prevText:"<Aur",nextText:"Hur>",currentText:"Gaur",monthNames:["urtarrila","otsaila","martxoa","apirila","maiatza","ekaina","uztaila","abuztua","iraila","urria","azaroa","abendua"],monthNamesShort:["urt.","ots.","mar.","api.","mai.","eka.","uzt.","abu.","ira.","urr.","aza.","abe."],dayNames:["igandea","astelehena","asteartea","asteazkena","osteguna","ostirala","larunbata"],dayNamesShort:["ig.","al.","ar.","az.","og.","ol.","lr."],dayNamesMin:["ig","al","ar","az","og","ol","lr"],weekHeader:"As",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("eu",{buttonText:{month:"Hilabetea",week:"Astea",day:"Eguna",list:"Agenda"},allDayHtml:"Egun
    osoa",eventLimitText:"gehiago",noEventsMessage:"Ez dago ekitaldirik erakusteko"})}(),function(){!function(){var e={1:"۱",2:"۲",3:"۳",4:"۴",5:"۵",6:"۶",7:"۷",8:"۸",9:"۹",0:"۰"},t={"۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","۰":"0"},n=a.defineLocale("fa",{months:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),monthsShort:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),weekdays:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysShort:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysMin:"ی_د_س_چ_پ_ج_ش".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(e){return/بعد از ظهر/.test(e)},meridiem:function(e,a,t){return e<12?"قبل از ظهر":"بعد از ظهر"},calendar:{sameDay:"[امروز ساعت] LT",nextDay:"[فردا ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[دیروز ساعت] LT",lastWeek:"dddd [پیش] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s پیش",s:"چندین ثانیه",m:"یک دقیقه",mm:"%d دقیقه",h:"یک ساعت",hh:"%d ساعت",d:"یک روز",dd:"%d روز",M:"یک ماه",MM:"%d ماه",y:"یک سال",yy:"%d سال"},preparse:function(e){return e.replace(/[۰-۹]/g,function(e){return t[e]}).replace(/،/g,",")},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]}).replace(/,/g,"،")},ordinalParse:/\d{1,2}م/,ordinal:"%dم",week:{dow:6,doy:12}});return n}(),e.fullCalendar.datepickerLocale("fa","fa",{closeText:"بستن",prevText:"<قبلی",nextText:"بعدی>",currentText:"امروز",monthNames:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["يکشنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayNamesShort:["ی","د","س","چ","پ","ج","ش"],dayNamesMin:["ی","د","س","چ","پ","ج","ش"],weekHeader:"هف",dateFormat:"yy/mm/dd",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fa",{buttonText:{month:"ماه",week:"هفته",day:"روز",list:"برنامه"},allDayText:"تمام روز",eventLimitText:function(e){return"بیش از "+e},noEventsMessage:"هیچ رویدادی به نمایش"})}(),function(){!function(){function e(e,a,n,r){var s="";switch(n){case"s":return r?"muutaman sekunnin":"muutama sekunti";case"m":return r?"minuutin":"minuutti";case"mm":s=r?"minuutin":"minuuttia";break;case"h":return r?"tunnin":"tunti";case"hh":s=r?"tunnin":"tuntia";break;case"d":return r?"päivän":"päivä";case"dd":s=r?"päivän":"päivää";break;case"M":return r?"kuukauden":"kuukausi";case"MM":s=r?"kuukauden":"kuukautta";break;case"y":return r?"vuoden":"vuosi";case"yy":s=r?"vuoden":"vuotta"}return s=t(e,r)+" "+s}function t(e,a){return e<10?a?r[e]:n[e]:e}var n="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),r=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",n[7],n[8],n[9]],s=a.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("fi","fi",{closeText:"Sulje",prevText:"«Edellinen",nextText:"Seuraava»",currentText:"Tänään",monthNames:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],monthNamesShort:["Tammi","Helmi","Maalis","Huhti","Touko","Kesä","Heinä","Elo","Syys","Loka","Marras","Joulu"],dayNamesShort:["Su","Ma","Ti","Ke","To","Pe","La"],dayNames:["Sunnuntai","Maanantai","Tiistai","Keskiviikko","Torstai","Perjantai","Lauantai"],dayNamesMin:["Su","Ma","Ti","Ke","To","Pe","La"],weekHeader:"Vk",dateFormat:"d.m.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fi",{buttonText:{month:"Kuukausi",week:"Viikko",day:"Päivä",list:"Tapahtumat"},allDayText:"Koko päivä",eventLimitText:"lisää",noEventsMessage:"Ei tapahtumia näytettäviä"})}(),function(){!function(){var e=a.defineLocale("fr",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|)/,ordinal:function(e){return e+(1===e?"er":"")},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("fr","fr",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avr.","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fr",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
    journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})}(),function(){!function(){var e=a.defineLocale("fr-ca",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|e)/,ordinal:function(e){return e+(1===e?"er":"e")}});return e}(),e.fullCalendar.datepickerLocale("fr-ca","fr-CA",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fr-ca",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
    journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})}(),function(){!function(){var e=a.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|e)/,ordinal:function(e){return e+(1===e?"er":"e")},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("fr-ch","fr-CH",{closeText:"Fermer",prevText:"<Préc",nextText:"Suiv>",currentText:"Courant",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sm",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fr-ch",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
    journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})}(),function(){!function(){var e=a.defineLocale("gl",{months:"Xaneiro_Febreiro_Marzo_Abril_Maio_Xuño_Xullo_Agosto_Setembro_Outubro_Novembro_Decembro".split("_"),monthsShort:"Xan._Feb._Mar._Abr._Mai._Xuñ._Xul._Ago._Set._Out._Nov._Dec.".split("_"),monthsParseExact:!0,weekdays:"Domingo_Luns_Martes_Mércores_Xoves_Venres_Sábado".split("_"),weekdaysShort:"Dom._Lun._Mar._Mér._Xov._Ven._Sáb.".split("_"),weekdaysMin:"Do_Lu_Ma_Mé_Xo_Ve_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd D MMMM YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"ás":"á")+"] LT"},nextDay:function(){return"[mañá "+(1!==this.hours()?"ás":"á")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"ás":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"á":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"ás":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(e){return"uns segundos"===e?"nuns segundos":"en "+e},past:"hai %s",s:"uns segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("gl","gl",{closeText:"Pechar",prevText:"<Ant",nextText:"Seg>",currentText:"Hoxe",monthNames:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthNamesShort:["Xan","Feb","Mar","Abr","Mai","Xuñ","Xul","Ago","Set","Out","Nov","Dec"],dayNames:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],dayNamesShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],dayNamesMin:["Do","Lu","Ma","Mé","Xo","Ve","Sá"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("gl",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Axenda"},allDayHtml:"Todo
    o día",eventLimitText:"máis",noEventsMessage:"Non hai eventos para amosar"})}(),function(){!function(){var e=a.defineLocale("he",{months:"ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר".split("_"),monthsShort:"ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳".split("_"),weekdays:"ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"),weekdaysShort:"א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),weekdaysMin:"א_ב_ג_ד_ה_ו_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [ב]MMMM YYYY",LLL:"D [ב]MMMM YYYY HH:mm",LLLL:"dddd, D [ב]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[היום ב־]LT",nextDay:"[מחר ב־]LT",nextWeek:"dddd [בשעה] LT",lastDay:"[אתמול ב־]LT",lastWeek:"[ביום] dddd [האחרון בשעה] LT",sameElse:"L"},relativeTime:{future:"בעוד %s",past:"לפני %s",s:"מספר שניות",m:"דקה",mm:"%d דקות",h:"שעה",hh:function(e){return 2===e?"שעתיים":e+" שעות"},d:"יום",dd:function(e){return 2===e?"יומיים":e+" ימים"},M:"חודש",MM:function(e){return 2===e?"חודשיים":e+" חודשים"},y:"שנה",yy:function(e){return 2===e?"שנתיים":e%10===0&&10!==e?e+" שנה":e+" שנים"}},meridiemParse:/אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,isPM:function(e){return/^(אחה"צ|אחרי הצהריים|בערב)$/.test(e)},meridiem:function(e,a,t){return e<5?"לפנות בוקר":e<10?"בבוקר":e<12?t?'לפנה"צ':"לפני הצהריים":e<18?t?'אחה"צ':"אחרי הצהריים":"בערב"}});return e}(),e.fullCalendar.datepickerLocale("he","he",{closeText:"סגור",prevText:"<הקודם",nextText:"הבא>",currentText:"היום",monthNames:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","אפר","מאי","יוני","יולי","אוג","ספט","אוק","נוב","דצמ"],dayNames:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],dayNamesMin:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("he",{buttonText:{month:"חודש",week:"שבוע",day:"יום",list:"סדר יום"},allDayText:"כל היום",eventLimitText:"אחר",noEventsMessage:"אין אירועים להצגה",weekNumberTitle:"שבוע"})}(),function(){!function(){var e={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},t={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"},n=a.defineLocale("hi",{months:"जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर".split("_"),monthsShort:"जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm बजे",LTS:"A h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm बजे",LLLL:"dddd, D MMMM YYYY, A h:mm बजे"},calendar:{sameDay:"[आज] LT",nextDay:"[कल] LT",nextWeek:"dddd, LT",lastDay:"[कल] LT",lastWeek:"[पिछले] dddd, LT",sameElse:"L"},relativeTime:{future:"%s में",past:"%s पहले",s:"कुछ ही क्षण",m:"एक मिनट",mm:"%d मिनट",h:"एक घंटा",hh:"%d घंटे",d:"एक दिन",dd:"%d दिन",M:"एक महीने",MM:"%d महीने",y:"एक वर्ष",yy:"%d वर्ष"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,function(e){return t[e]})},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]})},meridiemParse:/रात|सुबह|दोपहर|शाम/,meridiemHour:function(e,a){return 12===e&&(e=0),"रात"===a?e<4?e:e+12:"सुबह"===a?e:"दोपहर"===a?e>=10?e:e+12:"शाम"===a?e+12:void 0},meridiem:function(e,a,t){return e<4?"रात":e<10?"सुबह":e<17?"दोपहर":e<20?"शाम":"रात"},week:{dow:0,doy:6}});return n}(),e.fullCalendar.datepickerLocale("hi","hi",{closeText:"बंद",prevText:"पिछला",nextText:"अगला",currentText:"आज",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मई","जून","जूलाई","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मई","जून","जूलाई","अग","सित","अक्ट","नव","दि"],dayNames:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],dayNamesMin:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],weekHeader:"हफ्ता",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("hi",{buttonText:{month:"महीना",week:"सप्ताह",day:"दिन",list:"कार्यसूची"},allDayText:"सभी दिन",eventLimitText:function(e){return"+अधिक "+e},noEventsMessage:"कोई घटनाओं को प्रदर्शित करने के लिए"})}(),function(){!function(){function e(e,a,t){var n=e+" ";switch(t){case"m":return a?"jedna minuta":"jedne minute";case"mm":return n+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return a?"jedan sat":"jednog sata";case"hh":return n+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return n+=1===e?"dan":"dana";case"MM":return n+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return n+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}var t=a.defineLocale("hr",{months:{format:"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",m:e,mm:e,h:e,hh:e,d:"dan",dd:e,M:"mjesec",MM:e,y:"godinu",yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("hr","hr",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthNamesShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Tje",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("hr",{buttonText:{month:"Mjesec",week:"Tjedan",day:"Dan",list:"Raspored"},allDayText:"Cijeli dan",eventLimitText:function(e){return"+ još "+e},noEventsMessage:"Nema događaja za prikaz"})}(),function(){!function(){function e(e,a,t,n){var r=e;switch(t){case"s":return n||a?"néhány másodperc":"néhány másodperce";case"m":return"egy"+(n||a?" perc":" perce");case"mm":return r+(n||a?" perc":" perce");case"h":return"egy"+(n||a?" óra":" órája");case"hh":return r+(n||a?" óra":" órája");case"d":return"egy"+(n||a?" nap":" napja");case"dd":return r+(n||a?" nap":" napja");case"M":return"egy"+(n||a?" hónap":" hónapja");case"MM":return r+(n||a?" hónap":" hónapja");case"y":return"egy"+(n||a?" év":" éve");case"yy":return r+(n||a?" év":" éve")}return""}function t(e){return(e?"":"[múlt] ")+"["+n[this.day()]+"] LT[-kor]"}var n="vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton".split(" "),r=a.defineLocale("hu",{months:"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),monthsShort:"jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec".split("_"),weekdays:"vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"),weekdaysShort:"vas_hét_kedd_sze_csüt_pén_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,a,t){return e<12?t===!0?"de":"DE":t===!0?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return t.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return t.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s múlva",past:"%s",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return r}(),e.fullCalendar.datepickerLocale("hu","hu",{closeText:"bezár",prevText:"vissza",nextText:"előre",currentText:"ma",monthNames:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],monthNamesShort:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Szep","Okt","Nov","Dec"],dayNames:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],dayNamesShort:["Vas","Hét","Ked","Sze","Csü","Pén","Szo"],dayNamesMin:["V","H","K","Sze","Cs","P","Szo"],weekHeader:"Hét",dateFormat:"yy.mm.dd.",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),e.fullCalendar.locale("hu",{buttonText:{month:"Hónap",week:"Hét",day:"Nap",list:"Napló"},allDayText:"Egész nap",eventLimitText:"további",noEventsMessage:"Nincs megjeleníthető események"})}(),function(){!function(){var e=a.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"siang"===a?e>=11?e:e+12:"sore"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"siang":e<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("id","id",{closeText:"Tutup",prevText:"<mundur",nextText:"maju>",currentText:"hari ini",monthNames:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agus","Sep","Okt","Nop","Des"],dayNames:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],dayNamesShort:["Min","Sen","Sel","Rab","kam","Jum","Sab"],dayNamesMin:["Mg","Sn","Sl","Rb","Km","jm","Sb"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("id",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayHtml:"Sehari
    penuh",eventLimitText:"lebih",noEventsMessage:"Tidak ada acara untuk ditampilkan"})}(),function(){!function(){function e(e){return e%100===11||e%10!==1}function t(a,t,n,r){var s=a+" ";switch(n){case"s":return t||r?"nokkrar sekúndur":"nokkrum sekúndum";case"m":return t?"mínúta":"mínútu";case"mm":return e(a)?s+(t||r?"mínútur":"mínútum"):t?s+"mínúta":s+"mínútu";case"hh":return e(a)?s+(t||r?"klukkustundir":"klukkustundum"):s+"klukkustund";case"d":return t?"dagur":r?"dag":"degi";case"dd":return e(a)?t?s+"dagar":s+(r?"daga":"dögum"):t?s+"dagur":s+(r?"dag":"degi");case"M":return t?"mánuður":r?"mánuð":"mánuði";case"MM":return e(a)?t?s+"mánuðir":s+(r?"mánuði":"mánuðum"):t?s+"mánuður":s+(r?"mánuð":"mánuði");case"y":return t||r?"ár":"ári";case"yy":return e(a)?s+(t||r?"ár":"árum"):s+(t||r?"ár":"ári")}}var n=a.defineLocale("is",{months:"janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),weekdays:"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_þri_mið_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Þr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{ +sameDay:"[í dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[í gær kl.] LT",lastWeek:"[síðasta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s síðan",s:t,m:t,mm:t,h:"klukkustund",hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return n}(),e.fullCalendar.datepickerLocale("is","is",{closeText:"Loka",prevText:"< Fyrri",nextText:"Næsti >",currentText:"Í dag",monthNames:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],dayNames:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],dayNamesShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],dayNamesMin:["Su","Má","Þr","Mi","Fi","Fö","La"],weekHeader:"Vika",dateFormat:"dd.mm.yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("is",{buttonText:{month:"Mánuður",week:"Vika",day:"Dagur",list:"Dagskrá"},allDayHtml:"Allan
    daginn",eventLimitText:"meira",noEventsMessage:"Engir viðburðir til að sýna"})}(),function(){!function(){var e=a.defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato".split("_"),weekdaysShort:"Dom_Lun_Mar_Mer_Gio_Ven_Sab".split("_"),weekdaysMin:"Do_Lu_Ma_Me_Gi_Ve_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("it","it",{closeText:"Chiudi",prevText:"<Prec",nextText:"Succ>",currentText:"Oggi",monthNames:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthNamesShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],dayNames:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],dayNamesShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],dayNamesMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("it",{buttonText:{month:"Mese",week:"Settimana",day:"Giorno",list:"Agenda"},allDayHtml:"Tutto il
    giorno",eventLimitText:function(e){return"+altri "+e},noEventsMessage:"Non ci sono eventi da visualizzare"})}(),function(){!function(){var e=a.defineLocale("ja",{months:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"日_月_火_水_木_金_土".split("_"),weekdaysMin:"日_月_火_水_木_金_土".split("_"),longDateFormat:{LT:"Ah時m分",LTS:"Ah時m分s秒",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah時m分",LLLL:"YYYY年M月D日Ah時m分 dddd"},meridiemParse:/午前|午後/i,isPM:function(e){return"午後"===e},meridiem:function(e,a,t){return e<12?"午前":"午後"},calendar:{sameDay:"[今日] LT",nextDay:"[明日] LT",nextWeek:"[来週]dddd LT",lastDay:"[昨日] LT",lastWeek:"[前週]dddd LT",sameElse:"L"},ordinalParse:/\d{1,2}日/,ordinal:function(e,a){switch(a){case"d":case"D":case"DDD":return e+"日";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"数秒",m:"1分",mm:"%d分",h:"1時間",hh:"%d時間",d:"1日",dd:"%d日",M:"1ヶ月",MM:"%dヶ月",y:"1年",yy:"%d年"}});return e}(),e.fullCalendar.datepickerLocale("ja","ja",{closeText:"閉じる",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayNames:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["日","月","火","水","木","金","土"],dayNamesMin:["日","月","火","水","木","金","土"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),e.fullCalendar.locale("ja",{buttonText:{month:"月",week:"週",day:"日",list:"予定リスト"},allDayText:"終日",eventLimitText:function(e){return"他 "+e+" 件"},noEventsMessage:"イベントが表示されないように"})}(),function(){!function(){var e=a.defineLocale("ko",{months:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),monthsShort:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),weekdays:"일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"),weekdaysShort:"일_월_화_수_목_금_토".split("_"),weekdaysMin:"일_월_화_수_목_금_토".split("_"),longDateFormat:{LT:"A h시 m분",LTS:"A h시 m분 s초",L:"YYYY.MM.DD",LL:"YYYY년 MMMM D일",LLL:"YYYY년 MMMM D일 A h시 m분",LLLL:"YYYY년 MMMM D일 dddd A h시 m분"},calendar:{sameDay:"오늘 LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"어제 LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s 전",s:"몇 초",ss:"%d초",m:"일분",mm:"%d분",h:"한 시간",hh:"%d시간",d:"하루",dd:"%d일",M:"한 달",MM:"%d달",y:"일 년",yy:"%d년"},ordinalParse:/\d{1,2}일/,ordinal:"%d일",meridiemParse:/오전|오후/,isPM:function(e){return"오후"===e},meridiem:function(e,a,t){return e<12?"오전":"오후"}});return e}(),e.fullCalendar.datepickerLocale("ko","ko",{closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"오늘",monthNames:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthNamesShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayNames:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],dayNamesShort:["일","월","화","수","목","금","토"],dayNamesMin:["일","월","화","수","목","금","토"],weekHeader:"주",dateFormat:"yy. m. d.",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"년"}),e.fullCalendar.locale("ko",{buttonText:{month:"월",week:"주",day:"일",list:"일정목록"},allDayText:"종일",eventLimitText:"개",noEventsMessage:"일정이 표시 없습니다"})}(),function(){!function(){function e(e,a,t,n){var r={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return a?r[t][0]:r[t][1]}function t(e){var a=e.substr(0,e.indexOf(" "));return r(a)?"a "+e:"an "+e}function n(e){var a=e.substr(0,e.indexOf(" "));return r(a)?"viru "+e:"virun "+e}function r(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var a=e%10,t=e/10;return r(0===a?t:a)}if(e<1e4){for(;e>=10;)e/=10;return r(e)}return e/=1e3,r(e)}var s=a.defineLocale("lb",{months:"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._Mé._Dë._Më._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mé_Dë_Më_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[Gëschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:t,past:n,s:"e puer Sekonnen",m:e,mm:"%d Minutten",h:e,hh:"%d Stonnen",d:e,dd:"%d Deeg",M:e,MM:"%d Méint",y:e,yy:"%d Joer"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("lb","lb",{closeText:"Fäerdeg",prevText:"Zréck",nextText:"Weider",currentText:"Haut",monthNames:["Januar","Februar","Mäerz","Abrëll","Mee","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mäe","Abr","Mee","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonndeg","Méindeg","Dënschdeg","Mëttwoch","Donneschdeg","Freideg","Samschdeg"],dayNamesShort:["Son","Méi","Dën","Mët","Don","Fre","Sam"],dayNamesMin:["So","Mé","Dë","Më","Do","Fr","Sa"],weekHeader:"W",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("lb",{buttonText:{month:"Mount",week:"Woch",day:"Dag",list:"Terminiwwersiicht"},allDayText:"Ganzen Dag",eventLimitText:"méi",noEventsMessage:"Nee Evenementer ze affichéieren"})}(),function(){!function(){function e(e,a,t,n){return a?"kelios sekundės":n?"kelių sekundžių":"kelias sekundes"}function t(e,a,t,n){return a?r(t)[0]:n?r(t)[1]:r(t)[2]}function n(e){return e%10===0||e>10&&e<20}function r(e){return d[e].split("_")}function s(e,a,s,d){var i=e+" ";return 1===e?i+t(e,a,s[0],d):a?i+(n(e)?r(s)[1]:r(s)[0]):d?i+r(s)[1]:i+(n(e)?r(s)[1]:r(s)[2])}var d={m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"},i=a.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?|MMMM?(\[[^\[\]]*\]|\s+)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:e,m:t,mm:s,h:t,hh:s,d:t,dd:s,M:t,MM:s,y:t,yy:s},ordinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}});return i}(),e.fullCalendar.datepickerLocale("lt","lt",{closeText:"Uždaryti",prevText:"<Atgal",nextText:"Pirmyn>",currentText:"Šiandien",monthNames:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthNamesShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],dayNames:["sekmadienis","pirmadienis","antradienis","trečiadienis","ketvirtadienis","penktadienis","šeštadienis"],dayNamesShort:["sek","pir","ant","tre","ket","pen","šeš"],dayNamesMin:["Se","Pr","An","Tr","Ke","Pe","Še"],weekHeader:"SAV",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),e.fullCalendar.locale("lt",{buttonText:{month:"Mėnuo",week:"Savaitė",day:"Diena",list:"Darbotvarkė"},allDayText:"Visą dieną",eventLimitText:"daugiau",noEventsMessage:"Nėra įvykių rodyti"})}(),function(){!function(){function e(e,a,t){return t?a%10===1&&a%100!==11?e[2]:e[3]:a%10===1&&a%100!==11?e[0]:e[1]}function t(a,t,n){return a+" "+e(s[n],a,t)}function n(a,t,n){return e(s[n],a,t)}function r(e,a){return a?"dažas sekundes":"dažām sekundēm"}var s={m:"minūtes_minūtēm_minūte_minūtes".split("_"),mm:"minūtes_minūtēm_minūte_minūtes".split("_"),h:"stundas_stundām_stunda_stundas".split("_"),hh:"stundas_stundām_stunda_stundas".split("_"),d:"dienas_dienām_diena_dienas".split("_"),dd:"dienas_dienām_diena_dienas".split("_"),M:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),MM:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")},d=a.defineLocale("lv",{months:"janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec".split("_"),weekdays:"svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Šodien pulksten] LT",nextDay:"[Rīt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pagājušā] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pēc %s",past:"pirms %s",s:r,m:n,mm:t,h:n,hh:t,d:n,dd:t,M:n,MM:t,y:n,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return d}(),e.fullCalendar.datepickerLocale("lv","lv",{closeText:"Aizvērt",prevText:"Iepr.",nextText:"Nāk.",currentText:"Šodien",monthNames:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthNamesShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],dayNames:["svētdiena","pirmdiena","otrdiena","trešdiena","ceturtdiena","piektdiena","sestdiena"],dayNamesShort:["svt","prm","otr","tre","ctr","pkt","sst"],dayNamesMin:["Sv","Pr","Ot","Tr","Ct","Pk","Ss"],weekHeader:"Ned.",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("lv",{buttonText:{month:"Mēnesis",week:"Nedēļa",day:"Diena",list:"Dienas kārtība"},allDayText:"Visu dienu",eventLimitText:function(e){return"+vēl "+e},noEventsMessage:"Nav notikumu, lai parādītu"})}(),function(){!function(){var e=a.defineLocale("mk",{months:"јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември".split("_"),monthsShort:"јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек".split("_"),weekdays:"недела_понеделник_вторник_среда_четврток_петок_сабота".split("_"),weekdaysShort:"нед_пон_вто_сре_чет_пет_саб".split("_"),weekdaysMin:"нe_пo_вт_ср_че_пе_сa".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Денес во] LT",nextDay:"[Утре во] LT",nextWeek:"[Во] dddd [во] LT",lastDay:"[Вчера во] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Изминатата] dddd [во] LT";case 1:case 2:case 4:case 5:return"[Изминатиот] dddd [во] LT"}},sameElse:"L"},relativeTime:{future:"после %s",past:"пред %s",s:"неколку секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дена",M:"месец",MM:"%d месеци",y:"година",yy:"%d години"},ordinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var a=e%10,t=e%100;return 0===e?e+"-ев":0===t?e+"-ен":t>10&&t<20?e+"-ти":1===a?e+"-ви":2===a?e+"-ри":7===a||8===a?e+"-ми":e+"-ти"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("mk","mk",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Денес",monthNames:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],dayNames:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],dayNamesShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Са"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("mk",{buttonText:{month:"Месец",week:"Недела",day:"Ден",list:"График"},allDayText:"Цел ден",eventLimitText:function(e){return"+повеќе "+e},noEventsMessage:"Нема настани за прикажување"})}(),function(){!function(){var e=a.defineLocale("ms",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"tengahari"===a?e>=11?e:e+12:"petang"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("ms","ms",{closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ms",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayText:"Sepanjang hari",eventLimitText:function(e){return"masih ada "+e+" acara"},noEventsMessage:"Tiada peristiwa untuk dipaparkan"})}(),function(){!function(){var e=a.defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"tengahari"===a?e>=11?e:e+12:"petang"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("ms-my","ms",{closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ms-my",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayText:"Sepanjang hari",eventLimitText:function(e){return"masih ada "+e+" acara"},noEventsMessage:"Tiada peristiwa untuk dipaparkan"})}(),function(){!function(){var e=a.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("nb","nb",{closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("nb",{buttonText:{month:"Måned",week:"Uke",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"til",noEventsMessage:"Ingen hendelser å vise"})}(),function(){!function(){var e="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),t="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),n=a.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(a,n){return/-MMM-/.test(n)?t[a.month()]:e[a.month()]},monthsParseExact:!0,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"Zo_Ma_Di_Wo_Do_Vr_Za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}});return n}(),e.fullCalendar.datepickerLocale("nl","nl",{closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("nl",{buttonText:{month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Hele dag",eventLimitText:"extra",noEventsMessage:"Geen evenementen om te laten zien"})}(),function(){!function(){var e=a.defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"sun_mån_tys_ons_tor_fre_lau".split("_"),weekdaysMin:"su_må_ty_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[I dag klokka] LT",nextDay:"[I morgon klokka] LT",nextWeek:"dddd [klokka] LT",lastDay:"[I går klokka] LT",lastWeek:"[Føregåande] dddd [klokka] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s sidan",s:"nokre sekund",m:"eit minutt",mm:"%d minutt",h:"ein time",hh:"%d timar",d:"ein dag",dd:"%d dagar",M:"ein månad",MM:"%d månader",y:"eit år",yy:"%d år"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("nn","nn",{closeText:"Lukk",prevText:"«Førre",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["sun","mån","tys","ons","tor","fre","lau"],dayNames:["sundag","måndag","tysdag","onsdag","torsdag","fredag","laurdag"],dayNamesMin:["su","må","ty","on","to","fr","la"],weekHeader:"Veke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("nn",{buttonText:{month:"Månad",week:"Veke",day:"Dag",list:"Agenda"},allDayText:"Heile dagen",eventLimitText:"til",noEventsMessage:"Ingen hendelser å vise"})}(),function(){!function(){function e(e){return e%10<5&&e%10>1&&~~(e/10)%10!==1}function t(a,t,n){var r=a+" ";switch(n){case"m":return t?"minuta":"minutę";case"mm":return r+(e(a)?"minuty":"minut");case"h":return t?"godzina":"godzinę";case"hh":return r+(e(a)?"godziny":"godzin");case"MM":return r+(e(a)?"miesiące":"miesięcy");case"yy":return r+(e(a)?"lata":"lat")}}var n="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),r="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_"),s=a.defineLocale("pl",{months:function(e,a){return""===a?"("+r[e.month()]+"|"+n[e.month()]+")":/D MMMM/.test(a)?r[e.month()]:n[e.month()]},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"nie_pon_wt_śr_czw_pt_sb".split("_"),weekdaysMin:"Nd_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:"[W] dddd [o] LT",lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:t,mm:t,h:t,hh:t,d:"1 dzień",dd:"%d dni",M:"miesiąc",MM:t,y:"rok",yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("pl","pl",{closeText:"Zamknij",prevText:"<Poprzedni",nextText:"Następny>",currentText:"Dziś",monthNames:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthNamesShort:["Sty","Lu","Mar","Kw","Maj","Cze","Lip","Sie","Wrz","Pa","Lis","Gru"],dayNames:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],dayNamesShort:["Nie","Pn","Wt","Śr","Czw","Pt","So"],dayNamesMin:["N","Pn","Wt","Śr","Cz","Pt","So"],weekHeader:"Tydz",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("pl",{buttonText:{month:"Miesiąc",week:"Tydzień",day:"Dzień",list:"Plan dnia"},allDayText:"Cały dzień",eventLimitText:"więcej",noEventsMessage:"Brak wydarzeń do wyświetlenia"})}(),function(){!function(){var e=a.defineLocale("pt",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ª_3ª_4ª_5ª_6ª_Sáb".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("pt","pt",{closeText:"Fechar",prevText:"Anterior",nextText:"Seguinte",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sem",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("pt",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Agenda"},allDayText:"Todo o dia",eventLimitText:"mais",noEventsMessage:"Não há eventos para mostrar"})}(),function(){!function(){var e=a.defineLocale("pt-br",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ª_3ª_4ª_5ª_6ª_Sáb".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"%s atrás",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº"});return e}(),e.fullCalendar.datepickerLocale("pt-br","pt-BR",{closeText:"Fechar",prevText:"<Anterior",nextText:"Próximo>",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"], +weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("pt-br",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Compromissos"},allDayText:"dia inteiro",eventLimitText:function(e){return"mais +"+e},noEventsMessage:"Não há eventos para mostrar"})}(),function(){!function(){function e(e,a,t){var n={mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"},r=" ";return(e%100>=20||e>=100&&e%100===0)&&(r=" de "),e+r+n[t]}var t=a.defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"duminică_luni_marți_miercuri_joi_vineri_sâmbătă".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mâine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s în urmă",s:"câteva secunde",m:"un minut",mm:e,h:"o oră",hh:e,d:"o zi",dd:e,M:"o lună",MM:e,y:"un an",yy:e},week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("ro","ro",{closeText:"Închide",prevText:"« Luna precedentă",nextText:"Luna următoare »",currentText:"Azi",monthNames:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthNamesShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],dayNamesShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],dayNamesMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],weekHeader:"Săpt",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ro",{buttonText:{prev:"precedentă",next:"următoare",month:"Lună",week:"Săptămână",day:"Zi",list:"Agendă"},allDayText:"Toată ziua",eventLimitText:function(e){return"+alte "+e},noEventsMessage:"Nu există evenimente de afișat"})}(),function(){!function(){function e(e,a){var t=e.split("_");return a%10===1&&a%100!==11?t[0]:a%10>=2&&a%10<=4&&(a%100<10||a%100>=20)?t[1]:t[2]}function t(a,t,n){var r={mm:t?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"};return"m"===n?t?"минута":"минуту":a+" "+e(r[n],+a)}var n=[/^янв/i,/^фев/i,/^мар/i,/^апр/i,/^ма[йя]/i,/^июн/i,/^июл/i,/^авг/i,/^сен/i,/^окт/i,/^ноя/i,/^дек/i],r=a.defineLocale("ru",{months:{format:"января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"),standalone:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_")},monthsShort:{format:"янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"),standalone:"янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_")},weekdays:{standalone:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),format:"воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу".split("_"),isFormat:/\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/},weekdaysShort:"вс_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,monthsShortRegex:/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,monthsStrictRegex:/^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,monthsShortStrictRegex:/^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., HH:mm",LLLL:"dddd, D MMMM YYYY г., HH:mm"},calendar:{sameDay:"[Сегодня в] LT",nextDay:"[Завтра в] LT",lastDay:"[Вчера в] LT",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В следующее] dddd [в] LT";case 1:case 2:case 4:return"[В следующий] dddd [в] LT";case 3:case 5:case 6:return"[В следующую] dddd [в] LT"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В прошлое] dddd [в] LT";case 1:case 2:case 4:return"[В прошлый] dddd [в] LT";case 3:case 5:case 6:return"[В прошлую] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",m:t,mm:t,h:"час",hh:t,d:"день",dd:t,M:"месяц",MM:t,y:"год",yy:t},meridiemParse:/ночи|утра|дня|вечера/i,isPM:function(e){return/^(дня|вечера)$/.test(e)},meridiem:function(e,a,t){return e<4?"ночи":e<12?"утра":e<17?"дня":"вечера"},ordinalParse:/\d{1,2}-(й|го|я)/,ordinal:function(e,a){switch(a){case"M":case"d":case"DDD":return e+"-й";case"D":return e+"-го";case"w":case"W":return e+"-я";default:return e}},week:{dow:1,doy:7}});return r}(),e.fullCalendar.datepickerLocale("ru","ru",{closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],dayNamesShort:["вск","пнд","втр","срд","чтв","птн","сбт"],dayNamesMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ru",{buttonText:{month:"Месяц",week:"Неделя",day:"День",list:"Повестка дня"},allDayText:"Весь день",eventLimitText:function(e){return"+ ещё "+e},noEventsMessage:"Нет событий для отображения"})}(),function(){!function(){function e(e){return e>1&&e<5}function t(a,t,n,r){var s=a+" ";switch(n){case"s":return t||r?"pár sekúnd":"pár sekundami";case"m":return t?"minúta":r?"minútu":"minútou";case"mm":return t||r?s+(e(a)?"minúty":"minút"):s+"minútami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?s+(e(a)?"hodiny":"hodín"):s+"hodinami";case"d":return t||r?"deň":"dňom";case"dd":return t||r?s+(e(a)?"dni":"dní"):s+"dňami";case"M":return t||r?"mesiac":"mesiacom";case"MM":return t||r?s+(e(a)?"mesiace":"mesiacov"):s+"mesiacmi";case"y":return t||r?"rok":"rokom";case"yy":return t||r?s+(e(a)?"roky":"rokov"):s+"rokmi"}}var n="január_február_marec_apríl_máj_jún_júl_august_september_október_november_december".split("_"),r="jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec".split("_"),s=a.defineLocale("sk",{months:n,monthsShort:r,weekdays:"nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[včera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulú nedeľu o] LT";case 1:case 2:return"[minulý] dddd [o] LT";case 3:return"[minulú stredu o] LT";case 4:case 5:return"[minulý] dddd [o] LT";case 6:return"[minulú sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("sk","sk",{closeText:"Zavrieť",prevText:"<Predchádzajúci",nextText:"Nasledujúci>",currentText:"Dnes",monthNames:["január","február","marec","apríl","máj","jún","júl","august","september","október","november","december"],monthNamesShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],dayNames:["nedeľa","pondelok","utorok","streda","štvrtok","piatok","sobota"],dayNamesShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],dayNamesMin:["Ne","Po","Ut","St","Št","Pia","So"],weekHeader:"Ty",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sk",{buttonText:{month:"Mesiac",week:"Týždeň",day:"Deň",list:"Rozvrh"},allDayText:"Celý deň",eventLimitText:function(e){return"+ďalšie: "+e},noEventsMessage:"Žiadne akcie na zobrazenie"})}(),function(){!function(){function e(e,a,t,n){var r=e+" ";switch(t){case"s":return a||n?"nekaj sekund":"nekaj sekundami";case"m":return a?"ena minuta":"eno minuto";case"mm":return r+=1===e?a?"minuta":"minuto":2===e?a||n?"minuti":"minutama":e<5?a||n?"minute":"minutami":a||n?"minut":"minutami";case"h":return a?"ena ura":"eno uro";case"hh":return r+=1===e?a?"ura":"uro":2===e?a||n?"uri":"urama":e<5?a||n?"ure":"urami":a||n?"ur":"urami";case"d":return a||n?"en dan":"enim dnem";case"dd":return r+=1===e?a||n?"dan":"dnem":2===e?a||n?"dni":"dnevoma":a||n?"dni":"dnevi";case"M":return a||n?"en mesec":"enim mesecem";case"MM":return r+=1===e?a||n?"mesec":"mesecem":2===e?a||n?"meseca":"mesecema":e<5?a||n?"mesece":"meseci":a||n?"mesecev":"meseci";case"y":return a||n?"eno leto":"enim letom";case"yy":return r+=1===e?a||n?"leto":"letom":2===e?a||n?"leti":"letoma":e<5?a||n?"leta":"leti":a||n?"let":"leti"}}var t=a.defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._čet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_če_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[včeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prejšnjo] [nedeljo] [ob] LT";case 3:return"[prejšnjo] [sredo] [ob] LT";case 6:return"[prejšnjo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"čez %s",past:"pred %s",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("sl","sl",{closeText:"Zapri",prevText:"<Prejšnji",nextText:"Naslednji>",currentText:"Trenutni",monthNames:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],dayNamesShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],dayNamesMin:["Ne","Po","To","Sr","Če","Pe","So"],weekHeader:"Teden",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sl",{buttonText:{month:"Mesec",week:"Teden",day:"Dan",list:"Dnevni red"},allDayText:"Ves dan",eventLimitText:"več",noEventsMessage:"Ni dogodkov za prikaz"})}(),function(){!function(){var e={words:{m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,a){return 1===e?a[0]:e>=2&&e<=4?a[1]:a[2]},translate:function(a,t,n){var r=e.words[n];return 1===n.length?t?r[0]:r[1]:a+" "+e.correctGrammaticalCase(a,r)}},t=a.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){var e=["[prošle] [nedelje] [u] LT","[prošlog] [ponedeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"dan",dd:e.translate,M:"mesec",MM:e.translate,y:"godinu",yy:e.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("sr","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sr",{buttonText:{month:"Месец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео дан",eventLimitText:function(e){return"+ још "+e},noEventsMessage:"Нема догађаја за приказ"})}(),function(){!function(){var e={words:{m:["један минут","једне минуте"],mm:["минут","минуте","минута"],h:["један сат","једног сата"],hh:["сат","сата","сати"],dd:["дан","дана","дана"],MM:["месец","месеца","месеци"],yy:["година","године","година"]},correctGrammaticalCase:function(e,a){return 1===e?a[0]:e>=2&&e<=4?a[1]:a[2]},translate:function(a,t,n){var r=e.words[n];return 1===n.length?t?r[0]:r[1]:a+" "+e.correctGrammaticalCase(a,r)}},t=a.defineLocale("sr-cyrl",{months:"јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар".split("_"),monthsShort:"јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.".split("_"),monthsParseExact:!0,weekdays:"недеља_понедељак_уторак_среда_четвртак_петак_субота".split("_"),weekdaysShort:"нед._пон._уто._сре._чет._пет._суб.".split("_"),weekdaysMin:"не_по_ут_ср_че_пе_су".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[данас у] LT",nextDay:"[сутра у] LT",nextWeek:function(){switch(this.day()){case 0:return"[у] [недељу] [у] LT";case 3:return"[у] [среду] [у] LT";case 6:return"[у] [суботу] [у] LT";case 1:case 2:case 4:case 5:return"[у] dddd [у] LT"}},lastDay:"[јуче у] LT",lastWeek:function(){var e=["[прошле] [недеље] [у] LT","[прошлог] [понедељка] [у] LT","[прошлог] [уторка] [у] LT","[прошле] [среде] [у] LT","[прошлог] [четвртка] [у] LT","[прошлог] [петка] [у] LT","[прошле] [суботе] [у] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"за %s",past:"пре %s",s:"неколико секунди",m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"дан",dd:e.translate,M:"месец",MM:e.translate,y:"годину",yy:e.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("sr-cyrl","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sr-cyrl",{buttonText:{month:"Месец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео дан",eventLimitText:function(e){return"+ још "+e},noEventsMessage:"Нема догађаја за приказ"})}(),function(){!function(){var e=a.defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mån_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_må_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Igår] LT",nextWeek:"[På] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"några sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en månad",MM:"%d månader",y:"ett år",yy:"%d år"},ordinalParse:/\d{1,2}(e|a)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"e":1===a?"a":2===a?"a":"e";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("sv","sv",{closeText:"Stäng",prevText:"«Förra",nextText:"Nästa»",currentText:"Idag",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNamesShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],dayNames:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesMin:["Sö","Må","Ti","On","To","Fr","Lö"],weekHeader:"Ve",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sv",{buttonText:{month:"Månad",week:"Vecka",day:"Dag",list:"Program"},allDayText:"Heldag",eventLimitText:"till",noEventsMessage:"Inga händelser att visa"})}(),function(){!function(){var e=a.defineLocale("th",{months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.".split("_"),monthsParseExact:!0,weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H นาฬิกา m นาที",LTS:"H นาฬิกา m นาที s วินาที",L:"YYYY/MM/DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H นาฬิกา m นาที",LLLL:"วันddddที่ D MMMM YYYY เวลา H นาฬิกา m นาที"},meridiemParse:/ก่อนเที่ยง|หลังเที่ยง/,isPM:function(e){return"หลังเที่ยง"===e},meridiem:function(e,a,t){return e<12?"ก่อนเที่ยง":"หลังเที่ยง"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุ่งนี้ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมื่อวานนี้ เวลา] LT",lastWeek:"[วัน]dddd[ที่แล้ว เวลา] LT",sameElse:"L"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"}});return e}(),e.fullCalendar.datepickerLocale("th","th",{closeText:"ปิด",prevText:"« ย้อน",nextText:"ถัดไป »",currentText:"วันนี้",monthNames:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthNamesShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],dayNames:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์"],dayNamesShort:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],dayNamesMin:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("th",{buttonText:{month:"เดือน",week:"สัปดาห์",day:"วัน",list:"แผนงาน"},allDayText:"ตลอดวัน",eventLimitText:"เพิ่มเติม",noEventsMessage:"ไม่มีกิจกรรมที่จะแสดง"})}(),function(){!function(){var e={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"},t=a.defineLocale("tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[haftaya] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen hafta] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinalParse:/\d{1,2}'(inci|nci|üncü|ncı|uncu|ıncı)/,ordinal:function(a){if(0===a)return a+"'ıncı";var t=a%10,n=a%100-t,r=a>=100?100:null;return a+(e[t]||e[n]||e[r])},week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("tr","tr",{closeText:"kapat",prevText:"<geri",nextText:"ileri>",currentText:"bugün",monthNames:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],dayNames:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],dayNamesShort:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],dayNamesMin:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("tr",{buttonText:{next:"ileri",month:"Ay",week:"Hafta",day:"Gün",list:"Ajanda"},allDayText:"Tüm gün",eventLimitText:"daha fazla",noEventsMessage:"Herhangi bir etkinlik görüntülemek için"})}(),function(){!function(){function e(e,a){var t=e.split("_");return a%10===1&&a%100!==11?t[0]:a%10>=2&&a%10<=4&&(a%100<10||a%100>=20)?t[1]:t[2]}function t(a,t,n){var r={mm:t?"хвилина_хвилини_хвилин":"хвилину_хвилини_хвилин",hh:t?"година_години_годин":"годину_години_годин",dd:"день_дні_днів",MM:"місяць_місяці_місяців",yy:"рік_роки_років"};return"m"===n?t?"хвилина":"хвилину":"h"===n?t?"година":"годину":a+" "+e(r[n],+a)}function n(e,a){var t={nominative:"неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота".split("_"),accusative:"неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу".split("_"),genitive:"неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи".split("_")},n=/(\[[ВвУу]\]) ?dddd/.test(a)?"accusative":/\[?(?:минулої|наступної)? ?\] ?dddd/.test(a)?"genitive":"nominative";return t[n][e.day()]}function r(e){return function(){return e+"о"+(11===this.hours()?"б":"")+"] LT"}}var s=a.defineLocale("uk",{months:{format:"січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня".split("_"),standalone:"січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень".split("_")},monthsShort:"січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд".split("_"),weekdays:n,weekdaysShort:"нд_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY р.",LLL:"D MMMM YYYY р., HH:mm",LLLL:"dddd, D MMMM YYYY р., HH:mm"},calendar:{sameDay:r("[Сьогодні "),nextDay:r("[Завтра "),lastDay:r("[Вчора "),nextWeek:r("[У] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return r("[Минулої] dddd [").call(this);case 1:case 2:case 4:return r("[Минулого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"за %s",past:"%s тому",s:"декілька секунд",m:t,mm:t,h:"годину",hh:t,d:"день",dd:t,M:"місяць",MM:t,y:"рік",yy:t},meridiemParse:/ночі|ранку|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e,a,t){return e<4?"ночі":e<12?"ранку":e<17?"дня":"вечора"},ordinalParse:/\d{1,2}-(й|го)/,ordinal:function(e,a){switch(a){case"M":case"d":case"DDD":case"w":case"W":return e+"-й";case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}});return s}(),e.fullCalendar.datepickerLocale("uk","uk",{closeText:"Закрити",prevText:"<",nextText:">",currentText:"Сьогодні",monthNames:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthNamesShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],dayNames:["неділя","понеділок","вівторок","середа","четвер","п’ятниця","субота"],dayNamesShort:["нед","пнд","вів","срд","чтв","птн","сбт"],dayNamesMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Тиж",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("uk",{buttonText:{month:"Місяць",week:"Тиждень",day:"День",list:"Порядок денний"},allDayText:"Увесь день",eventLimitText:function(e){return"+ще "+e+"..."},noEventsMessage:"Немає подій для відображення"})}(),function(){!function(){var e=a.defineLocale("vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),monthsParseExact:!0,weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,a,t){return e<12?t?"sa":"SA":t?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY HH:mm",LLLL:"dddd, D MMMM [năm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[Hôm nay lúc] LT",nextDay:"[Ngày mai lúc] LT",nextWeek:"dddd [tuần tới lúc] LT",lastDay:"[Hôm qua lúc] LT",lastWeek:"dddd [tuần rồi lúc] LT",sameElse:"L"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"},ordinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("vi","vi",{closeText:"Đóng",prevText:"<Trước",nextText:"Tiếp>",currentText:"Hôm nay",monthNames:["Tháng Một","Tháng Hai","Tháng Ba","Tháng Tư","Tháng Năm","Tháng Sáu","Tháng Bảy","Tháng Tám","Tháng Chín","Tháng Mười","Tháng Mười Một","Tháng Mười Hai"],monthNamesShort:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],dayNames:["Chủ Nhật","Thứ Hai","Thứ Ba","Thứ Tư","Thứ Năm","Thứ Sáu","Thứ Bảy"],dayNamesShort:["CN","T2","T3","T4","T5","T6","T7"],dayNamesMin:["CN","T2","T3","T4","T5","T6","T7"],weekHeader:"Tu",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("vi",{buttonText:{month:"Tháng",week:"Tuần",day:"Ngày",list:"Lịch biểu"},allDayText:"Cả ngày",eventLimitText:function(e){return"+ thêm "+e},noEventsMessage:"Không có sự kiện để hiển thị"})}(),function(){!function(){var e=a.defineLocale("zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"Ah点mm分",LTS:"Ah点m分s秒",L:"YYYY-MM-DD",LL:"YYYY年MMMD日",LLL:"YYYY年MMMD日Ah点mm分",LLLL:"YYYY年MMMD日ddddAh点mm分",l:"YYYY-MM-DD",ll:"YYYY年MMMD日",lll:"YYYY年MMMD日Ah点mm分",llll:"YYYY年MMMD日ddddAh点mm分"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,a){return 12===e&&(e=0),"凌晨"===a||"早上"===a||"上午"===a?e:"下午"===a||"晚上"===a?e+12:e>=11?e:e+12},meridiem:function(e,a,t){var n=100*e+a;return n<600?"凌晨":n<900?"早上":n<1130?"上午":n<1230?"中午":n<1800?"下午":"晚上"},calendar:{sameDay:function(){return 0===this.minutes()?"[今天]Ah[点整]":"[今天]LT"},nextDay:function(){return 0===this.minutes()?"[明天]Ah[点整]":"[明天]LT"},lastDay:function(){return 0===this.minutes()?"[昨天]Ah[点整]":"[昨天]LT"},nextWeek:function(){var e,t;return e=a().startOf("week"),t=this.diff(e,"days")>=7?"[下]":"[本]",0===this.minutes()?t+"dddAh点整":t+"dddAh点mm"},lastWeek:function(){var e,t;return e=a().startOf("week"),t=this.unix()=11?e:e+12:"下午"===a||"晚上"===a?e+12:void 0},meridiem:function(e,a,t){var n=100*e+a;return n<600?"凌晨":n<900?"早上":n<1130?"上午":n<1230?"中午":n<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},ordinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,a){switch(a){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週"; +default:return e}},relativeTime:{future:"%s內",past:"%s前",s:"幾秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}});return e}(),e.fullCalendar.datepickerLocale("zh-tw","zh-TW",{closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy/mm/dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),e.fullCalendar.locale("zh-tw",{buttonText:{month:"月",week:"週",day:"天",list:"待辦事項"},allDayText:"全天",eventLimitText:"更多",noEventsMessage:"没有事件显示"})}(),a.locale("en"),e.fullCalendar.locale("en"),e.datepicker&&e.datepicker.setDefaults(e.datepicker.regional[""])}); \ No newline at end of file -- cgit v1.2.3 From 1fd8c7ac4253f78cf31e41bd5e60b4f8c4b2bf82 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 15 Sep 2016 10:15:02 +0200 Subject: fix #512 --- doc/hidden_configs.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/hidden_configs.bb b/doc/hidden_configs.bb index 35408c037..f34c253ce 100644 --- a/doc/hidden_configs.bb +++ b/doc/hidden_configs.bb @@ -41,7 +41,7 @@ Options are: [*= system.block_public_search ] Similar to block_public, except only blocks public access to search features. Useful for sites that want to be public, but keep getting hammered by search engines. [*= system.cron_hour ] Specify an hour in which to run cron_daily. By default with no config, this will run at midnight UTC. [*= system.default_permissions_role ] If set to a valid permissions role name, use that role for the first channel created by a new account and don't ask for the "Channel Type" on the channel creation form. Examples of valid names are: 'social', 'social_restricted', 'social_private', 'forum', 'forum_restricted' and 'forum_private'. Read more about permissions roles [zrl=[baseurl]/help/roles]here[/zrl]. - [*= system.default_photo_profile ] Set the profile photo that new channels start with. This should contain the name of a directory located under [font=courier]images/default_profile_photos/[/font], or be left unset. If not set then 'rainbow_man' is assumed. + [*= system.default_profile_photo ] Set the profile photo that new channels start with. This should contain the name of a directory located under [font=courier]images/default_profile_photos/[/font], or be left unset. If not set then 'rainbow_man' is assumed. [*= system.directorytags ] Set the number of keyword tags displayed on the directory page. Default is 50 unless set to a positive integer. [*= system.disable_directory_keywords ] If '1', do not show directory keywords. If the hub is a directory server, prevent returning tags to any directory clients. Please do not set this for directory servers in the RED_GLOBAL realm. [*= system.disable_discover_tab ] This allows you to completely disable the ability to discover public content from external sites. -- cgit v1.2.3 From f55636bcb51865f341177fd1abbea51612480699 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 15 Sep 2016 10:20:04 +0200 Subject: fix #514 --- install/sample-nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/sample-nginx.conf b/install/sample-nginx.conf index e9a80d226..da84c8b09 100644 --- a/install/sample-nginx.conf +++ b/install/sample-nginx.conf @@ -92,7 +92,7 @@ server { # otherwise fall back to front controller # allow browser to cache them # added .htm for advanced source code editor library - location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|ttf|woff|svg)$ { + location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|ttf|woff|woff2|svg)$ { expires 30d; try_files $uri /index.php?q=$uri&$args; } -- cgit v1.2.3 From 31df7af61f449d2fe307b3440c7dd7bf4b016cf0 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 15 Sep 2016 10:36:46 +0200 Subject: do not show hidden channels in /randprof issue #513 --- include/connections.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/connections.php b/include/connections.php index 4f685388c..017117dda 100644 --- a/include/connections.php +++ b/include/connections.php @@ -608,7 +608,7 @@ function random_profile() { for($i = 0; $i < $retryrandom; $i++) { - $r = q("select xchan_url from xchan left join hubloc on hubloc_hash = xchan_hash where xchan_addr not like '%s' and hubloc_connected > %s - interval %s order by $randfunc limit 1", + $r = q("select xchan_url from xchan left join hubloc on hubloc_hash = xchan_hash where xchan_addr not like '%s' and xchan_hidden = 0 and hubloc_connected > %s - interval %s order by $randfunc limit 1", dbesc('sys@%'), db_utcnow(), db_quoteinterval('30 day') ); -- cgit v1.2.3 From 0754da58da96316a9ff4505f9c7c712c1f0094b6 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 17 Sep 2016 14:51:57 -0700 Subject: some changes merged from wrong branch... new function channel_reddress() instead of hardwired generation and which fixes case-sensitivity; allow dot notation in config and pconfig utils, updated string file --- Zotlabs/Module/Connect.php | 4 +- Zotlabs/Module/Fhublocs.php | 4 +- Zotlabs/Module/Import.php | 4 +- Zotlabs/Module/Magic.php | 2 +- Zotlabs/Module/Xrd.php | 2 +- include/channel.php | 5 + util/config | 6 +- util/hmessages.po | 9506 +++++++++++++++++++++---------------------- util/pconfig | 7 + 9 files changed, 4778 insertions(+), 4762 deletions(-) diff --git a/Zotlabs/Module/Connect.php b/Zotlabs/Module/Connect.php index 962c05cce..dec375104 100644 --- a/Zotlabs/Module/Connect.php +++ b/Zotlabs/Module/Connect.php @@ -60,13 +60,13 @@ class Connect extends \Zotlabs\Web\Controller { $observer = \App::get_observer(); if(($observer) && ($_POST['submit'] === t('Continue'))) { if($observer['xchan_follow']) - $url = sprintf($observer['xchan_follow'],urlencode(\App::$data['channel']['channel_address'] . '@' . \App::get_hostname())); + $url = sprintf($observer['xchan_follow'],urlencode(channel_reddress(\App::$data['channel']))); if(! $url) { $r = q("select * from hubloc where hubloc_hash = '%s' order by hubloc_id desc limit 1", dbesc($observer['xchan_hash']) ); if($r) - $url = $r[0]['hubloc_url'] . '/follow?f=&url=' . urlencode(\App::$data['channel']['channel_address'] . '@' . \App::get_hostname()); + $url = $r[0]['hubloc_url'] . '/follow?f=&url=' . urlencode(channel_reddress(\App::$data['channel'])); } } if($url) diff --git a/Zotlabs/Module/Fhublocs.php b/Zotlabs/Module/Fhublocs.php index f5b439421..cdf323a41 100644 --- a/Zotlabs/Module/Fhublocs.php +++ b/Zotlabs/Module/Fhublocs.php @@ -42,7 +42,7 @@ class Fhublocs extends \Zotlabs\Web\Controller { if($y) $primary_address = $y[0]['xchan_addr']; - $hub_address = $rr['channel']['channel_address'] . '@' . \App::get_hostname(); + $hub_address = channel_reddress($rr['channel']); $primary = (($hub_address === $primary_address) ? 1 : 0); @@ -61,7 +61,7 @@ class Fhublocs extends \Zotlabs\Web\Controller { dbesc($rr['channel_guid']), dbesc($rr['channel_guid_sig']), dbesc($rr['channel_hash']), - dbesc($rr['channel_address'] . '@' . \App::get_hostname()), + dbesc(channel_reddress($rr)), intval($primary), dbesc(z_root()), dbesc(base64url_encode(rsa_sign(z_root(),$rr['channel_prvkey']))), diff --git a/Zotlabs/Module/Import.php b/Zotlabs/Module/Import.php index d27f013b9..9574de07c 100644 --- a/Zotlabs/Module/Import.php +++ b/Zotlabs/Module/Import.php @@ -209,7 +209,7 @@ class Import extends \Zotlabs\Web\Controller { dbesc($channel['channel_guid']), dbesc($channel['channel_guid_sig']), dbesc($channel['channel_hash']), - dbesc($channel['channel_address'] . '@' . \App::get_hostname()), + dbesc(channel_reddress($channel)), dbesc('zot'), intval(($seize) ? 1 : 0), dbesc(z_root()), @@ -252,7 +252,7 @@ class Import extends \Zotlabs\Web\Controller { dbesc(z_root() . "/photo/profile/l/" . $channel['channel_id']), dbesc(z_root() . "/photo/profile/m/" . $channel['channel_id']), dbesc(z_root() . "/photo/profile/s/" . $channel['channel_id']), - dbesc($channel['channel_address'] . '@' . \App::get_hostname()), + dbesc(channel_reddress($channel)), dbesc(z_root() . '/channel/' . $channel['channel_address']), dbesc(z_root() . '/follow?f=&url=%s'), dbesc(z_root() . '/poco/' . $channel['channel_address']), diff --git a/Zotlabs/Module/Magic.php b/Zotlabs/Module/Magic.php index 6798f72a9..9ee5f9324 100644 --- a/Zotlabs/Module/Magic.php +++ b/Zotlabs/Module/Magic.php @@ -140,7 +140,7 @@ class Magic extends \Zotlabs\Web\Controller { \Zotlabs\Zot\Verify::create('auth',$channel['channel_id'],$token,$x[0]['hubloc_url']); - $target_url = $x[0]['hubloc_callback'] . '/?f=&auth=' . urlencode($channel['channel_address'] . '@' . \App::get_hostname()) + $target_url = $x[0]['hubloc_callback'] . '/?f=&auth=' . urlencode(channel_reddress($channel)) . '&sec=' . $token . '&dest=' . urlencode($dest) . '&version=' . ZOT_REVISION; if($delegate) diff --git a/Zotlabs/Module/Xrd.php b/Zotlabs/Module/Xrd.php index d71fae695..3ed19962b 100644 --- a/Zotlabs/Module/Xrd.php +++ b/Zotlabs/Module/Xrd.php @@ -43,7 +43,7 @@ class Xrd extends \Zotlabs\Web\Controller { header("Content-type: application/xrd+xml"); - $aliases = array('acct:' . $r[0]['channel_address'] . '@' . \App::get_hostname(), z_root() . '/channel/' . $r[0]['channel_address'], z_root() . '/~' . $r[0]['channel_address']); + $aliases = array('acct:' . channel_reddress($r[0]), z_root() . '/channel/' . $r[0]['channel_address'], z_root() . '/~' . $r[0]['channel_address']); for($x = 0; $x < count($aliases); $x ++) { if($aliases[$x] === $resource) diff --git a/include/channel.php b/include/channel.php index 7bfa2b6a2..ce515c917 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1894,3 +1894,8 @@ function channelx_by_n($id) { return(($r) ? $r[0] : false); } +function channel_reddress($channel) { + if(! ($channel && array_key_exists('channel_address',$channel))) + return ''; + return strtolower($channel['channel_address'] . '@' . App::get_hostname()); +} \ No newline at end of file diff --git a/util/config b/util/config index d4bcd5da1..38d2fed4f 100755 --- a/util/config +++ b/util/config @@ -48,7 +48,11 @@ EndOfOutput; return; } - +if($argc > 1 && strpos($argv[1],'.')) { + $x = explode('.',$argv[1]); + $argv = [ $argv[0], $x[0], $x[1], (($argc > 2) ? $argv[2] : null) ]; + $argc = $argc + 1; +} if($argc > 3) { set_config($argv[1],$argv[2],$argv[3]); diff --git a/util/hmessages.po b/util/hmessages.po index 71cf4ef02..ffd91669f 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 00:02-0700\n" +"POT-Creation-Date: 2016-09-17 14:51-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -88,12 +88,12 @@ msgid "Special - Group Repository" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:204 -#: ../../Zotlabs/Module/New_channel.php:132 #: ../../Zotlabs/Module/Register.php:213 +#: ../../Zotlabs/Module/New_channel.php:132 #: ../../Zotlabs/Module/Settings/Channel.php:442 -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:949 +#: ../../include/permissions.php:949 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 msgid "Other" msgstr "" @@ -170,7 +170,7 @@ msgstr "" msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2708 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2711 msgid "Collection" msgstr "" @@ -217,16 +217,16 @@ msgid "Shared" msgstr "" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:147 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Module/New_channel.php:147 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 -#: ../../Zotlabs/Module/Webpages.php:239 msgid "Create" msgstr "" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1692 msgid "Upload" msgstr "" @@ -244,7 +244,7 @@ msgid "Type" msgstr "" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1369 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1372 msgid "Size" msgstr "" @@ -254,33 +254,33 @@ msgid "Last Modified" msgstr "" #: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin/Profs.php:154 -#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:192 -#: ../../Zotlabs/Module/Editpost.php:84 ../../Zotlabs/Module/Webpages.php:240 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Thing.php:260 #: ../../Zotlabs/Module/Settings/Oauth.php:149 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 -#: ../../include/channel.php:963 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/menu.php:113 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/menu.php:113 msgid "Edit" msgstr "" #: ../../Zotlabs/Storage/Browser.php:241 -#: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:170 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Group.php:177 #: ../../Zotlabs/Module/Admin/Accounts.php:174 #: ../../Zotlabs/Module/Admin/Channels.php:153 #: ../../Zotlabs/Module/Admin/Profs.php:155 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Connedit.php:607 +#: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Photos.php:1179 #: ../../Zotlabs/Module/Settings/Oauth.php:150 ../../Zotlabs/Lib/Apps.php:342 #: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" @@ -314,52 +314,52 @@ msgstr "" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 #: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Api.php:12 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 #: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 #: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Setup.php:220 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Like.php:181 #: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 +#: ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Rate.php:113 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Setup.php:220 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Settings.php:59 -#: ../../Zotlabs/Module/Mail.php:121 ../../Zotlabs/Module/Item.php:214 -#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 -#: ../../Zotlabs/Module/Regmod.php:21 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Webpages.php:116 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Pdledit.php:29 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Connedit.php:395 +#: ../../Zotlabs/Module/Photos.php:73 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 @@ -407,10 +407,10 @@ msgstr "" #: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Webpages.php:33 ../../include/channel.php:859 +#: ../../Zotlabs/Module/Layouts.php:31 ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "" @@ -426,335 +426,269 @@ msgstr "" msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 -#: ../../include/widgets.php:102 -msgid "Apps" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" msgstr "" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" msgstr "" -#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" msgstr "" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:509 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" msgstr "" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" msgstr "" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" msgstr "" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" msgstr "" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" msgstr "" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 -#: ../../include/bb2diaspora.php:507 ../../include/event.php:52 -#: ../../include/event.php:84 -msgid "Location:" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" msgstr "" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" msgstr "" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" msgstr "" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" msgstr "" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 -#: ../../include/connections.php:78 ../../include/conversation.php:957 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 -msgid "Connect" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" msgstr "" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" msgstr "" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" msgstr "" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" msgstr "" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." msgstr "" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." msgstr "" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." msgstr "" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." msgstr "" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" msgstr "" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." +#: ../../Zotlabs/Module/Register.php:229 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Admin.php:62 ../../Zotlabs/Module/Display.php:40 -#: ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin/Plugins.php:254 -#: ../../Zotlabs/Module/Admin/Themes.php:69 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3417 -msgid "Item not found." +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" msgstr "" -#: ../../Zotlabs/Module/Admin.php:97 -msgid "# Accounts" +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" msgstr "" -#: ../../Zotlabs/Module/Admin.php:98 -msgid "# blocked accounts" +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" msgstr "" -#: ../../Zotlabs/Module/Admin.php:99 -msgid "# expired accounts" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" msgstr "" -#: ../../Zotlabs/Module/Admin.php:100 -msgid "# expiring accounts" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Name or caption" msgstr "" -#: ../../Zotlabs/Module/Admin.php:111 -msgid "# Channels" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" msgstr "" -#: ../../Zotlabs/Module/Admin.php:112 -msgid "# primary" +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "Choose a short nickname" msgstr "" -#: ../../Zotlabs/Module/Admin.php:113 -msgid "# clones" +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:119 -msgid "Message queues" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Channel role and privacy" msgstr "" -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Your software should be updated" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Select a channel role with your privacy requirements." msgstr "" -#: ../../Zotlabs/Module/Admin.php:141 -#: ../../Zotlabs/Module/Admin/Accounts.php:165 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Plugins.php:336 -#: ../../Zotlabs/Module/Admin/Plugins.php:427 -#: ../../Zotlabs/Module/Admin/Security.php:86 -#: ../../Zotlabs/Module/Admin/Site.php:265 -#: ../../Zotlabs/Module/Admin/Themes.php:120 -#: ../../Zotlabs/Module/Admin/Themes.php:154 -msgid "Administration" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Read more about roles" msgstr "" -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Summary" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" msgstr "" -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Registered accounts" +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" msgstr "" -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Pending registrations" +#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Admin/Site.php:268 +msgid "Registration" msgstr "" -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Registered channels" +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../Zotlabs/Module/Admin.php:148 -msgid "Active plugins" +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1721 +msgid "Register" msgstr "" -#: ../../Zotlabs/Module/Admin.php:149 -msgid "Version" +#: ../../Zotlabs/Module/Register.php:271 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." msgstr "" -#: ../../Zotlabs/Module/Admin.php:150 -msgid "Repository version (master)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:151 -msgid "Repository version (dev)" -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 -msgid "Public Hubs" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:27 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:960 -msgid "Ratings" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:48 -msgid "Rate" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:51 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 -msgid "Location" -msgstr "" +#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Pubsites.php:59 ../../Zotlabs/Module/Events.php:680 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Webpages.php:246 ../../include/page_widgets.php:42 -msgid "View" -msgstr "" +#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." +#: ../../Zotlabs/Module/Admin/Accounts.php:79 +msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." +#: ../../Zotlabs/Module/Admin/Accounts.php:90 +#, php-format +msgid "Account '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 -msgid "Edit System Page Description" +#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#, php-format +msgid "Account '%s' blocked" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:64 -msgid "Layout not found." +#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#, php-format +msgid "Account '%s' unblocked" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:70 -msgid "Module Name:" +#: ../../Zotlabs/Module/Admin/Accounts.php:165 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Plugins.php:336 +#: ../../Zotlabs/Module/Admin/Plugins.php:427 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Themes.php:120 +#: ../../Zotlabs/Module/Admin/Themes.php:154 +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Administration" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:71 -msgid "Layout Help" +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557 +msgid "Accounts" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 -#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 -#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Profiles.php:687 #: ../../Zotlabs/Module/Admin/Accounts.php:167 #: ../../Zotlabs/Module/Admin/Channels.php:151 #: ../../Zotlabs/Module/Admin/Features.php:66 @@ -764,14 +698,23 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Security.php:104 #: ../../Zotlabs/Module/Admin/Site.php:267 #: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Connedit.php:779 #: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:241 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 #: ../../Zotlabs/Module/Settings/Account.php:126 #: ../../Zotlabs/Module/Settings/Channel.php:452 #: ../../Zotlabs/Module/Settings/Display.php:194 @@ -783,3864 +726,3769 @@ msgstr "" msgid "Submit" msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:95 ../../include/conversation.php:1671 -msgid "Photos" -msgstr "" - -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin/Plugins.php:414 -#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../include/conversation.php:1247 ../../include/conversation.php:1296 -msgid "Cancel" -msgstr "" - -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "" - -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "" - -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin/Profs.php:74 -#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:969 -#: ../../include/text.php:981 ../../include/widgets.php:201 -msgid "Save" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "" - -#: ../../Zotlabs/Module/Api.php:83 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Photos.php:653 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Admin/Site.php:223 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Settings/Channel.php:289 -#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 -msgid "Yes" +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "select all" msgstr "" -#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Photos.php:653 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Connedit.php:686 -#: ../../Zotlabs/Module/Settings/Channel.php:289 -#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 -msgid "No" +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +msgid "Registrations waiting for confirm" msgstr "" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Request date" msgstr "" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2208 +msgid "Email" msgstr "" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "No registrations." msgstr "" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Approve" msgstr "" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1572 -msgid "New" +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +msgid "Deny" msgstr "" -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 -msgid "All" +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" msgstr "" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" msgstr "" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" +#: ../../Zotlabs/Module/Admin/Accounts.php:181 +msgid "ID" msgstr "" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 +msgid "All Channels" msgstr "" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "Register date" msgstr "" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Last login" msgstr "" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Expires" msgstr "" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Service Class" msgstr "" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" +#: ../../Zotlabs/Module/Admin/Accounts.php:189 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Connections.php:254 +#: ../../Zotlabs/Module/Admin/Channels.php:30 #, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:270 -msgid "Status" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "Approve" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Ignore" -msgstr "" +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "" +#: ../../Zotlabs/Module/Admin/Channels.php:39 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:898 ../../include/nav.php:191 -msgid "Connections" -msgstr "" +#: ../../Zotlabs/Module/Admin/Channels.php:45 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:968 -#: ../../include/text.php:980 ../../include/nav.php:170 -#: ../../include/acl_selectors.php:174 ../../include/widgets.php:315 -msgid "Search" +#: ../../Zotlabs/Module/Admin/Channels.php:66 +msgid "Channel not found" msgstr "" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" +#: ../../Zotlabs/Module/Admin/Channels.php:76 +#, php-format +msgid "Channel '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' censored" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' uncensored" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code allowed" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558 +msgid "Channels" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." +#: ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Censor" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." +#: ../../Zotlabs/Module/Admin/Channels.php:155 +msgid "Uncensor" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 -msgid "female" +#: ../../Zotlabs/Module/Admin/Channels.php:156 +msgid "Allow Code" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 -#, php-format -msgid "%1$s updated her %2$s" +#: ../../Zotlabs/Module/Admin/Channels.php:157 +msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 -msgid "male" +#: ../../Zotlabs/Module/Admin/Channels.php:158 +#: ../../include/conversation.php:1650 +msgid "Channel" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 -#, php-format -msgid "%1$s updated his %2$s" +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "UID" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 -#, php-format -msgid "%1$s updated their %2$s" +#: ../../Zotlabs/Module/Admin/Channels.php:164 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 -msgid "cover photo" +#: ../../Zotlabs/Module/Admin/Channels.php:166 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." +#: ../../Zotlabs/Module/Admin/Channels.php:167 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" +#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#, php-format +msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings/Channel.php:399 -msgid "or" +#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" +#: ../../Zotlabs/Module/Admin/Dbsync.php:55 +msgid "No failed updates." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../Zotlabs/Module/Network.php:95 -msgid "No such group" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" msgstr "" -#: ../../Zotlabs/Module/Network.php:135 -msgid "No such channel" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" msgstr "" -#: ../../Zotlabs/Module/Network.php:140 -msgid "forum" +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" msgstr "" -#: ../../Zotlabs/Module/Network.php:152 -msgid "Search Results For:" +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Network.php:218 -msgid "Privacy group is empty" +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Network.php:227 -msgid "Privacy group: " +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583 +#: ../../include/widgets.php:1593 +msgid "Logs" msgstr "" -#: ../../Zotlabs/Module/Network.php:253 -msgid "Invalid connection." +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 -#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1148 -msgid "Insert web link" +#: ../../Zotlabs/Module/Admin/Plugins.php:254 +#: ../../Zotlabs/Module/Admin/Themes.php:69 +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Thing.php:89 ../../Zotlabs/Module/Viewsrc.php:24 +#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3417 +msgid "Item not found." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1259 -msgid "Title (optional)" +#: ../../Zotlabs/Module/Admin/Plugins.php:284 +#, php-format +msgid "Plugin %s disabled." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" +#: ../../Zotlabs/Module/Admin/Plugins.php:289 +#, php-format +msgid "Plugin %s enabled." msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" +#: ../../Zotlabs/Module/Admin/Plugins.php:305 +#: ../../Zotlabs/Module/Admin/Themes.php:93 +msgid "Disable" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" +#: ../../Zotlabs/Module/Admin/Plugins.php:308 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Enable" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" +#: ../../Zotlabs/Module/Admin/Plugins.php:337 +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561 +msgid "Plugins" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" +#: ../../Zotlabs/Module/Admin/Plugins.php:338 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +msgid "Toggle" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" +#: ../../Zotlabs/Module/Admin/Plugins.php:339 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 +#: ../../include/nav.php:213 ../../include/widgets.php:680 +msgid "Settings" msgstr "" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." +#: ../../Zotlabs/Module/Admin/Plugins.php:346 +#: ../../Zotlabs/Module/Admin/Themes.php:132 +msgid "Author: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." +#: ../../Zotlabs/Module/Admin/Plugins.php:347 +#: ../../Zotlabs/Module/Admin/Themes.php:133 +msgid "Maintainer: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" +#: ../../Zotlabs/Module/Admin/Plugins.php:348 +msgid "Minimum project version: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" +#: ../../Zotlabs/Module/Admin/Plugins.php:349 +msgid "Maximum project version: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" +#: ../../Zotlabs/Module/Admin/Plugins.php:350 +msgid "Minimum PHP version: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +msgid "Compatible Server Roles: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +msgid "Requires: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +#: ../../Zotlabs/Module/Admin/Plugins.php:433 +msgid "Disabled - version incompatibility" msgstr "" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" +#: ../../Zotlabs/Module/Admin/Plugins.php:402 +msgid "Enter the public git repository URL of the plugin repo." msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2306 -msgid "Menus" +#: ../../Zotlabs/Module/Admin/Plugins.php:403 +msgid "Plugin repo git URL" msgstr "" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "Custom repo name" msgstr "" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Webpages.php:251 -#: ../../include/page_widgets.php:47 -msgid "Created" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "(optional)" msgstr "" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Blocks.php:158 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:252 -#: ../../include/page_widgets.php:48 -msgid "Edited" +#: ../../Zotlabs/Module/Admin/Plugins.php:405 +msgid "Download Plugin Repo" msgstr "" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" +#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" msgstr "" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../include/conversation.php:1247 ../../include/conversation.php:1296 +msgid "Cancel" msgstr "" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" +#: ../../Zotlabs/Module/Admin/Plugins.php:435 +msgid "Manage Repos" msgstr "" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +msgid "Installed Plugin Repositories" msgstr "" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +msgid "Install a New Plugin Repository" msgstr "" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" +#: ../../Zotlabs/Module/Admin/Plugins.php:443 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" msgstr "" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" +#: ../../Zotlabs/Module/Admin/Plugins.php:444 +msgid "Switch branch" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Photos.php:989 +msgid "Remove" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "System name of field" msgstr "" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" +#: ../../Zotlabs/Module/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" msgstr "" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" msgstr "" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Label on profile pages" msgstr "" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" msgstr "" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" +#: ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 +#: ../../include/text.php:972 ../../include/text.php:984 +#: ../../include/widgets.php:201 +msgid "Save" msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" msgstr "" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564 +msgid "Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" msgstr "" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" msgstr "" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" msgstr "" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" msgstr "" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Queue Statistics" msgstr "" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Total Entries" msgstr "" -#: ../../Zotlabs/Module/Setup.php:184 -msgid "$Projectname Server - Setup" +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Priority" msgstr "" -#: ../../Zotlabs/Module/Setup.php:188 -msgid "Could not connect to database." +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Destination URL" msgstr "" -#: ../../Zotlabs/Module/Setup.php:192 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Mark hub permanently offline" msgstr "" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Could not create table." +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Empty queue for this hub" msgstr "" -#: ../../Zotlabs/Module/Setup.php:204 -msgid "Your site database has been installed." +#: ../../Zotlabs/Module/Admin/Queue.php:42 +msgid "Last known contact" msgstr "" -#: ../../Zotlabs/Module/Setup.php:208 +#: ../../Zotlabs/Module/Admin/Security.php:77 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 -#: ../../Zotlabs/Module/Setup.php:734 -msgid "Please see the file \"install/INSTALL.txt\"." +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." msgstr "" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "System check" +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:949 -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/" +"
    https://vimeo.com/
    https://soundcloud.com/
    " msgstr "" -#: ../../Zotlabs/Module/Setup.php:273 -msgid "Check again" +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database connection" +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 +msgid "Security" msgstr "" -#: ../../Zotlabs/Module/Setup.php:296 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 +#: ../../Zotlabs/Module/Admin/Security.php:89 msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Server Name" +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Port" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Name" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." msgstr "" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Login Password" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" msgstr "" -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Name" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:307 -msgid "Database Type" +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" msgstr "" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "Site administrator email address" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" msgstr "" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +#: ../../Zotlabs/Module/Admin/Security.php:96 msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +"One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Website URL" +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" msgstr "" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." msgstr "" -#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 -msgid "Please select a default timezone for your website" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin/Site.php:242 -msgid "Basic/Minimal Social Networking" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin/Site.php:243 -msgid "Standard Configuration (default)" +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:338 ../../Zotlabs/Module/Admin/Site.php:244 -msgid "Professional" +#: ../../Zotlabs/Module/Admin/Site.php:135 +msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Setup.php:344 -msgid "Site settings" +#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2942 +msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:359 ../../Zotlabs/Module/Admin/Site.php:277 -msgid "Server Configuration/Role" +#: ../../Zotlabs/Module/Admin/Site.php:172 +#: ../../Zotlabs/Module/Settings/Display.php:141 +msgid "mobile" msgstr "" -#: ../../Zotlabs/Module/Setup.php:400 -msgid "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Admin/Site.php:174 +msgid "experimental" msgstr "" -#: ../../Zotlabs/Module/Setup.php:401 -msgid "PHP version" +#: ../../Zotlabs/Module/Admin/Site.php:176 +msgid "unsupported" msgstr "" -#: ../../Zotlabs/Module/Setup.php:416 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "No" msgstr "" -#: ../../Zotlabs/Module/Setup.php:417 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." +#: ../../Zotlabs/Module/Admin/Site.php:222 +msgid "Yes - with approval" msgstr "" -#: ../../Zotlabs/Module/Setup.php:421 -msgid "PHP executable path" +#: ../../Zotlabs/Module/Admin/Site.php:223 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "Yes" msgstr "" -#: ../../Zotlabs/Module/Setup.php:421 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../Zotlabs/Module/Admin/Site.php:228 +msgid "My site is not a public server" msgstr "" -#: ../../Zotlabs/Module/Setup.php:426 -msgid "Command line PHP" +#: ../../Zotlabs/Module/Admin/Site.php:229 +msgid "My site has paid access only" msgstr "" -#: ../../Zotlabs/Module/Setup.php:435 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../Zotlabs/Module/Admin/Site.php:230 +msgid "My site has free access only" msgstr "" -#: ../../Zotlabs/Module/Setup.php:436 -msgid "This is required for message delivery to work." +#: ../../Zotlabs/Module/Admin/Site.php:231 +msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Setup.php:439 -msgid "PHP register_argc_argv" +#: ../../Zotlabs/Module/Admin/Site.php:242 ../../Zotlabs/Module/Setup.php:336 +msgid "Basic/Minimal Social Networking" msgstr "" -#: ../../Zotlabs/Module/Setup.php:457 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +#: ../../Zotlabs/Module/Admin/Site.php:243 ../../Zotlabs/Module/Setup.php:337 +msgid "Standard Configuration (default)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:462 -msgid "You can adjust these settings in the servers php.ini." +#: ../../Zotlabs/Module/Admin/Site.php:244 ../../Zotlabs/Module/Setup.php:338 +msgid "Professional" msgstr "" -#: ../../Zotlabs/Module/Setup.php:464 -msgid "PHP upload limits" +#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Beginner/Basic" msgstr "" -#: ../../Zotlabs/Module/Setup.php:487 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Novice - not skilled but willing to learn" msgstr "" -#: ../../Zotlabs/Module/Setup.php:488 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../Zotlabs/Module/Admin/Site.php:251 +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Intermediate - somewhat comfortable" msgstr "" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "Generate encryption keys" +#: ../../Zotlabs/Module/Admin/Site.php:252 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "Advanced - very comfortable" msgstr "" -#: ../../Zotlabs/Module/Setup.php:503 -msgid "libCurl PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:253 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Expert - I can write computer code" msgstr "" -#: ../../Zotlabs/Module/Setup.php:504 -msgid "GD graphics PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:254 +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Wizard - I probably know more than you do" msgstr "" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "OpenSSL PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 +msgid "Site" msgstr "" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mysqli or postgres PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "File upload" msgstr "" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "mb_string PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:270 +msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Setup.php:508 -msgid "xml PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" msgstr "" -#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 -msgid "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "Site name" msgstr "" -#: ../../Zotlabs/Module/Setup.php:512 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:277 ../../Zotlabs/Module/Setup.php:359 +msgid "Server Configuration/Role" msgstr "" -#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 -msgid "proc_open" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Site default technical skill level" msgstr "" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Used to provide a member experience matched to technical comfort level" msgstr "" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Lock the technical skill level setting" msgstr "" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Members can set their own technical comfort level by default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Banner/Logo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:538 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Administrator Information" msgstr "" -#: ../../Zotlabs/Module/Setup.php:542 -msgid "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Setup.php:546 -msgid "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "System language" msgstr "" -#: ../../Zotlabs/Module/Setup.php:564 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "System theme" msgstr "" -#: ../../Zotlabs/Module/Setup.php:565 +#: ../../Zotlabs/Module/Admin/Site.php:287 msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../Zotlabs/Module/Setup.php:566 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Mobile system theme" msgstr "" -#: ../../Zotlabs/Module/Setup.php:567 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Setup.php:570 -msgid ".htconfig.php is writable" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "Allow Feeds as Connections" msgstr "" -#: ../../Zotlabs/Module/Setup.php:584 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "(Heavy system resource usage)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:585 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Maximum image size" msgstr "" -#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: ../../Zotlabs/Module/Setup.php:587 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Does this site allow new member registration?" msgstr "" -#: ../../Zotlabs/Module/Setup.php:590 -#, php-format -msgid "%s is writable" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Invitation only" msgstr "" -#: ../../Zotlabs/Module/Setup.php:606 +#: ../../Zotlabs/Module/Admin/Site.php:293 msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." msgstr "" -#: ../../Zotlabs/Module/Setup.php:610 -msgid "store is writable" +#: ../../Zotlabs/Module/Admin/Site.php:294 +msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../Zotlabs/Module/Setup.php:643 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Register text" msgstr "" -#: ../../Zotlabs/Module/Setup.php:644 -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!" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:645 +#: ../../Zotlabs/Module/Admin/Site.php:296 msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." msgstr "" -#: ../../Zotlabs/Module/Setup.php:646 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "Preserve site homepage URL" msgstr "" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../Zotlabs/Module/Admin/Site.php:297 msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +"Present the site homepage in a frame at the original location instead of " +"redirecting" msgstr "" -#: ../../Zotlabs/Module/Setup.php:648 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "Accounts abandoned after x days" msgstr "" -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Admin/Site.php:298 msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: ../../Zotlabs/Module/Setup.php:653 -msgid "SSL certificate validation" +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Allowed friend domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:662 -msgid "Url rewrite is working" +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Verify Email Addresses" msgstr "" -#: ../../Zotlabs/Module/Setup.php:671 +#: ../../Zotlabs/Module/Admin/Site.php:300 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." +"Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../Zotlabs/Module/Setup.php:695 -msgid "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Force publish" msgstr "" -#: ../../Zotlabs/Module/Setup.php:732 -msgid "

    What next

    " +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../Zotlabs/Module/Setup.php:733 +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Import Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." msgstr "" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Login on Homepage" msgstr "" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." msgstr "" -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Enable context help" msgstr "" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 -msgid "Album not found." +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "" +"Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:112 -msgid "Delete Album" +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Directory Server URL" msgstr "" -#: ../../Zotlabs/Module/Photos.php:133 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Default directory server" msgstr "" -#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Proxy user" msgstr "" -#: ../../Zotlabs/Module/Photos.php:520 -msgid "No photos selected" +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Proxy URL" msgstr "" -#: ../../Zotlabs/Module/Photos.php:569 -msgid "Access to this item is restricted." +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Network timeout" msgstr "" -#: ../../Zotlabs/Module/Photos.php:608 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../Zotlabs/Module/Photos.php:611 -#, php-format -msgid "%1$.2f MB photo storage used." +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Delivery interval" msgstr "" -#: ../../Zotlabs/Module/Photos.php:647 -msgid "Upload Photos" +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." msgstr "" -#: ../../Zotlabs/Module/Photos.php:651 -msgid "Enter an album name" +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Deliveries per process" msgstr "" -#: ../../Zotlabs/Module/Photos.php:652 -msgid "or select an existing album (doubleclick)" +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../Zotlabs/Module/Photos.php:653 -msgid "Create a status post for this upload" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Poll interval" msgstr "" -#: ../../Zotlabs/Module/Photos.php:654 -msgid "Caption (optional):" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." msgstr "" -#: ../../Zotlabs/Module/Photos.php:655 -msgid "Description (optional):" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Maximum Load Average" msgstr "" -#: ../../Zotlabs/Module/Photos.php:658 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 -#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Chat.php:234 -#: ../../include/acl_selectors.php:179 -msgid "Permissions" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." msgstr "" -#: ../../Zotlabs/Module/Photos.php:686 -msgid "Album name could not be decoded" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../Zotlabs/Module/Photos.php:734 -msgid "Contact Photos" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "0 for no expiration of imported content" msgstr "" -#: ../../Zotlabs/Module/Photos.php:757 -msgid "Show Newest First" +#: ../../Zotlabs/Module/Admin/Themes.php:18 +msgid "Theme settings updated." msgstr "" -#: ../../Zotlabs/Module/Photos.php:759 -msgid "Show Oldest First" +#: ../../Zotlabs/Module/Admin/Themes.php:58 +msgid "No themes found." msgstr "" -#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 -msgid "View Photo" +#: ../../Zotlabs/Module/Admin/Themes.php:114 +msgid "Screenshot" msgstr "" -#: ../../Zotlabs/Module/Photos.php:814 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 -msgid "Edit Album" +#: ../../Zotlabs/Module/Admin/Themes.php:121 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 +msgid "Themes" msgstr "" -#: ../../Zotlabs/Module/Photos.php:861 -msgid "Permission denied. Access to this item may be restricted." +#: ../../Zotlabs/Module/Admin/Themes.php:160 +msgid "[Experimental]" msgstr "" -#: ../../Zotlabs/Module/Photos.php:863 -msgid "Photo not available" +#: ../../Zotlabs/Module/Admin/Themes.php:161 +msgid "[Unsupported]" msgstr "" -#: ../../Zotlabs/Module/Photos.php:921 -msgid "Use as profile photo" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Photos.php:922 -msgid "Use as cover photo" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." msgstr "" -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Private Photo" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" msgstr "" -#: ../../Zotlabs/Module/Photos.php:940 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 -msgid "Previous" +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." msgstr "" -#: ../../Zotlabs/Module/Photos.php:944 -msgid "View Full Size" +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../Zotlabs/Module/Photos.php:989 -#: ../../Zotlabs/Module/Admin/Plugins.php:445 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Edit photo" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CW (right)" +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CCW (left)" +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "Move photo to album" +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I like this (toggle)" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 -msgid "I don't like this (toggle)" +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Blocks.php:161 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Webpages.php:241 -#: ../../include/conversation.php:1231 -msgid "Share" +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available memory" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 -#: ../../include/conversation.php:743 -msgid "Please wait" +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:709 -msgid "This is you" +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Photos.php:509 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "" +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:721 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 -msgid "Preview" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " msgstr "" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " msgstr "" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/bb2diaspora.php:507 +#: ../../include/channel.php:1049 +msgid "Location:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 +#: ../../include/connections.php:78 ../../include/conversation.php:957 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1762 -msgid "View all" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1786 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1789 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " msgstr "" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Likes" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 -msgctxt "noun" -msgid "Dislikes" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 -#: ../../include/acl_selectors.php:181 -msgid "Close" +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../include/contact_widgets.php:23 +msgid "Find" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" msgstr "" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" msgstr "" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:960 +msgid "Ratings" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:95 ../../include/conversation.php:1671 +msgid "Photos" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1572 +msgid "New" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 +msgid "All" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" msgstr "" -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" msgstr "" -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" msgstr "" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" msgstr "" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" msgstr "" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3950 -msgid "Privacy group not found." +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" msgstr "" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" msgstr "" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." +#: ../../Zotlabs/Module/Connections.php:270 +msgid "Status" msgstr "" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" msgstr "" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" msgstr "" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:191 ../../include/text.php:901 +msgid "Connections" msgstr "" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:170 +#: ../../include/acl_selectors.php:174 ../../include/text.php:971 +#: ../../include/text.php:983 ../../include/widgets.php:315 +msgid "Search" msgstr "" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" msgstr "" -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" msgstr "" -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:72 -#: ../../Zotlabs/Module/Import.php:101 -msgid "Imported file is empty." +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:123 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 +msgid "female" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "Use this form to import existing posts and content from an export file." +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 +#, php-format +msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:549 -msgid "File to Upload" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 +msgid "male" msgstr "" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 +#, php-format +msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Invite.php:53 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 #, php-format -msgid "%s : Not a valid email address." +msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 +msgid "cover photo" msgstr "" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." msgstr "" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" msgstr "" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings/Channel.php:399 +msgid "or" msgstr "" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" msgstr "" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" msgstr "" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" msgstr "" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "1. Register at any $Projectname location (they are all inter-connected)" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" msgstr "" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" msgstr "" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" msgstr "" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1259 +msgid "Title (optional)" msgstr "" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary " -"location." +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" msgstr "" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" msgstr "" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" msgstr "" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" msgstr "" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin/Channels.php:164 -msgid "Address" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" msgstr "" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" msgstr "" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." msgstr "" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." msgstr "" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" msgstr "" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" msgstr "" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" msgstr "" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" msgstr "" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 +msgid "Menus" msgstr "" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" msgstr "" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" msgstr "" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1988 -#: ../../include/conversation.php:120 -msgid "photo" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1994 ../../include/conversation.php:148 -msgid "status" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" msgstr "" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1991 -#: ../../include/conversation.php:123 ../../include/event.php:958 -msgid "event" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" msgstr "" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" msgstr "" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." msgstr "" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" msgstr "" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" msgstr "" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" msgstr "" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" msgstr "" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" msgstr "" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Create New" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." msgstr "" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:211 -msgid "Channel Manager" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" msgstr "" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" msgstr "" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" msgstr "" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" msgstr "" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" msgstr "" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" msgstr "" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:486 -msgid "(click to open/close)" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 +msgid "Your message:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1243 +msgid "Attach file" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1288 +msgid "Set expiration date" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 +#: ../../include/conversation.php:1293 +msgid "Encrypt text" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../Zotlabs/Module/Help.php:27 +msgid "Documentation Search" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 -msgid "Password Reset" +#: ../../Zotlabs/Module/Help.php:57 +msgid "$Projectname Documentation" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 +#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Photos.php:658 +#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Module/Chat.php:234 +#: ../../include/acl_selectors.php:179 +msgid "Permissions" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" msgstr "" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3950 +msgid "Privacy group not found." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" +#: ../../Zotlabs/Module/Webpages.php:52 +msgid "Import Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import selected" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1563 -#: ../../include/widgets.php:105 -msgid "Personal" +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:109 ../../include/conversation.php:1724 +msgid "Webpages" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1078 +#: ../../include/conversation.php:1231 +msgid "Share" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Events.php:680 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:59 ../../include/page_widgets.php:42 +msgid "View" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:721 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 +msgid "Preview" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" +#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 +msgid "Actions" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" +#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 +msgid "Page Link" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "Use this form to import existing posts and content from an export file." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "1. Register at any $Projectname location (they are all inter-connected)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 -#: ../../include/nav.php:91 -msgid "Edit Profiles" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." msgstr "" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary " +"location." msgstr "" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" msgstr "" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." msgstr "" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" msgstr "" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 +#: ../../Zotlabs/Module/Pubsites.php:51 ../../include/js_strings.php:25 +msgid "Location" msgstr "" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:36 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:43 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:79 -msgid "Account not found" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:90 -#, php-format -msgid "Account '%s' deleted" +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:98 -#, php-format -msgid "Account '%s' blocked" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:106 -#, php-format -msgid "Account '%s' unblocked" +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557 -msgid "Accounts" +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "select all" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -msgid "Registrations waiting for confirm" +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Request date" +#: ../../Zotlabs/Module/Network.php:218 +msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2208 -msgid "Email" +#: ../../Zotlabs/Module/Network.php:227 +msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "No registrations." +#: ../../Zotlabs/Module/Network.php:253 +msgid "Invalid connection." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -msgid "Deny" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Block" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Unblock" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:181 -msgid "ID" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 -msgid "All Channels" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "Register date" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Last login" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Expires" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Service Class" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1991 +msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:189 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1997 +msgid "status" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:958 +#: ../../include/conversation.php:123 ../../include/text.php:1994 +msgid "event" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:30 +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 #, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" +msgid "%1$s likes %2$s's %3$s" +msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:39 +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 #, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:45 +#: ../../Zotlabs/Module/Like.php:423 #, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:66 -msgid "Channel not found" +msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:76 +#: ../../Zotlabs/Module/Like.php:425 #, php-format -msgid "Channel '%s' deleted" +msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:88 +#: ../../Zotlabs/Module/Like.php:427 #, php-format -msgid "Channel '%s' censored" +msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:88 +#: ../../Zotlabs/Module/Like.php:429 #, php-format -msgid "Channel '%s' uncensored" +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:99 +#: ../../Zotlabs/Module/Like.php:431 #, php-format -msgid "Channel '%s' code allowed" +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:99 +#: ../../Zotlabs/Module/Like.php:433 #, php-format -msgid "Channel '%s' code disallowed" +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558 -msgid "Channels" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:154 -msgid "Censor" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:155 -msgid "Uncensor" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:156 -msgid "Allow Code" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:157 -msgid "Disallow Code" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:158 -#: ../../include/conversation.php:1650 -msgid "Channel" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "UID" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:166 -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?" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:167 -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?" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#: ../../Zotlabs/Module/Manage.php:172 #, php-format -msgid "Executing %s failed. Check system logs." +msgid "%d new messages" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#: ../../Zotlabs/Module/Manage.php:173 #, php-format -msgid "Update %s was successfully applied." +msgid "%d new introductions" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:36 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:486 +msgid "(click to open/close)" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:39 -#, php-format -msgid "Update function %s could not be found." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:55 -msgid "No failed updates." +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "Off" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "On" +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583 -#: ../../include/widgets.php:1593 -msgid "Logs" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:284 -#, php-format -msgid "Plugin %s disabled." +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:289 -#, php-format -msgid "Plugin %s enabled." +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:305 -#: ../../Zotlabs/Module/Admin/Themes.php:93 -msgid "Disable" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:308 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Enable" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:337 -#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561 -msgid "Plugins" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:338 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -msgid "Toggle" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:339 -#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 -#: ../../include/nav.php:213 ../../include/widgets.php:680 -msgid "Settings" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:346 -#: ../../Zotlabs/Module/Admin/Themes.php:132 -msgid "Author: " +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:347 -#: ../../Zotlabs/Module/Admin/Themes.php:133 -msgid "Maintainer: " +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:348 -msgid "Minimum project version: " +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:349 -msgid "Maximum project version: " +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:350 -msgid "Minimum PHP version: " +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:351 -msgid "Compatible Server Roles: " +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:352 -msgid "Requires: " +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:353 -#: ../../Zotlabs/Module/Admin/Plugins.php:433 -msgid "Disabled - version incompatibility" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:402 -msgid "Enter the public git repository URL of the plugin repo." +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:403 -msgid "Plugin repo git URL" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 +msgid "Password Reset" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:404 -msgid "Custom repo name" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:404 -msgid "(optional)" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:405 -msgid "Download Plugin Repo" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:412 -msgid "Install new repo" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:435 -msgid "Manage Repos" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:436 -msgid "Installed Plugin Repositories" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:437 -msgid "Install a New Plugin Repository" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:443 -#: ../../Zotlabs/Module/Settings/Oauth.php:42 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:444 -msgid "Switch branch" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:69 -msgid "New Profile Field" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:70 -#: ../../Zotlabs/Module/Admin/Profs.php:90 -msgid "Field nickname" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:70 -#: ../../Zotlabs/Module/Admin/Profs.php:90 -msgid "System name of field" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:71 -#: ../../Zotlabs/Module/Admin/Profs.php:91 -msgid "Input type" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:72 -#: ../../Zotlabs/Module/Admin/Profs.php:92 -msgid "Field Name" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:72 -#: ../../Zotlabs/Module/Admin/Profs.php:92 -msgid "Label on profile pages" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Help text" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Additional info (optional)" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:83 -msgid "Field definition not found" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "Edit Profile Field" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564 -msgid "Profile Fields" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:148 -msgid "Basic Profile Fields" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "Advanced Profile Fields" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "(In addition to basic fields)" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:151 -msgid "All available fields" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:152 -msgid "Custom Fields" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:156 -msgid "Create Custom Field" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Queue Statistics" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Total Entries" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Priority" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Destination URL" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Mark hub permanently offline" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Empty queue for this hub" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:42 -msgid "Last known contact" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:77 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:80 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:81 -msgid "" -"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/" -"
    https://vimeo.com/
    https://soundcloud.com/
    " +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:82 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 -msgid "Security" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "Block public" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:90 -msgid "Set \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:91 -msgid "Set \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "Allowed email domains" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1563 +#: ../../include/widgets.php:105 +msgid "Personal" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "Not allowed email domains" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "Allow communications only from these sites" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block communications from these sites" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Allow communications only from these channels" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Block communications from these channels" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Only allow embeds from secure (SSL) websites and links." +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Allow unfiltered embedded HTML content only from these domains" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "One site per line. By default embedded content is filtered." +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Block embedded HTML from these domains" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:135 -msgid "Site settings updated." +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2939 -msgid "Default" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:172 -#: ../../Zotlabs/Module/Settings/Display.php:141 -msgid "mobile" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:174 -msgid "experimental" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:176 -msgid "unsupported" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:222 -msgid "Yes - with approval" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:228 -msgid "My site is not a public server" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:229 -msgid "My site has paid access only" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:230 -msgid "My site has free access only" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:231 -msgid "My site offers free accounts with optional paid upgrades" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:249 -#: ../../Zotlabs/Module/Settings/Account.php:105 -msgid "Beginner/Basic" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:250 -#: ../../Zotlabs/Module/Settings/Account.php:106 -msgid "Novice - not skilled but willing to learn" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:251 -#: ../../Zotlabs/Module/Settings/Account.php:107 -msgid "Intermediate - somewhat comfortable" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:252 -#: ../../Zotlabs/Module/Settings/Account.php:108 -msgid "Advanced - very comfortable" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:253 -#: ../../Zotlabs/Module/Settings/Account.php:109 -msgid "Expert - I can write computer code" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:254 -#: ../../Zotlabs/Module/Settings/Account.php:110 -msgid "Wizard - I probably know more than you do" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 -msgid "Site" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:268 -#: ../../Zotlabs/Module/Register.php:253 -msgid "Registration" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:269 -msgid "File upload" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:270 -msgid "Policies" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:271 -#: ../../include/contact_widgets.php:16 -msgid "Advanced" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:275 -msgid "Site name" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:279 -msgid "Site default technical skill level" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:279 -msgid "Used to provide a member experience matched to technical comfort level" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:91 +#: ../../include/channel.php:959 +msgid "Edit Profiles" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:281 -msgid "Lock the technical skill level setting" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:281 -msgid "Members can set their own technical comfort level by default" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:284 -msgid "Banner/Logo" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "Administrator Information" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:286 -msgid "System language" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:287 -msgid "System theme" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:287 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "Mobile system theme" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "Theme for mobile devices" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:290 -msgid "Allow Feeds as Connections" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:290 -msgid "(Heavy system resource usage)" +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:291 -msgid "Maximum image size" +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:291 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:292 -msgid "Does this site allow new member registration?" +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "Invitation only" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:294 -msgid "Which best describes the types of account offered by this hub?" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:295 -msgid "Register text" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:295 -msgid "Will be displayed prominently on the registration page." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:296 -msgid "Site homepage to show visitors (default: login box)" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:296 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:297 -msgid "Preserve site homepage URL" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:297 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "Accounts abandoned after x days" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Allowed friend domains" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Events.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" +"Important for events that happen in a particular place. Not practical for " +"global holidays." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "Verify Email Addresses" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "" -"Check to verify email addresses used in account registration (recommended)." +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "Force publish" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1263 +msgid "Permission settings" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:302 -msgid "Import Public Streams" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:302 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "Login on Homepage" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "Enable context help" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1762 +msgid "Link to Source" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "" -"Display contextual help for the current page when the help button is pressed." +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Directory Server URL" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Default directory server" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Proxy user" +#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Previous" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:309 -msgid "Proxy URL" +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cal.php:333 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Photos.php:949 +msgid "Next" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Network timeout" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Delivery interval" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:311 -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." +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Deliveries per process" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Poll interval" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "Maximum Load Average" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "Expiration period in days for imported (grid/network) content" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "0 for no expiration of imported content" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:18 -msgid "Theme settings updated." +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:58 -msgid "No themes found." +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:114 -msgid "Screenshot" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:121 -#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 -msgid "Themes" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:160 -msgid "[Experimental]" +#: ../../Zotlabs/Module/New_channel.php:141 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:161 -msgid "[Unsupported]" +#: ../../Zotlabs/Module/New_channel.php:142 +msgid "" +"or import an existing channel from another location." msgstr "" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" msgstr "" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" msgstr "" -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" msgstr "" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" msgstr "" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit event title" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Event title" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 +msgid "Mark all system notifications seen" msgstr "" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Categories (comma-separated list)" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit Category" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Category" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit start date and time" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Start date and time" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" msgstr "" -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 -msgid "Finish date and time are not known or not relevant" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit finish date and time" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Finish date and time" +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" msgstr "" -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 -msgid "Adjust for viewer timezone" +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." msgstr "" -#: ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Setup.php:192 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Description" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." msgstr "" -#: ../../Zotlabs/Module/Events.php:467 -msgid "Edit Location" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." msgstr "" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 -msgid "Share this event" +#: ../../Zotlabs/Module/Setup.php:208 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1263 -msgid "Permission settings" +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../Zotlabs/Module/Events.php:485 -msgid "Advanced Options" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" msgstr "" -#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" msgstr "" -#: ../../Zotlabs/Module/Events.php:619 -msgid "Edit event" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" msgstr "" -#: ../../Zotlabs/Module/Events.php:621 -msgid "Delete event" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" -#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1759 -msgid "Link to Source" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../Zotlabs/Module/Events.php:655 -msgid "calendar" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" msgstr "" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" msgstr "" -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" msgstr "" -#: ../../Zotlabs/Module/Events.php:681 -msgid "Month" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" msgstr "" -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" msgstr "" -#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" msgstr "" -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" msgstr "" -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" msgstr "" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" msgstr "" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" msgstr "" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." msgstr "" -#: ../../Zotlabs/Module/Import.php:548 -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." +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" msgstr "" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" +#: ../../Zotlabs/Module/Setup.php:417 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" msgstr "" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" msgstr "" -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Setup.php:435 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." +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." msgstr "" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available memory" +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" msgstr "" -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Setup.php:457 +#, php-format msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:237 -msgid "Name or caption" +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:237 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:239 -msgid "Choose a short nickname" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:239 -#, php-format +#: ../../Zotlabs/Module/Setup.php:488 msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:240 -msgid "Channel role and privacy" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:240 -msgid "Select a channel role with your privacy requirements." +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:240 -msgid "Read more about roles" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:140 -msgid "Create Channel" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:141 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:142 -msgid "" -"or import an existing channel from another location." +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" msgstr "" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" msgstr "" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" +#: ../../Zotlabs/Module/Setup.php:512 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" msgstr "" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" +#: ../../Zotlabs/Module/Setup.php:518 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" +#: ../../Zotlabs/Module/Setup.php:530 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 -msgid "Mark all system notifications seen" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:961 -msgid "Poke" +#: ../../Zotlabs/Module/Setup.php:538 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." msgstr "" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." msgstr "" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." msgstr "" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." msgstr "" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" +#: ../../Zotlabs/Module/Setup.php:567 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." msgstr "" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" msgstr "" -#: ../../Zotlabs/Module/Register.php:55 +#: ../../Zotlabs/Module/Setup.php:584 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." +#: ../../Zotlabs/Module/Setup.php:585 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." msgstr "" -#: ../../Zotlabs/Module/Register.php:131 +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 msgid "" -"Registration successful. Please check your email for validation instructions." +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." +#: ../../Zotlabs/Module/Setup.php:587 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." +#: ../../Zotlabs/Module/Setup.php:590 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." +#: ../../Zotlabs/Module/Setup.php:606 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" msgstr "" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" msgstr "" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Setup.php:644 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" msgstr "" -#: ../../Zotlabs/Module/Register.php:221 -msgid "Terms of Service" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../Zotlabs/Module/Register.php:227 -#, php-format -msgid "I accept the %s for this website" +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -#: ../../Zotlabs/Module/Register.php:229 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../Zotlabs/Module/Register.php:233 -msgid "Your email address" +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../Zotlabs/Module/Register.php:234 -msgid "Choose a password" +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." msgstr "" -#: ../../Zotlabs/Module/Register.php:235 -msgid "Please re-enter your password" +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" msgstr "" -#: ../../Zotlabs/Module/Register.php:236 -msgid "Please enter your invitation code" +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../Zotlabs/Module/Register.php:241 -msgid "no" +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" msgstr "" -#: ../../Zotlabs/Module/Register.php:241 -msgid "yes" +#: ../../Zotlabs/Module/Setup.php:671 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." msgstr "" -#: ../../Zotlabs/Module/Register.php:258 -msgid "Membership on this site is by invitation only." +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 -#: ../../boot.php:1721 -msgid "Register" +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " msgstr "" -#: ../../Zotlabs/Module/Register.php:271 +#: ../../Zotlabs/Module/Setup.php:733 msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" #: ../../Zotlabs/Module/Oexchange.php:27 @@ -4686,26 +4534,9 @@ msgid "" "to correctly use this feature." msgstr "" -#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" +#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 +#: ../../include/widgets.php:102 +msgid "Apps" msgstr "" #: ../../Zotlabs/Module/Siteinfo.php:19 @@ -4766,7 +4597,7 @@ msgstr "" msgid "Site Administrators" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2305 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2308 msgid "Blocks" msgstr "" @@ -4774,13 +4605,13 @@ msgstr "" msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2307 +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2310 msgid "Layouts" msgstr "" #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/help.php:44 ../../include/help.php:49 -#: ../../include/nav.php:164 +#: ../../include/nav.php:164 ../../include/help.php:44 +#: ../../include/help.php:49 msgid "Help" msgstr "" @@ -4796,20 +4627,12 @@ msgstr "" msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" msgstr "" #: ../../Zotlabs/Module/Profile_photo.php:186 @@ -4826,7 +4649,7 @@ msgstr "" msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2329 +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 msgid "Import" msgstr "" @@ -4842,2682 +4665,2558 @@ msgstr "" msgid "No connections in common." msgstr "" -#: ../../Zotlabs/Module/Help.php:27 -msgid "Documentation Search" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:57 -msgid "$Projectname Documentation" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1243 -msgid "Attach file" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1288 -msgid "Set expiration date" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 -#: ../../include/conversation.php:1293 -msgid "Encrypt text" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" msgstr "" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" msgstr "" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 +msgid "Public Hubs" msgstr "" -#: ../../Zotlabs/Module/Mail.php:355 +#: ../../Zotlabs/Module/Pubsites.php:27 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "" - -#: ../../Zotlabs/Module/Item.php:180 -msgid "Unable to locate original post." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:433 -msgid "Empty post discarded." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:473 -msgid "Executable content type not permitted to this channel." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:858 -msgid "Duplicate post suppressed." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:991 -msgid "System error. Post not saved." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1112 -msgid "Unable to obtain post information from database." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1119 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1126 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." msgstr "" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" msgstr "" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" msgstr "" - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" msgstr "" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:89 ../../include/conversation.php:955 +msgid "View Profile" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:128 -msgid "Remove Account" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:544 -msgid "Remove Channel" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:57 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:59 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "" -"Export your channel information and recent content to a JSON backup that can " -"be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for " -"this download to begin." +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 +msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 +msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:52 -msgid "Import Webpage Elements" +#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Settings/Channel.php:61 +#: ../../Zotlabs/Module/Settings/Channel.php:65 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:80 +#: ../../include/selectors.php:123 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/widgets.php:531 +msgid "Friends" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import selected" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 +msgid "Acquaintances" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:76 -msgid "Export Webpage Elements" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:77 -msgid "Export selected" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:109 ../../include/conversation.php:1724 -msgid "Webpages" +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 -msgid "Actions" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 -msgid "Page Link" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:250 -msgid "Page Title" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid file type." +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 +msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Error opening zip file" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:303 -msgid "Invalid folder path." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:330 -msgid "No webpage elements detected." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:405 -msgid "Import complete." +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" msgstr "" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" msgstr "" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Only sends to viewers of the applicable profile" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" msgstr "" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" +#: ../../Zotlabs/Module/Connedit.php:778 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" msgstr "" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 -msgid "URL for photo of thing (optional)" +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" +#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Their Settings" msgstr "" -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." +#: ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "My Settings" msgstr "" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" +#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 +msgid "Individual Permissions" msgstr "" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" +#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can not change those settings here." msgstr "" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:111 ../../include/conversation.php:1734 -#: ../../include/conversation.php:1737 ../../include/features.php:57 -msgid "Wiki" +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:98 -msgid "Sandbox" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:100 -msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be " -"saved*.\"" +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:169 -msgid "Revision Comparison" +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:170 -msgid "Revert" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:201 -msgid "Enter the name of your new wiki:" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:202 -msgid "Enter the name of the new page:" +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Enter the new name:" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 -msgid "Embed image from photo albums" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " msgstr "" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1246 -msgid "Embed an image from your albums" +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " msgstr "" -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1248 -#: ../../include/conversation.php:1295 -msgid "OK" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 -msgid "Choose images to embed" +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 -msgid "Choose an album" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 -msgid "Choose a different album..." +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 -msgid "Error getting album list" +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:128 +msgid "Remove Account" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 -msgid "Error getting photo link" +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 -msgid "Error getting album" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" msgstr "" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " msgstr "" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "Remove Channel" msgstr "" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:672 -#: ../../include/features.php:70 -msgid "Channel Sources" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" msgstr "" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." +#: ../../Zotlabs/Module/Uexport.php:57 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." msgstr "" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" msgstr "" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." msgstr "" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" msgstr "" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" msgstr "" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -msgid "Optional" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." msgstr "" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" msgstr "" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" msgstr "" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" msgstr "" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." msgstr "" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1996 -#: ../../include/conversation.php:150 -msgid "comment" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:100 +#: ../../Zotlabs/Module/Thing.php:196 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:440 -msgid "Could not access address book record." +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:460 -msgid "Refresh failed - channel is currently unavailable." +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 -#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 -#: ../../Zotlabs/Module/Connedit.php:515 -msgid "Unable to set address book parameters." +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:538 -msgid "Connection has been removed." +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:89 ../../include/conversation.php:955 -msgid "View Profile" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:557 -#, php-format -msgid "View %s's profile" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:561 -msgid "Refresh Permissions" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Fetch updated permissions" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Recent Activity" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:111 ../../include/conversation.php:1734 +#: ../../include/conversation.php:1737 ../../include/features.php:57 +msgid "Wiki" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "View recent posts and comments" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Block (or Unblock) all communications with this connection" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be " +"saved*.\"" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "This connection is blocked!" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Unignore" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Ignore (or Unignore) all inbound communications from this connection" +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "This connection is ignored!" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Unarchive" +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Archive" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1246 +msgid "Embed an image from your albums" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "This connection is archived!" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1248 +#: ../../include/conversation.php:1295 +msgid "OK" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Unhide" +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Hide" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide or Unhide this connection from your other connections" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:603 -msgid "This connection is hidden!" +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Delete this connection" +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 -msgid "Me" +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 -msgid "Family" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:627 -#: ../../Zotlabs/Module/Settings/Channel.php:61 -#: ../../Zotlabs/Module/Settings/Channel.php:65 -#: ../../Zotlabs/Module/Settings/Channel.php:66 -#: ../../Zotlabs/Module/Settings/Channel.php:69 -#: ../../Zotlabs/Module/Settings/Channel.php:80 ../../include/channel.php:402 -#: ../../include/channel.php:403 ../../include/channel.php:410 -#: ../../include/selectors.php:123 ../../include/widgets.php:531 -msgid "Friends" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 -msgid "Acquaintances" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Approve this connection" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Accept connection to allow communication" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:672 +#: ../../include/features.php:70 +msgid "Channel Sources" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:691 -msgid "Set Affinity" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:694 -msgid "Set Profile" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:697 -msgid "Set Affinity & Profile" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:746 -msgid "none" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 -msgid "Connection Default Permissions" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 -#, php-format -msgid "Connection: %s" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Apply these permissions automatically" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Connection requests will be approved without your interaction" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +msgid "Optional" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "This connection's primary address is" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:754 -msgid "Available locations:" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:759 -msgid "Connection Tools" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Slide to adjust your degree of friendship" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:763 -msgid "Slide to adjust your rating" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 -msgid "Optionally explain your rating" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Custom Filter" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Only import posts with this text" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Do not import posts with this text" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1999 +msgid "comment" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "This information is public!" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Connection Pending Approval" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:778 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -msgid "inherited" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:780 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Connedit.php:782 -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -msgid "Their Settings" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:783 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -msgid "My Settings" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:785 -#: ../../Zotlabs/Module/Settings/Tokens.php:165 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Photos.php:112 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:786 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 +#: ../../Zotlabs/Module/Photos.php:133 msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." +#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:788 -msgid "Last update:" +#: ../../Zotlabs/Module/Photos.php:520 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." +#: ../../Zotlabs/Module/Photos.php:569 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." +#: ../../Zotlabs/Module/Photos.php:608 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Photos.php:611 #, php-format -msgid "Visit %s's profile [%s]" +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" +#: ../../Zotlabs/Module/Photos.php:647 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" +#: ../../Zotlabs/Module/Photos.php:651 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" +#: ../../Zotlabs/Module/Photos.php:652 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" +#: ../../Zotlabs/Module/Photos.php:653 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" +#: ../../Zotlabs/Module/Photos.php:654 +msgid "Caption (optional):" msgstr "" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" +#: ../../Zotlabs/Module/Photos.php:655 +msgid "Description (optional):" msgstr "" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" +#: ../../Zotlabs/Module/Photos.php:686 +msgid "Album name could not be decoded" msgstr "" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" +#: ../../Zotlabs/Module/Photos.php:734 +msgid "Contact Photos" msgstr "" -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" +#: ../../Zotlabs/Module/Photos.php:757 +msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" +#: ../../Zotlabs/Module/Photos.php:759 +msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" +#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Chat.php:249 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../Zotlabs/Module/Photos.php:814 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" +#: ../../Zotlabs/Module/Photos.php:861 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" +#: ../../Zotlabs/Module/Photos.php:921 +msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" +#: ../../Zotlabs/Module/Photos.php:922 +msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:20 -msgid "Not valid email." +#: ../../Zotlabs/Module/Photos.php:944 +msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:23 -msgid "Protected email address. Cannot change to that email." +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:32 -msgid "System failure storing new email. Please try again." +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Move photo to album" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:40 -msgid "Technical skill level updated" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:56 -msgid "Password verification failed." +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:63 -msgid "Passwords do not match. Password unchanged." +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:67 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:81 -msgid "Password changed." +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:83 -msgid "Password update failed. Please try again." +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:120 -msgid "Account Settings" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:121 -msgid "Current Password" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 +msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:122 -msgid "Enter New Password" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 +#: ../../include/conversation.php:743 +msgid "Please wait" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:123 -msgid "Confirm New Password" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:709 +msgid "This is you" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:123 -msgid "Leave password fields blank unless changing" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 +msgid "Comment" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:124 -msgid "Your technical skill level" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:124 -msgid "Used to provide a member experience matched to your comfort level" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:127 -#: ../../Zotlabs/Module/Settings/Channel.php:459 -msgid "Email Address:" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:129 -msgid "Remove this account including all its channels" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:246 -msgid "Settings updated." +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:307 -msgid "Nobody except yourself" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:308 -msgid "Only those you specifically allow" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:309 -msgid "Approved connections" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:310 -msgid "Any connections" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1762 +msgid "View all" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:311 -msgid "Anybody on this website" -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1786 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Settings/Channel.php:312 -msgid "Anybody in this network" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:313 -msgid "Anybody authenticated" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:314 -msgid "Anybody on the internet" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:390 -msgid "Publish your default profile in the network directory" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:395 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:404 -msgid "Your channel address is" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 +#: ../../include/acl_selectors.php:181 +msgid "Close" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:450 -msgid "Channel Settings" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:457 -msgid "Basic Settings" +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:458 -#: ../../include/channel.php:1164 -msgid "Full Name:" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:460 -msgid "Your Timezone:" +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:461 -msgid "Default Post Location:" +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:461 -msgid "Geographical location to display on your posts" +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:462 -msgid "Use Browser Location:" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:464 -msgid "Adult Content" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:464 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:466 -msgid "Security and Privacy Settings" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:469 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:471 -msgid "Hide my online presence" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:471 -msgid "Prevents displaying in your profile that you are online" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:473 -msgid "Simple Privacy Settings:" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:474 -msgid "" -"Very Public - extremely permissive (should be used with caution)" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:475 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:476 -msgid "Private - default private, never open or public" +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:477 -msgid "Blocked - default blocked to/from everybody" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:479 -msgid "Allow others to tag your posts" +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:479 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:481 -msgid "Channel Permission Limits" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:483 -msgid "Expire other channel content after this many days" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:483 -msgid "0 or blank to use the website limit." +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# Accounts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:483 -#, php-format -msgid "This website expires after %d days." +#: ../../Zotlabs/Module/Admin.php:98 +msgid "# blocked accounts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:483 -msgid "This website does not expire imported content." +#: ../../Zotlabs/Module/Admin.php:99 +msgid "# expired accounts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:483 -msgid "The website limit takes precedence if lower than your limit." +#: ../../Zotlabs/Module/Admin.php:100 +msgid "# expiring accounts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:484 -msgid "Maximum Friend Requests/Day:" +#: ../../Zotlabs/Module/Admin.php:111 +msgid "# Channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:484 -msgid "May reduce spam activity" +#: ../../Zotlabs/Module/Admin.php:112 +msgid "# primary" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:485 -msgid "Default Access Control List (ACL)" +#: ../../Zotlabs/Module/Admin.php:113 +msgid "# clones" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:487 -msgid "Use my default audience setting for the type of object published" +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Message queues" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:494 -msgid "Channel permissions category:" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:500 -msgid "Maximum private messages per day from unknown people:" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:500 -msgid "Useful to reduce spamming" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:503 -msgid "Notification Settings" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "By default post a status message when:" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "accepting a friend request" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active plugins" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:506 -msgid "joining a forum/community" +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "making an interesting profile change" +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:508 -msgid "Send a notification email when:" +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:509 -msgid "You receive a connection request" +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:510 -msgid "Your connections are confirmed" +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:511 -msgid "Someone writes on your profile wall" +#: ../../Zotlabs/Module/Settings/Account.php:32 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:512 -msgid "Someone writes a followup comment" +#: ../../Zotlabs/Module/Settings/Account.php:40 +msgid "Technical skill level updated" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "You receive a private message" +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:514 -msgid "You receive a friend suggestion" +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:515 -msgid "You are tagged in a post" +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:516 -msgid "You are poked/prodded/etc. in a post" +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "Show visual notifications including:" +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "Unseen grid activity" +#: ../../Zotlabs/Module/Settings/Account.php:120 +msgid "Account Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:522 -msgid "Unseen channel activity" +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Current Password" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:523 -msgid "Unseen private messages" +#: ../../Zotlabs/Module/Settings/Account.php:122 +msgid "Enter New Password" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:523 -#: ../../Zotlabs/Module/Settings/Channel.php:528 -#: ../../Zotlabs/Module/Settings/Channel.php:529 -#: ../../Zotlabs/Module/Settings/Channel.php:530 -msgid "Recommended" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Confirm New Password" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:524 -msgid "Upcoming events" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Events today" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Your technical skill level" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "Upcoming birthdays" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Used to provide a member experience matched to your comfort level" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "Not available in all themes" +#: ../../Zotlabs/Module/Settings/Account.php:127 +#: ../../Zotlabs/Module/Settings/Channel.php:459 +msgid "Email Address:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:527 -msgid "System (personal) notifications" +#: ../../Zotlabs/Module/Settings/Account.php:129 +msgid "Remove this account including all its channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "System info messages" +#: ../../Zotlabs/Module/Settings/Channel.php:246 +msgid "Settings updated." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:529 -msgid "System critical alerts" +#: ../../Zotlabs/Module/Settings/Channel.php:307 +msgid "Nobody except yourself" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:530 -msgid "New connections" +#: ../../Zotlabs/Module/Settings/Channel.php:308 +msgid "Only those you specifically allow" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:531 -msgid "System Registrations" +#: ../../Zotlabs/Module/Settings/Channel.php:309 +msgid "Approved connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:532 -msgid "" -"Also show new wall posts, private messages and connections under Notices" +#: ../../Zotlabs/Module/Settings/Channel.php:310 +msgid "Any connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:534 -msgid "Notify me of events this many days in advance" +#: ../../Zotlabs/Module/Settings/Channel.php:311 +msgid "Anybody on this website" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:534 -msgid "Must be greater than 0" +#: ../../Zotlabs/Module/Settings/Channel.php:312 +msgid "Anybody in this network" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:536 -msgid "Advanced Account/Page Type Settings" +#: ../../Zotlabs/Module/Settings/Channel.php:313 +msgid "Anybody authenticated" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:537 -msgid "Change the behaviour of this account for special situations" +#: ../../Zotlabs/Module/Settings/Channel.php:314 +msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:539 -msgid "Miscellaneous Settings" +#: ../../Zotlabs/Module/Settings/Channel.php:390 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "Default photo upload folder" +#: ../../Zotlabs/Module/Settings/Channel.php:395 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:540 -#: ../../Zotlabs/Module/Settings/Channel.php:541 -msgid "%Y - current year, %m - current month" +#: ../../Zotlabs/Module/Settings/Channel.php:404 +msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:541 -msgid "Default file upload folder" +#: ../../Zotlabs/Module/Settings/Channel.php:450 +msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:543 -msgid "Personal menu to display in your channel pages" +#: ../../Zotlabs/Module/Settings/Channel.php:457 +msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:545 -msgid "Remove this channel." +#: ../../Zotlabs/Module/Settings/Channel.php:458 +#: ../../include/channel.php:1164 +msgid "Full Name:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Firefox Share $Projectname provider" +#: ../../Zotlabs/Module/Settings/Channel.php:460 +msgid "Your Timezone:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:547 -msgid "Start calendar week on monday" +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Default Post Location:" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:135 -msgid "No special theme for mobile devices" +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:138 -#, php-format -msgid "%s - (Experimental)" +#: ../../Zotlabs/Module/Settings/Channel.php:462 +msgid "Use Browser Location:" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:189 -msgid "Display Settings" +#: ../../Zotlabs/Module/Settings/Channel.php:464 +msgid "Adult Content" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Theme Settings" +#: ../../Zotlabs/Module/Settings/Channel.php:464 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:191 -msgid "Custom Theme Settings" +#: ../../Zotlabs/Module/Settings/Channel.php:466 +msgid "Security and Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:192 -msgid "Content Settings" +#: ../../Zotlabs/Module/Settings/Channel.php:469 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Display Theme:" +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Hide my online presence" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Select scheme" +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Mobile Theme:" +#: ../../Zotlabs/Module/Settings/Channel.php:473 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Preload images before rendering the page" +#: ../../Zotlabs/Module/Settings/Channel.php:474 +msgid "" +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:202 +#: ../../Zotlabs/Module/Settings/Channel.php:475 msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Enable user zoom on mobile devices" +#: ../../Zotlabs/Module/Settings/Channel.php:476 +msgid "Private - default private, never open or public" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Update browser every xx seconds" +#: ../../Zotlabs/Module/Settings/Channel.php:477 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Minimum of 10 seconds, no maximum" +#: ../../Zotlabs/Module/Settings/Channel.php:479 +msgid "Allow others to tag your posts" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Maximum number of conversations to load at any time:" +#: ../../Zotlabs/Module/Settings/Channel.php:479 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Maximum of 100 items" +#: ../../Zotlabs/Module/Settings/Channel.php:481 +msgid "Channel Permission Limits" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:206 -msgid "Show emoticons (smilies) as images" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:207 -msgid "Link post titles to source" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:208 -msgid "System Page Layout Editor - (advanced)" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +#, php-format +msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "Use blog/list mode on channel page" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:211 -#: ../../Zotlabs/Module/Settings/Display.php:212 -msgid "(comments displayed separately)" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:212 -msgid "Use blog/list mode on grid page" +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "Channel page max height of content (in pixels)" +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:213 -#: ../../Zotlabs/Module/Settings/Display.php:214 -msgid "click to expand content exceeding this height" +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "Default Access Control List (ACL)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:214 -msgid "Grid page max height of content (in pixels)" +#: ../../Zotlabs/Module/Settings/Channel.php:487 +msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:24 -msgid "No feature settings configured" +#: ../../Zotlabs/Module/Settings/Channel.php:494 +msgid "Channel permissions category:" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:31 -msgid "Feature/Addon Settings" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Module/Settings/Features.php:45 -msgid "Additional Features" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:34 -msgid "Name is required" +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:38 -msgid "Key and Secret are required" +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:86 -#: ../../Zotlabs/Module/Settings/Oauth.php:112 -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Add application" +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -msgid "Name of application" +#: ../../Zotlabs/Module/Settings/Channel.php:506 +msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -msgid "Consumer Key" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "making an interesting profile change" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -msgid "Consumer Secret" +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -msgid "Redirect" +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "Your connections are confirmed" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -msgid "Icon url" +#: ../../Zotlabs/Module/Settings/Channel.php:512 +msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:104 -msgid "Application not found." +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "You receive a private message" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:147 -msgid "Connected Apps" +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "You receive a friend suggestion" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -msgid "Client key starts with" +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -msgid "No name" +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -msgid "Remove authorization" +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Unseen grid activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." +#: ../../Zotlabs/Module/Settings/Channel.php:522 +msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:77 -msgid "Token saved." +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Unseen private messages" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:113 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Recommended" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:115 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:647 -msgid "Guest Access Tokens" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Events today" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Name" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Login Password" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Expires (yyyy-mm-dd)" +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "System info messages" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "New connections" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." +#: ../../Zotlabs/Module/Settings/Channel.php:531 +msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" +#: ../../Zotlabs/Module/Settings/Channel.php:532 +msgid "" +"Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 -msgid "$Projectname Notification" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 -msgid "$projectname" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 -msgid "Thank You," +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 -#, php-format -msgid "%s Administrator" +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." +#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" +#: ../../Zotlabs/Module/Settings/Channel.php:543 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Firefox Share $Projectname provider" msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" + +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "Start calendar week on monday" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +#: ../../Zotlabs/Module/Settings/Display.php:135 +msgid "No special theme for mobile devices" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:192 +#: ../../Zotlabs/Module/Settings/Display.php:138 #, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgid "%s - (Experimental)" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:193 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Display Settings" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Theme Settings" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Custom Theme Settings" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Content Settings" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Display Theme:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Select scheme" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Mobile Theme:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Preload images before rendering the page" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Update browser every xx seconds" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum of 100 items" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "Link post titles to source" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +#: ../../Zotlabs/Module/Settings/Display.php:208 +msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on channel page" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." +#: ../../Zotlabs/Module/Settings/Display.php:211 +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "(comments displayed separately)" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Use blog/list mode on grid page" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:293 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "click to expand content exceeding this height" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "Grid page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" +#: ../../Zotlabs/Module/Settings/Featured.php:24 +msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." +#: ../../Zotlabs/Module/Settings/Featured.php:31 +msgid "Feature/Addon Settings" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" +#: ../../Zotlabs/Module/Settings/Oauth.php:34 +msgid "Name is required" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" +#: ../../Zotlabs/Module/Settings/Oauth.php:38 +msgid "Key and Secret are required" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:124 -msgid "Visible to your default audience" +#: ../../Zotlabs/Module/Settings/Oauth.php:86 +#: ../../Zotlabs/Module/Settings/Oauth.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Add application" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:165 -msgid "Only me" +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +msgid "Name of application" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +msgid "Consumer Key" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +msgid "Consumer Secret" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Redirect" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Icon url" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" +#: ../../Zotlabs/Module/Settings/Oauth.php:104 +msgid "Application not found." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." +#: ../../Zotlabs/Module/Settings/Oauth.php:147 +msgid "Connected Apps" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +msgid "Client key starts with" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "No name" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "Remove authorization" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" +#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:647 +msgid "Guest Access Tokens" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:88 -msgid "Suggest Channels" +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 -#: ../../boot.php:1739 -msgid "Login" +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:184 -msgid "Grid" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:187 -msgid "Channel Home" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 -#: ../../include/conversation.php:1688 ../../include/conversation.php:1691 -msgid "Events" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:172 -msgid "Directory" +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:198 -msgid "Mail" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:99 -msgid "Chat" +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 +msgid "$Projectname Notification" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 +msgid "$projectname" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 +msgid "Thank You," msgstr "" -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 +#, php-format +msgid "%s Administrator" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " msgstr "" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1560 -msgid "Features" +#: ../../Zotlabs/Lib/Enotify.php:104 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" +#: ../../Zotlabs/Lib/Enotify.php:108 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" +#: ../../Zotlabs/Lib/Enotify.php:164 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" +#: ../../Zotlabs/Lib/Enotify.php:172 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" +#: ../../Zotlabs/Lib/Enotify.php:181 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" +#: ../../Zotlabs/Lib/Enotify.php:202 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" +#: ../../Zotlabs/Lib/Enotify.php:204 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" +#: ../../Zotlabs/Lib/Enotify.php:206 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" +#: ../../Zotlabs/Lib/Enotify.php:244 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:316 -msgid "like" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:264 ../../include/taxonomy.php:317 -msgid "dislike" +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:268 -msgid "Share This" +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:268 -msgid "share" +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:277 -msgid "Delivery Report" +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:295 +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" +msgid "You may visit their profile at %s" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:324 ../../Zotlabs/Lib/ThreadItem.php:325 +#: ../../Zotlabs/Lib/Enotify.php:284 #, php-format -msgid "View %s's profile - %s" +msgid "Please visit %s to approve or reject the connection request." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "to" +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via" +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:330 -msgid "Wall-to-Wall" +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:331 -msgid "via Wall-To-Wall:" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../include/conversation.php:722 -#, php-format -msgid "from %s" +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/Enotify.php:303 #, php-format -msgid "last edited: %s" +msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:347 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:372 -msgid "Save Bookmarks" +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:373 -msgid "Add to Calendar" +#: ../../Zotlabs/Lib/Enotify.php:668 +#, php-format +msgid "commented on %s's post" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:382 -msgid "Mark all seen" +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:124 +msgid "Visible to your default audience" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:423 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:165 +msgid "Only me" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1238 -msgid "Bold" +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1239 -msgid "Italic" +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1240 -msgid "Underline" +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1241 -msgid "Quote" +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:717 ../../include/conversation.php:1242 -msgid "Code" +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Image" +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:719 -msgid "Insert Link" +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:720 -msgid "Video" +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." msgstr "" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" msgstr "" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" msgstr "" -#: ../../include/dba/dba_driver.php:173 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" msgstr "" -#: ../../include/network.php:704 -msgid "view full size" +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" msgstr "" -#: ../../include/network.php:1935 ../../include/account.php:326 -#: ../../include/account.php:353 ../../include/account.php:413 -msgid "Administrator" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" msgstr "" -#: ../../include/network.php:1949 -msgid "No Subject" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" msgstr "" -#: ../../include/network.php:2203 ../../include/network.php:2204 -msgid "Friendica" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" msgstr "" -#: ../../include/network.php:2205 -msgid "OStatus" +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" msgstr "" -#: ../../include/network.php:2206 -msgid "GNU-Social" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" msgstr "" -#: ../../include/network.php:2207 -msgid "RSS/Atom" +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" msgstr "" -#: ../../include/network.php:2209 -msgid "Diaspora" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:88 +msgid "Suggest Channels" msgstr "" -#: ../../include/network.php:2210 -msgid "Facebook" +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 +#: ../../boot.php:1739 +msgid "Login" msgstr "" -#: ../../include/network.php:2211 -msgid "Zot" +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:184 +msgid "Grid" msgstr "" -#: ../../include/network.php:2212 -msgid "LinkedIn" +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:187 +msgid "Channel Home" msgstr "" -#: ../../include/network.php:2213 -msgid "XMPP/IM" +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 +#: ../../include/conversation.php:1688 ../../include/conversation.php:1691 +msgid "Events" msgstr "" -#: ../../include/network.php:2214 -msgid "MySpace" +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:172 +msgid "Directory" msgstr "" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:198 +msgid "Mail" msgstr "" -#: ../../include/channel.php:67 -msgid "Empty name" +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:99 +msgid "Chat" msgstr "" -#: ../../include/channel.php:70 -msgid "Name too long" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" msgstr "" -#: ../../include/channel.php:181 -msgid "No account identifier" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" msgstr "" -#: ../../include/channel.php:193 -msgid "Nickname is required." +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" msgstr "" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" msgstr "" -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1560 +msgid "Features" msgstr "" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" msgstr "" -#: ../../include/channel.php:341 -msgid "Default Profile" +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" msgstr "" -#: ../../include/channel.php:813 -msgid "Requested channel is not available." +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" msgstr "" -#: ../../include/channel.php:960 -msgid "Create New Profile" +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" msgstr "" -#: ../../include/channel.php:963 ../../include/nav.php:93 -msgid "Edit Profile" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" msgstr "" -#: ../../include/channel.php:980 -msgid "Visible to everybody" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +msgid "Select" msgstr "" -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" msgstr "" -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" msgstr "" -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" msgstr "" -#: ../../include/channel.php:1056 -msgid "Online Now" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" msgstr "" -#: ../../include/channel.php:1171 -msgid "Like this channel" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" msgstr "" -#: ../../include/channel.php:1195 -msgid "j F, Y" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" msgstr "" -#: ../../include/channel.php:1196 -msgid "j F" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" msgstr "" -#: ../../include/channel.php:1203 -msgid "Birthday:" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" msgstr "" -#: ../../include/channel.php:1216 -#, php-format -msgid "for %1$d %2$s" +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" msgstr "" -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" msgstr "" -#: ../../include/channel.php:1225 -msgid "Tags:" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" msgstr "" -#: ../../include/channel.php:1227 -msgid "Political Views:" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +msgid "Message signature validated" msgstr "" -#: ../../include/channel.php:1229 -msgid "Religion:" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +msgid "Message signature incorrect" msgstr "" -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" msgstr "" -#: ../../include/channel.php:1235 -msgid "Likes:" +#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:316 +msgid "like" msgstr "" -#: ../../include/channel.php:1237 -msgid "Dislikes:" +#: ../../Zotlabs/Lib/ThreadItem.php:264 ../../include/taxonomy.php:317 +msgid "dislike" msgstr "" -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" +#: ../../Zotlabs/Lib/ThreadItem.php:268 +msgid "Share This" msgstr "" -#: ../../include/channel.php:1241 -msgid "My other channels:" +#: ../../Zotlabs/Lib/ThreadItem.php:268 +msgid "share" msgstr "" -#: ../../include/channel.php:1243 -msgid "Musical interests:" +#: ../../Zotlabs/Lib/ThreadItem.php:277 +msgid "Delivery Report" msgstr "" -#: ../../include/channel.php:1245 -msgid "Books, literature:" -msgstr "" +#: ../../Zotlabs/Lib/ThreadItem.php:295 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" -#: ../../include/channel.php:1247 -msgid "Television:" +#: ../../Zotlabs/Lib/ThreadItem.php:324 ../../Zotlabs/Lib/ThreadItem.php:325 +#, php-format +msgid "View %s's profile - %s" msgstr "" -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "to" msgstr "" -#: ../../include/channel.php:1251 -msgid "Love/Romance:" +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "via" msgstr "" -#: ../../include/channel.php:1253 -msgid "Work/employment:" +#: ../../Zotlabs/Lib/ThreadItem.php:330 +msgid "Wall-to-Wall" msgstr "" -#: ../../include/channel.php:1255 -msgid "School/education:" +#: ../../Zotlabs/Lib/ThreadItem.php:331 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../include/channel.php:1276 -msgid "Like this thing" +#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../include/conversation.php:722 +#, php-format +msgid "from %s" msgstr "" -#: ../../include/contact_widgets.php:11 +#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:725 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" +msgid "last edited: %s" msgstr "" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" +#: ../../Zotlabs/Lib/ThreadItem.php:347 ../../include/conversation.php:726 +#, php-format +msgid "Expires: %s" msgstr "" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" +#: ../../Zotlabs/Lib/ThreadItem.php:372 +msgid "Save Bookmarks" msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../Zotlabs/Lib/ThreadItem.php:373 +msgid "Add to Calendar" msgstr "" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" +#: ../../Zotlabs/Lib/ThreadItem.php:382 +msgid "Mark all seen" msgstr "" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" +#: ../../Zotlabs/Lib/ThreadItem.php:423 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" msgstr "" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1238 +msgid "Bold" msgstr "" -#: ../../include/contact_widgets.php:53 ../../include/widgets.php:346 -#: ../../include/features.php:97 -msgid "Saved Folders" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1239 +msgid "Italic" msgstr "" -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -#: ../../include/widgets.php:349 ../../include/widgets.php:468 -msgid "Everything" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1240 +msgid "Underline" msgstr "" -#: ../../include/contact_widgets.php:91 ../../include/taxonomy.php:188 -#: ../../include/taxonomy.php:270 ../../include/widgets.php:46 -#: ../../include/widgets.php:465 -msgid "Categories" +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1241 +msgid "Quote" msgstr "" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:127 -msgid "show more" +#: ../../Zotlabs/Lib/ThreadItem.php:717 ../../include/conversation.php:1242 +msgid "Code" msgstr "" -#: ../../include/account.php:35 -msgid "Not a valid email address" +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Image" msgstr "" -#: ../../include/account.php:37 -msgid "Your email domain is not among those allowed on this site" +#: ../../Zotlabs/Lib/ThreadItem.php:719 +msgid "Insert Link" msgstr "" -#: ../../include/account.php:43 -msgid "Your email address is already registered at this site." +#: ../../Zotlabs/Lib/ThreadItem.php:720 +msgid "Video" msgstr "" -#: ../../include/account.php:75 -msgid "An invitation is required." +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." msgstr "" -#: ../../include/account.php:79 -msgid "Invitation could not be verified." +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../include/account.php:130 -msgid "Please enter the required information." +#: ../../include/dba/dba_driver.php:173 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/account.php:198 -msgid "Failed to store account information." +#: ../../include/network.php:704 +msgid "view full size" msgstr "" -#: ../../include/account.php:258 -#, php-format -msgid "Registration confirmation for %s" +#: ../../include/network.php:1935 ../../include/account.php:326 +#: ../../include/account.php:353 ../../include/account.php:413 +msgid "Administrator" msgstr "" -#: ../../include/account.php:324 -#, php-format -msgid "Registration request at %s" +#: ../../include/network.php:1949 +msgid "No Subject" msgstr "" -#: ../../include/account.php:348 -msgid "your registration password" +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" msgstr "" -#: ../../include/account.php:351 ../../include/account.php:411 -#, php-format -msgid "Registration details for %s" +#: ../../include/network.php:2205 +msgid "OStatus" msgstr "" -#: ../../include/account.php:423 -msgid "Account approved." +#: ../../include/network.php:2206 +msgid "GNU-Social" msgstr "" -#: ../../include/account.php:463 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/network.php:2207 +msgid "RSS/Atom" msgstr "" -#: ../../include/account.php:748 ../../include/account.php:750 -msgid "Click here to upgrade." +#: ../../include/network.php:2209 +msgid "Diaspora" msgstr "" -#: ../../include/account.php:756 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/network.php:2210 +msgid "Facebook" msgstr "" -#: ../../include/account.php:761 -msgid "This action is not available under your subscription plan." +#: ../../include/network.php:2211 +msgid "Zot" msgstr "" -#: ../../include/connections.php:95 -msgid "New window" +#: ../../include/network.php:2212 +msgid "LinkedIn" msgstr "" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/network.php:2213 +msgid "XMPP/IM" msgstr "" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" +#: ../../include/network.php:2214 +msgid "MySpace" msgstr "" #: ../../include/photos.php:114 @@ -7551,354 +7250,324 @@ msgstr "" msgid "Upload New Photos" msgstr "" -#: ../../include/text.php:447 -msgid "prev" -msgstr "" - -#: ../../include/text.php:449 -msgid "first" -msgstr "" - -#: ../../include/text.php:478 -msgid "last" -msgstr "" - -#: ../../include/text.php:481 -msgid "next" -msgstr "" - -#: ../../include/text.php:491 -msgid "older" -msgstr "" - -#: ../../include/text.php:493 -msgid "newer" -msgstr "" - -#: ../../include/text.php:886 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:911 -#, php-format -msgid "View all %s connections" -msgstr "" - -#: ../../include/text.php:1056 ../../include/text.php:1061 -msgid "poke" +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 +msgid "Logout" msgstr "" -#: ../../include/text.php:1056 ../../include/text.php:1061 -#: ../../include/conversation.php:243 -msgid "poked" +#: ../../include/nav.php:85 ../../include/nav.php:118 +msgid "End this session" msgstr "" -#: ../../include/text.php:1062 -msgid "ping" +#: ../../include/nav.php:88 ../../include/nav.php:149 +msgid "Home" msgstr "" -#: ../../include/text.php:1062 -msgid "pinged" +#: ../../include/nav.php:88 +msgid "Your posts and conversations" msgstr "" -#: ../../include/text.php:1063 -msgid "prod" +#: ../../include/nav.php:89 +msgid "Your profile page" msgstr "" -#: ../../include/text.php:1063 -msgid "prodded" +#: ../../include/nav.php:91 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/text.php:1064 -msgid "slap" +#: ../../include/nav.php:93 ../../include/channel.php:963 +msgid "Edit Profile" msgstr "" -#: ../../include/text.php:1064 -msgid "slapped" +#: ../../include/nav.php:93 +msgid "Edit your profile" msgstr "" -#: ../../include/text.php:1065 -msgid "finger" +#: ../../include/nav.php:95 +msgid "Your photos" msgstr "" -#: ../../include/text.php:1065 -msgid "fingered" +#: ../../include/nav.php:96 +msgid "Your files" msgstr "" -#: ../../include/text.php:1066 -msgid "rebuff" +#: ../../include/nav.php:99 +msgid "Your chatrooms" msgstr "" -#: ../../include/text.php:1066 -msgid "rebuffed" +#: ../../include/nav.php:105 ../../include/conversation.php:1714 +msgid "Bookmarks" msgstr "" -#: ../../include/text.php:1078 -msgid "happy" +#: ../../include/nav.php:105 +msgid "Your bookmarks" msgstr "" -#: ../../include/text.php:1079 -msgid "sad" +#: ../../include/nav.php:109 +msgid "Your webpages" msgstr "" -#: ../../include/text.php:1080 -msgid "mellow" +#: ../../include/nav.php:111 +msgid "Your wiki" msgstr "" -#: ../../include/text.php:1081 -msgid "tired" +#: ../../include/nav.php:115 +msgid "Sign in" msgstr "" -#: ../../include/text.php:1082 -msgid "perky" +#: ../../include/nav.php:132 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/text.php:1083 -msgid "angry" +#: ../../include/nav.php:135 +msgid "Remote authentication" msgstr "" -#: ../../include/text.php:1084 -msgid "stupefied" +#: ../../include/nav.php:135 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/text.php:1085 -msgid "puzzled" +#: ../../include/nav.php:149 +msgid "Home Page" msgstr "" -#: ../../include/text.php:1086 -msgid "interested" +#: ../../include/nav.php:152 +msgid "Create an account" msgstr "" -#: ../../include/text.php:1087 -msgid "bitter" +#: ../../include/nav.php:164 +msgid "Help and documentation" msgstr "" -#: ../../include/text.php:1088 -msgid "cheerful" +#: ../../include/nav.php:168 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/text.php:1089 -msgid "alive" +#: ../../include/nav.php:170 +msgid "Search site @name, #tag, ?docs, content" msgstr "" -#: ../../include/text.php:1090 -msgid "annoyed" +#: ../../include/nav.php:172 +msgid "Channel Directory" msgstr "" -#: ../../include/text.php:1091 -msgid "anxious" +#: ../../include/nav.php:184 +msgid "Your grid" msgstr "" -#: ../../include/text.php:1092 -msgid "cranky" +#: ../../include/nav.php:185 +msgid "Mark all grid notifications seen" msgstr "" -#: ../../include/text.php:1093 -msgid "disturbed" +#: ../../include/nav.php:187 +msgid "Channel home" msgstr "" -#: ../../include/text.php:1094 -msgid "frustrated" +#: ../../include/nav.php:188 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/text.php:1095 -msgid "depressed" +#: ../../include/nav.php:194 +msgid "Notices" msgstr "" -#: ../../include/text.php:1096 -msgid "motivated" +#: ../../include/nav.php:194 +msgid "Notifications" msgstr "" -#: ../../include/text.php:1097 -msgid "relaxed" +#: ../../include/nav.php:195 +msgid "See all notifications" msgstr "" -#: ../../include/text.php:1098 -msgid "surprised" +#: ../../include/nav.php:198 +msgid "Private mail" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:70 -msgid "Monday" +#: ../../include/nav.php:199 +msgid "See all private messages" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:71 -msgid "Tuesday" +#: ../../include/nav.php:200 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:72 -msgid "Wednesday" +#: ../../include/nav.php:201 ../../include/widgets.php:700 +msgid "Inbox" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:73 -msgid "Thursday" +#: ../../include/nav.php:202 ../../include/widgets.php:705 +msgid "Outbox" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:74 -msgid "Friday" +#: ../../include/nav.php:203 ../../include/widgets.php:710 +msgid "New Message" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:75 -msgid "Saturday" +#: ../../include/nav.php:206 +msgid "Event Calendar" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:69 -msgid "Sunday" +#: ../../include/nav.php:207 +msgid "See all events" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:45 -msgid "January" +#: ../../include/nav.php:208 +msgid "Mark all events seen" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:46 -msgid "February" +#: ../../include/nav.php:211 +msgid "Manage Your Channels" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:47 -msgid "March" +#: ../../include/nav.php:213 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:48 -msgid "April" +#: ../../include/nav.php:221 ../../include/widgets.php:1590 +msgid "Admin" msgstr "" -#: ../../include/text.php:1286 -msgid "May" +#: ../../include/nav.php:221 +msgid "Site Setup and Configuration" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:50 -msgid "June" +#: ../../include/nav.php:252 ../../include/conversation.php:855 +msgid "Loading..." msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:51 -msgid "July" +#: ../../include/nav.php:257 +msgid "@name, #tag, ?doc, content" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:52 -msgid "August" +#: ../../include/nav.php:258 +msgid "Please wait..." msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:53 -msgid "September" +#: ../../include/oembed.php:349 +msgid "Embedded content" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:54 -msgid "October" +#: ../../include/oembed.php:358 +msgid "Embedding disabled" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:55 -msgid "November" +#: ../../include/permissions.php:35 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:56 -msgid "December" +#: ../../include/permissions.php:39 +msgid "Can view my webpages" msgstr "" -#: ../../include/text.php:1363 ../../include/text.php:1367 -msgid "Unknown Attachment" +#: ../../include/permissions.php:43 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/text.php:1369 -msgid "unknown" +#: ../../include/permissions.php:46 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/text.php:1405 -msgid "remove category" +#: ../../include/permissions.php:46 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/text.php:1482 -msgid "remove from file" +#: ../../include/permissions.php:48 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/text.php:1781 ../../include/text.php:1852 -msgid "default" +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/text.php:1789 -msgid "Page layout" +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/text.php:1789 -msgid "You can create your own with the layouts tool" +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" msgstr "" -#: ../../include/text.php:1831 -msgid "Page content type" +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" msgstr "" -#: ../../include/text.php:1864 -msgid "Select an alternate language" +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/text.php:2001 -msgid "activity" +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/text.php:2302 -msgid "Design Tools" +#: ../../include/permissions.php:55 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/text.php:2308 -msgid "Pages" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/text.php:2330 -msgid "Import website..." +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/text.php:2331 -msgid "Select folder to import" +#: ../../include/import.php:1441 +msgid "Unable to import element \"" msgstr "" -#: ../../include/text.php:2332 -msgid "Import from a zipped folder:" +#: ../../include/items.php:918 ../../include/items.php:963 +msgid "(Unknown)" msgstr "" -#: ../../include/text.php:2333 -msgid "Import from cloud files:" +#: ../../include/items.php:1162 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/text.php:2334 -msgid "/cloud/channel/path/to/folder" +#: ../../include/items.php:1164 +msgid "Visible to you only." msgstr "" -#: ../../include/text.php:2335 -msgid "Enter path to website files" +#: ../../include/items.php:1166 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/text.php:2336 -msgid "Select folder" +#: ../../include/items.php:1168 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/text.php:2337 -msgid "Export website..." +#: ../../include/items.php:1170 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/text.php:2338 -msgid "Export to a zip file" +#: ../../include/items.php:1172 +msgid "Visible to all connections." msgstr "" -#: ../../include/text.php:2339 -msgid "website.zip" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." msgstr "" -#: ../../include/text.php:2340 -msgid "Enter a name for the zip file." +#: ../../include/items.php:1176 +msgid "Visible to specific connections." msgstr "" -#: ../../include/text.php:2341 -msgid "Export to cloud files" +#: ../../include/items.php:3966 +msgid "Privacy group is empty." msgstr "" -#: ../../include/text.php:2342 -msgid "/path/to/export/folder" +#: ../../include/items.php:3973 +#, php-format +msgid "Privacy group: %s" msgstr "" -#: ../../include/text.php:2343 -msgid "Enter a path to a cloud files destination." +#: ../../include/items.php:3985 +msgid "Connection not found." msgstr "" -#: ../../include/text.php:2344 -msgid "Specify folder" +#: ../../include/items.php:4338 +msgid "profile photo" msgstr "" #: ../../include/datetime.php:135 @@ -7955,35 +7624,103 @@ msgid_plural "days" msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:130 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:198 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:258 +#, php-format +msgid "Registration confirmation for %s" +msgstr "" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" +#: ../../include/account.php:324 +#, php-format +msgid "Registration request at %s" +msgstr "" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +#: ../../include/account.php:348 +msgid "your registration password" +msgstr "" -#: ../../include/datetime.php:562 +#: ../../include/account.php:351 ../../include/account.php:411 #, php-format -msgid "%1$s's birthday" +msgid "Registration details for %s" msgstr "" -#: ../../include/datetime.php:563 +#: ../../include/account.php:423 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:463 #, php-format -msgid "Happy Birthday %1$s" +msgid "Registration revoked for %s" +msgstr "" + +#: ../../include/account.php:748 ../../include/account.php:750 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/account.php:756 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/account.php:761 +msgid "This action is not available under your subscription plan." msgstr "" #: ../../include/selectors.php:30 @@ -8178,684 +7915,918 @@ msgstr "" msgid "Cohabiting" msgstr "" -#: ../../include/selectors.php:123 -msgid "Common law" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 +msgid "Image/photo" +msgstr "" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "" + +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "" + +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:619 ../../include/wiki.php:525 +msgid "Different viewers will see this text differently" +msgstr "" + +#: ../../include/bbcode.php:869 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "" + +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "" + +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "" + +#: ../../include/security.php:109 +msgid "guest:" +msgstr "" + +#: ../../include/security.php:527 +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/help.php:25 +msgid "Help:" +msgstr "" + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "" + +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "" + +#: ../../include/group.php:289 +msgid "edit" +msgstr "" + +#: ../../include/group.php:311 ../../include/features.php:83 +msgid "Privacy Groups" +msgstr "" + +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "" + +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "" + +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "" + +#: ../../include/group.php:316 ../../include/widgets.php:284 +msgid "add" +msgstr "" + +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/selectors.php:123 -msgid "Happy" +#: ../../include/attach.php:689 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/selectors.php:123 -msgid "Not looking" +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/selectors.php:123 -msgid "Swinger" +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/selectors.php:123 -msgid "Betrayed" +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unstable" +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" +#: ../../include/attach.php:1026 +msgid "Path not found." msgstr "" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" +#: ../../include/attach.php:1084 +msgid "mkdir failed." msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" +#: ../../include/attach.php:1088 +msgid "database storage failed." msgstr "" -#: ../../include/selectors.php:123 -msgid "Uncertain" +#: ../../include/attach.php:1136 +msgid "Empty path" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" +#: ../../include/page_widgets.php:7 +msgid "New Page" msgstr "" -#: ../../include/selectors.php:123 -msgid "Don't care" +#: ../../include/page_widgets.php:46 +msgid "Title" msgstr "" -#: ../../include/selectors.php:123 -msgid "Ask me" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" msgstr "" -#: ../../include/zot.php:700 -msgid "Invalid data packet" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" msgstr "" -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" msgstr "" -#: ../../include/zot.php:2329 +#: ../../include/js_strings.php:8 #, php-format -msgid "Unable to verify site signature for %s" +msgid "%s show less" msgstr "" -#: ../../include/zot.php:3711 -msgid "invalid target signature" +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" msgstr "" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" msgstr "" -#: ../../include/security.php:527 -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." +#: ../../include/js_strings.php:11 +msgid "Password too short" msgstr "" -#: ../../include/items.php:918 ../../include/items.php:963 -msgid "(Unknown)" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" msgstr "" -#: ../../include/items.php:1162 -msgid "Visible to anybody on the internet." +#: ../../include/js_strings.php:13 +msgid "everybody" msgstr "" -#: ../../include/items.php:1164 -msgid "Visible to you only." +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" msgstr "" -#: ../../include/items.php:1166 -msgid "Visible to anybody in this network." +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" msgstr "" -#: ../../include/items.php:1168 -msgid "Visible to anybody authenticated." +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../include/items.php:1170 -#, php-format -msgid "Visible to anybody on %s." +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" -#: ../../include/items.php:1172 -msgid "Visible to all connections." +#: ../../include/js_strings.php:18 +msgid "Nothing new here" msgstr "" -#: ../../include/items.php:1174 -msgid "Visible to approved connections." +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" msgstr "" -#: ../../include/items.php:1176 -msgid "Visible to specific connections." +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" msgstr "" -#: ../../include/items.php:3966 -msgid "Privacy group is empty." +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" msgstr "" -#: ../../include/items.php:3973 -#, php-format -msgid "Privacy group: %s" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../include/items.php:3985 -msgid "Connection not found." +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" msgstr "" -#: ../../include/items.php:4338 -msgid "profile photo" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" +#: ../../include/js_strings.php:29 +msgid "ago" msgstr "" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +#: ../../include/js_strings.php:30 +msgid "from now" msgstr "" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" +#: ../../include/js_strings.php:31 +msgid "less than a minute" msgstr "" -#: ../../include/group.php:289 -msgid "edit" +#: ../../include/js_strings.php:32 +msgid "about a minute" msgstr "" -#: ../../include/group.php:311 ../../include/features.php:83 -msgid "Privacy Groups" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" msgstr "" -#: ../../include/group.php:312 -msgid "Edit group" +#: ../../include/js_strings.php:34 +msgid "about an hour" msgstr "" -#: ../../include/group.php:313 -msgid "Add privacy group" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" msgstr "" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" +#: ../../include/js_strings.php:36 +msgid "a day" msgstr "" -#: ../../include/group.php:316 ../../include/widgets.php:284 -msgid "add" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" msgstr "" -#: ../../include/help.php:25 -msgid "Help:" +#: ../../include/js_strings.php:38 +msgid "about a month" msgstr "" -#: ../../include/page_widgets.php:7 -msgid "New Page" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" msgstr "" -#: ../../include/page_widgets.php:46 -msgid "Title" +#: ../../include/js_strings.php:40 +msgid "about a year" msgstr "" -#: ../../include/wiki.php:525 ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" msgstr "" -#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 -msgid "Logout" +#: ../../include/js_strings.php:42 +msgid " " msgstr "" -#: ../../include/nav.php:85 ../../include/nav.php:118 -msgid "End this session" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" msgstr "" -#: ../../include/nav.php:88 ../../include/nav.php:149 -msgid "Home" +#: ../../include/js_strings.php:45 ../../include/text.php:1289 +msgid "January" msgstr "" -#: ../../include/nav.php:88 -msgid "Your posts and conversations" +#: ../../include/js_strings.php:46 ../../include/text.php:1289 +msgid "February" msgstr "" -#: ../../include/nav.php:89 -msgid "Your profile page" +#: ../../include/js_strings.php:47 ../../include/text.php:1289 +msgid "March" msgstr "" -#: ../../include/nav.php:91 -msgid "Manage/Edit profiles" +#: ../../include/js_strings.php:48 ../../include/text.php:1289 +msgid "April" msgstr "" -#: ../../include/nav.php:93 -msgid "Edit your profile" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" msgstr "" -#: ../../include/nav.php:95 -msgid "Your photos" +#: ../../include/js_strings.php:50 ../../include/text.php:1289 +msgid "June" msgstr "" -#: ../../include/nav.php:96 -msgid "Your files" +#: ../../include/js_strings.php:51 ../../include/text.php:1289 +msgid "July" msgstr "" -#: ../../include/nav.php:99 -msgid "Your chatrooms" +#: ../../include/js_strings.php:52 ../../include/text.php:1289 +msgid "August" msgstr "" -#: ../../include/nav.php:105 ../../include/conversation.php:1714 -msgid "Bookmarks" +#: ../../include/js_strings.php:53 ../../include/text.php:1289 +msgid "September" msgstr "" -#: ../../include/nav.php:105 -msgid "Your bookmarks" +#: ../../include/js_strings.php:54 ../../include/text.php:1289 +msgid "October" msgstr "" -#: ../../include/nav.php:109 -msgid "Your webpages" +#: ../../include/js_strings.php:55 ../../include/text.php:1289 +msgid "November" msgstr "" -#: ../../include/nav.php:111 -msgid "Your wiki" +#: ../../include/js_strings.php:56 ../../include/text.php:1289 +msgid "December" msgstr "" -#: ../../include/nav.php:115 -msgid "Sign in" +#: ../../include/js_strings.php:57 +msgid "Jan" msgstr "" -#: ../../include/nav.php:132 -#, php-format -msgid "%s - click to logout" +#: ../../include/js_strings.php:58 +msgid "Feb" msgstr "" -#: ../../include/nav.php:135 -msgid "Remote authentication" +#: ../../include/js_strings.php:59 +msgid "Mar" msgstr "" -#: ../../include/nav.php:135 -msgid "Click to authenticate to your home hub" +#: ../../include/js_strings.php:60 +msgid "Apr" msgstr "" -#: ../../include/nav.php:149 -msgid "Home Page" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" msgstr "" -#: ../../include/nav.php:152 -msgid "Create an account" +#: ../../include/js_strings.php:62 +msgid "Jun" msgstr "" -#: ../../include/nav.php:164 -msgid "Help and documentation" +#: ../../include/js_strings.php:63 +msgid "Jul" msgstr "" -#: ../../include/nav.php:168 -msgid "Applications, utilities, links, games" +#: ../../include/js_strings.php:64 +msgid "Aug" msgstr "" -#: ../../include/nav.php:170 -msgid "Search site @name, #tag, ?docs, content" +#: ../../include/js_strings.php:65 +msgid "Sep" msgstr "" -#: ../../include/nav.php:172 -msgid "Channel Directory" +#: ../../include/js_strings.php:66 +msgid "Oct" msgstr "" -#: ../../include/nav.php:184 -msgid "Your grid" +#: ../../include/js_strings.php:67 +msgid "Nov" msgstr "" -#: ../../include/nav.php:185 -msgid "Mark all grid notifications seen" +#: ../../include/js_strings.php:68 +msgid "Dec" msgstr "" -#: ../../include/nav.php:187 -msgid "Channel home" +#: ../../include/js_strings.php:69 ../../include/text.php:1285 +msgid "Sunday" msgstr "" -#: ../../include/nav.php:188 -msgid "Mark all channel notifications seen" +#: ../../include/js_strings.php:70 ../../include/text.php:1285 +msgid "Monday" msgstr "" -#: ../../include/nav.php:194 -msgid "Notices" +#: ../../include/js_strings.php:71 ../../include/text.php:1285 +msgid "Tuesday" msgstr "" -#: ../../include/nav.php:194 -msgid "Notifications" +#: ../../include/js_strings.php:72 ../../include/text.php:1285 +msgid "Wednesday" msgstr "" -#: ../../include/nav.php:195 -msgid "See all notifications" +#: ../../include/js_strings.php:73 ../../include/text.php:1285 +msgid "Thursday" msgstr "" -#: ../../include/nav.php:198 -msgid "Private mail" +#: ../../include/js_strings.php:74 ../../include/text.php:1285 +msgid "Friday" msgstr "" -#: ../../include/nav.php:199 -msgid "See all private messages" +#: ../../include/js_strings.php:75 ../../include/text.php:1285 +msgid "Saturday" msgstr "" -#: ../../include/nav.php:200 -msgid "Mark all private messages seen" +#: ../../include/js_strings.php:76 +msgid "Sun" msgstr "" -#: ../../include/nav.php:201 ../../include/widgets.php:700 -msgid "Inbox" +#: ../../include/js_strings.php:77 +msgid "Mon" msgstr "" -#: ../../include/nav.php:202 ../../include/widgets.php:705 -msgid "Outbox" +#: ../../include/js_strings.php:78 +msgid "Tue" msgstr "" -#: ../../include/nav.php:203 ../../include/widgets.php:710 -msgid "New Message" +#: ../../include/js_strings.php:79 +msgid "Wed" msgstr "" -#: ../../include/nav.php:206 -msgid "Event Calendar" +#: ../../include/js_strings.php:80 +msgid "Thu" msgstr "" -#: ../../include/nav.php:207 -msgid "See all events" +#: ../../include/js_strings.php:81 +msgid "Fri" msgstr "" -#: ../../include/nav.php:208 -msgid "Mark all events seen" +#: ../../include/js_strings.php:82 +msgid "Sat" msgstr "" -#: ../../include/nav.php:211 -msgid "Manage Your Channels" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" msgstr "" -#: ../../include/nav.php:213 -msgid "Account/Channel Settings" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" msgstr "" -#: ../../include/nav.php:221 ../../include/widgets.php:1590 -msgid "Admin" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" msgstr "" -#: ../../include/nav.php:221 -msgid "Site Setup and Configuration" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" msgstr "" -#: ../../include/nav.php:252 ../../include/conversation.php:855 -msgid "Loading..." +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" msgstr "" -#: ../../include/nav.php:257 -msgid "@name, #tag, ?doc, content" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/nav.php:258 -msgid "Please wait..." +#: ../../include/follow.php:32 +msgid "Channel location missing." msgstr "" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 -#: ../../include/event.php:69 -msgid "l F d, Y \\@ g:i A" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." msgstr "" -#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 -#: ../../include/event.php:73 -msgid "Starts:" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." msgstr "" -#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 -#: ../../include/event.php:77 -msgid "Finishes:" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" msgstr "" -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" msgstr "" -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." msgstr "" -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" +#: ../../include/acl_selectors.php:172 +msgid "Show" msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" msgstr "" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" +#: ../../include/acl_selectors.php:207 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These " +"permissions set who is allowed to view the post." msgstr "" -#: ../../include/js_strings.php:13 -msgid "everybody" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" +#: ../../include/channel.php:67 +msgid "Empty name" msgstr "" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" +#: ../../include/channel.php:70 +msgid "Name too long" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../include/channel.php:181 +msgid "No account identifier" msgstr "" -#: ../../include/js_strings.php:17 -msgid "close all" +#: ../../include/channel.php:193 +msgid "Nickname is required." msgstr "" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" +#: ../../include/channel.php:341 +msgid "Default Profile" msgstr "" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." msgstr "" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" +#: ../../include/channel.php:960 +msgid "Create New Profile" msgstr "" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" +#: ../../include/channel.php:980 +msgid "Visible to everybody" msgstr "" -#: ../../include/js_strings.php:29 -msgid "ago" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" msgstr "" -#: ../../include/js_strings.php:30 -msgid "from now" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" msgstr "" -#: ../../include/js_strings.php:31 -msgid "less than a minute" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" msgstr "" -#: ../../include/js_strings.php:32 -msgid "about a minute" +#: ../../include/channel.php:1056 +msgid "Online Now" msgstr "" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" +#: ../../include/channel.php:1171 +msgid "Like this channel" msgstr "" -#: ../../include/js_strings.php:34 -msgid "about an hour" +#: ../../include/channel.php:1195 +msgid "j F, Y" msgstr "" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" +#: ../../include/channel.php:1196 +msgid "j F" msgstr "" -#: ../../include/js_strings.php:36 -msgid "a day" +#: ../../include/channel.php:1203 +msgid "Birthday:" msgstr "" -#: ../../include/js_strings.php:37 +#: ../../include/channel.php:1216 #, php-format -msgid "%d days" +msgid "for %1$d %2$s" msgstr "" -#: ../../include/js_strings.php:38 -msgid "about a month" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" msgstr "" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" +#: ../../include/channel.php:1225 +msgid "Tags:" msgstr "" -#: ../../include/js_strings.php:40 -msgid "about a year" +#: ../../include/channel.php:1227 +msgid "Political Views:" msgstr "" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" +#: ../../include/channel.php:1229 +msgid "Religion:" msgstr "" -#: ../../include/js_strings.php:42 -msgid " " +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" +#: ../../include/channel.php:1235 +msgid "Likes:" msgstr "" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" +#: ../../include/channel.php:1237 +msgid "Dislikes:" msgstr "" -#: ../../include/js_strings.php:57 -msgid "Jan" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/js_strings.php:58 -msgid "Feb" +#: ../../include/channel.php:1241 +msgid "My other channels:" msgstr "" -#: ../../include/js_strings.php:59 -msgid "Mar" +#: ../../include/channel.php:1243 +msgid "Musical interests:" msgstr "" -#: ../../include/js_strings.php:60 -msgid "Apr" +#: ../../include/channel.php:1245 +msgid "Books, literature:" msgstr "" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" +#: ../../include/channel.php:1247 +msgid "Television:" msgstr "" -#: ../../include/js_strings.php:62 -msgid "Jun" +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/js_strings.php:63 -msgid "Jul" +#: ../../include/channel.php:1251 +msgid "Love/Romance:" msgstr "" -#: ../../include/js_strings.php:64 -msgid "Aug" +#: ../../include/channel.php:1253 +msgid "Work/employment:" msgstr "" -#: ../../include/js_strings.php:65 -msgid "Sep" +#: ../../include/channel.php:1255 +msgid "School/education:" msgstr "" -#: ../../include/js_strings.php:66 -msgid "Oct" +#: ../../include/channel.php:1276 +msgid "Like this thing" msgstr "" -#: ../../include/js_strings.php:67 -msgid "Nov" +#: ../../include/connections.php:95 +msgid "New window" msgstr "" -#: ../../include/js_strings.php:68 -msgid "Dec" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/js_strings.php:76 -msgid "Sun" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../include/js_strings.php:77 -msgid "Mon" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" msgstr "" -#: ../../include/js_strings.php:78 -msgid "Tue" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" msgstr "" -#: ../../include/js_strings.php:79 -msgid "Wed" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" msgstr "" -#: ../../include/js_strings.php:80 -msgid "Thu" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/js_strings.php:81 -msgid "Fri" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" msgstr "" -#: ../../include/js_strings.php:82 -msgid "Sat" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" msgstr "" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" msgstr "" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" +#: ../../include/contact_widgets.php:53 ../../include/widgets.php:346 +#: ../../include/features.php:97 +msgid "Saved Folders" msgstr "" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +msgid "Everything" msgstr "" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" +#: ../../include/contact_widgets.php:91 ../../include/taxonomy.php:188 +#: ../../include/taxonomy.php:270 ../../include/widgets.php:46 +#: ../../include/widgets.php:465 +msgid "Categories" msgstr "" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:127 +msgid "show more" msgstr "" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." +#: ../../include/auth.php:148 +msgid "Logged out." msgstr "" -#: ../../include/follow.php:32 -msgid "Channel location missing." +#: ../../include/auth.php:275 +msgid "Failed authentication" msgstr "" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." +#: ../../include/auth.php:286 +msgid "Login failed." msgstr "" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." +#: ../../include/activities.php:41 +msgid " and " msgstr "" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." +#: ../../include/activities.php:49 +msgid "public profile" msgstr "" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" #: ../../include/conversation.php:204 @@ -8868,6 +8839,11 @@ msgstr "" msgid "%1$s poked %2$s" msgstr "" +#: ../../include/conversation.php:243 ../../include/text.php:1059 +#: ../../include/text.php:1064 +msgid "poked" +msgstr "" + #: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" @@ -9137,302 +9113,313 @@ msgid_plural "Abstains" msgstr[0] "" msgstr[1] "" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" msgstr "" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." +#: ../../include/taxonomy.php:293 +msgid "Keywords" msgstr "" -#: ../../include/import.php:1441 -msgid "Unable to import element \"" +#: ../../include/taxonomy.php:314 +msgid "have" msgstr "" -#: ../../include/acl_selectors.php:169 -msgid "Who can see this?" +#: ../../include/taxonomy.php:314 +msgid "has" msgstr "" -#: ../../include/acl_selectors.php:170 -msgid "Custom selection" +#: ../../include/taxonomy.php:315 +msgid "want" msgstr "" -#: ../../include/acl_selectors.php:171 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." +#: ../../include/taxonomy.php:315 +msgid "wants" msgstr "" -#: ../../include/acl_selectors.php:172 -msgid "Show" +#: ../../include/taxonomy.php:316 +msgid "likes" msgstr "" -#: ../../include/acl_selectors.php:173 -msgid "Don't show" +#: ../../include/taxonomy.php:317 +msgid "dislikes" msgstr "" -#: ../../include/acl_selectors.php:207 +#: ../../include/text.php:450 +msgid "prev" +msgstr "" + +#: ../../include/text.php:452 +msgid "first" +msgstr "" + +#: ../../include/text.php:481 +msgid "last" +msgstr "" + +#: ../../include/text.php:484 +msgid "next" +msgstr "" + +#: ../../include/text.php:494 +msgid "older" +msgstr "" + +#: ../../include/text.php:496 +msgid "newer" +msgstr "" + +#: ../../include/text.php:889 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:914 #, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These " -"permissions set who is allowed to view the post." +msgid "View all %s connections" msgstr "" -#: ../../include/auth.php:148 -msgid "Logged out." +#: ../../include/text.php:1059 ../../include/text.php:1064 +msgid "poke" msgstr "" -#: ../../include/auth.php:275 -msgid "Failed authentication" +#: ../../include/text.php:1065 +msgid "ping" msgstr "" -#: ../../include/auth.php:286 -msgid "Login failed." +#: ../../include/text.php:1065 +msgid "pinged" msgstr "" -#: ../../include/activities.php:41 -msgid " and " +#: ../../include/text.php:1066 +msgid "prod" msgstr "" -#: ../../include/activities.php:49 -msgid "public profile" +#: ../../include/text.php:1066 +msgid "prodded" msgstr "" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../include/text.php:1067 +msgid "slap" msgstr "" -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../include/text.php:1067 +msgid "slapped" msgstr "" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/text.php:1068 +msgid "finger" msgstr "" -#: ../../include/oembed.php:349 -msgid "Embedded content" +#: ../../include/text.php:1068 +msgid "fingered" msgstr "" -#: ../../include/oembed.php:358 -msgid "Embedding disabled" +#: ../../include/text.php:1069 +msgid "rebuff" msgstr "" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" +#: ../../include/text.php:1069 +msgid "rebuffed" msgstr "" -#: ../../include/taxonomy.php:293 -msgid "Keywords" +#: ../../include/text.php:1081 +msgid "happy" msgstr "" -#: ../../include/taxonomy.php:314 -msgid "have" +#: ../../include/text.php:1082 +msgid "sad" msgstr "" -#: ../../include/taxonomy.php:314 -msgid "has" +#: ../../include/text.php:1083 +msgid "mellow" msgstr "" -#: ../../include/taxonomy.php:315 -msgid "want" +#: ../../include/text.php:1084 +msgid "tired" msgstr "" -#: ../../include/taxonomy.php:315 -msgid "wants" +#: ../../include/text.php:1085 +msgid "perky" msgstr "" -#: ../../include/taxonomy.php:316 -msgid "likes" +#: ../../include/text.php:1086 +msgid "angry" msgstr "" -#: ../../include/taxonomy.php:317 -msgid "dislikes" +#: ../../include/text.php:1087 +msgid "stupefied" msgstr "" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 -#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 -#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 -#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 -#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 -#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:920 -msgid "Image/photo" +#: ../../include/text.php:1088 +msgid "puzzled" msgstr "" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 -msgid "Encrypted content" +#: ../../include/text.php:1089 +msgid "interested" msgstr "" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " +#: ../../include/text.php:1090 +msgid "bitter" msgstr "" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." +#: ../../include/text.php:1091 +msgid "cheerful" msgstr "" -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" +#: ../../include/text.php:1092 +msgid "alive" msgstr "" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" +#: ../../include/text.php:1093 +msgid "annoyed" msgstr "" -#: ../../include/bbcode.php:346 -msgid "spoiler" +#: ../../include/text.php:1094 +msgid "anxious" msgstr "" -#: ../../include/bbcode.php:869 -msgid "$1 wrote:" +#: ../../include/text.php:1095 +msgid "cranky" msgstr "" -#: ../../include/permissions.php:35 -msgid "Can view my normal stream and posts" +#: ../../include/text.php:1096 +msgid "disturbed" msgstr "" -#: ../../include/permissions.php:39 -msgid "Can view my webpages" +#: ../../include/text.php:1097 +msgid "frustrated" msgstr "" -#: ../../include/permissions.php:43 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/text.php:1098 +msgid "depressed" msgstr "" -#: ../../include/permissions.php:46 -msgid "Can like/dislike stuff" +#: ../../include/text.php:1099 +msgid "motivated" msgstr "" -#: ../../include/permissions.php:46 -msgid "Profiles and things other than posts/comments" +#: ../../include/text.php:1100 +msgid "relaxed" msgstr "" -#: ../../include/permissions.php:48 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/text.php:1101 +msgid "surprised" msgstr "" -#: ../../include/permissions.php:48 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/text.php:1289 +msgid "May" msgstr "" -#: ../../include/permissions.php:49 -msgid "Can chat with me (when available)" +#: ../../include/text.php:1366 ../../include/text.php:1370 +msgid "Unknown Attachment" msgstr "" -#: ../../include/permissions.php:50 -msgid "Can write to my file storage and photos" +#: ../../include/text.php:1372 +msgid "unknown" msgstr "" -#: ../../include/permissions.php:51 -msgid "Can edit my webpages" +#: ../../include/text.php:1408 +msgid "remove category" msgstr "" -#: ../../include/permissions.php:53 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/text.php:1485 +msgid "remove from file" msgstr "" -#: ../../include/permissions.php:55 -msgid "Can administer my channel resources" +#: ../../include/text.php:1784 ../../include/text.php:1855 +msgid "default" msgstr "" -#: ../../include/permissions.php:55 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/text.php:1792 +msgid "Page layout" msgstr "" -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." +#: ../../include/text.php:1792 +msgid "You can create your own with the layouts tool" msgstr "" -#: ../../include/event.php:1021 -msgid "Not specified" +#: ../../include/text.php:1834 +msgid "Page content type" msgstr "" -#: ../../include/event.php:1022 -msgid "Needs Action" +#: ../../include/text.php:1867 +msgid "Select an alternate language" msgstr "" -#: ../../include/event.php:1023 -msgid "Completed" +#: ../../include/text.php:2004 +msgid "activity" msgstr "" -#: ../../include/event.php:1024 -msgid "In Process" +#: ../../include/text.php:2305 +msgid "Design Tools" msgstr "" -#: ../../include/event.php:1025 -msgid "Cancelled" +#: ../../include/text.php:2311 +msgid "Pages" msgstr "" -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." +#: ../../include/text.php:2333 +msgid "Import website..." msgstr "" -#: ../../include/attach.php:500 -msgid "No source file." +#: ../../include/text.php:2334 +msgid "Select folder to import" msgstr "" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" +#: ../../include/text.php:2335 +msgid "Import from a zipped folder:" msgstr "" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" +#: ../../include/text.php:2336 +msgid "Import from cloud files:" msgstr "" -#: ../../include/attach.php:675 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../include/text.php:2337 +msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../include/attach.php:689 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../include/text.php:2338 +msgid "Enter path to website files" msgstr "" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/text.php:2339 +msgid "Select folder" msgstr "" -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/text.php:2340 +msgid "Export website..." msgstr "" -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." +#: ../../include/text.php:2341 +msgid "Export to a zip file" msgstr "" -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" +#: ../../include/text.php:2342 +msgid "website.zip" msgstr "" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" +#: ../../include/text.php:2343 +msgid "Enter a name for the zip file." msgstr "" -#: ../../include/attach.php:1026 -msgid "Path not found." +#: ../../include/text.php:2344 +msgid "Export to cloud files" msgstr "" -#: ../../include/attach.php:1084 -msgid "mkdir failed." +#: ../../include/text.php:2345 +msgid "/path/to/export/folder" msgstr "" -#: ../../include/attach.php:1088 -msgid "database storage failed." +#: ../../include/text.php:2346 +msgid "Enter a path to a cloud files destination." msgstr "" -#: ../../include/attach.php:1136 -msgid "Empty path" +#: ../../include/text.php:2347 +msgid "Specify folder" +msgstr "" + +#: ../../include/api.php:1330 +msgid "Public Timeline" msgstr "" #: ../../include/dir_fns.php:141 @@ -9467,10 +9454,6 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" -#: ../../include/api.php:1330 -msgid "Public Timeline" -msgstr "" - #: ../../include/widgets.php:103 msgid "System" msgstr "" @@ -9672,6 +9655,23 @@ msgstr "" msgid "Plugin Features" msgstr "" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/zot.php:3711 +msgid "invalid target signature" +msgstr "" + #: ../../include/features.php:50 msgid "General Features" msgstr "" diff --git a/util/pconfig b/util/pconfig index 1afba8306..1847a5a81 100755 --- a/util/pconfig +++ b/util/pconfig @@ -54,6 +54,13 @@ EndOfOutput; } +if($argc > 2 && strpos($argv[2],'.')) { + $x = explode('.',$argv[2]); + $argv = [ $argv[0], $argv[1], $x[0], $x[1], (($argc > 3) ? $argv[3] : null) ]; + $argc = $argc + 1; +} + + if($argc > 4) { set_pconfig($argv[1],$argv[2],$argv[3],$argv[4]); build_sync_packet($argv[1]); -- cgit v1.2.3 From 44d945cd08f425f310e7d24d2769e5185cb86988 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 18 Sep 2016 17:35:11 -0700 Subject: couple of minor issues with dba namespace during install and enotify::format referencing an unknown variable --- Zotlabs/Lib/Enotify.php | 16 +++++++++++----- Zotlabs/Module/Setup.php | 2 +- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index 56c717468..683e91b52 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -116,10 +116,13 @@ class Enotify { $itemlink = $params['link']; - // ignore like/unlike activity on posts - they probably require a sepearate notification preference + // ignore like/unlike activity on posts - they probably require a separate notification preference - if (array_key_exists('item',$params) && (! visible_activity($params['item']))) + if (array_key_exists('item',$params) && (! visible_activity($params['item']))) { + logger('notification: not a visible activity. Ignoring.'); + pop_lang(); return; + } $parent_mid = $params['parent_mid']; @@ -386,8 +389,11 @@ class Enotify { // Mark some notifications as seen right away // Note! The notification have to be created, because they are used to send emails // So easiest solution to hide them from Notices is to mark them as seen right away. - // Another option would be to not add them to the DB, and change how emails are handled (probably would be better that way) + // Another option would be to not add them to the DB, and change how emails are handled + // (probably would be better that way) + $always_show_in_notices = get_pconfig($recip['channel_id'],'system','always_show_in_notices'); + if (!$always_show_in_notices) { if (($params['type'] == NOTIFY_WALL) || ($params['type'] == NOTIFY_MAIL) || ($params['type'] == NOTIFY_INTRO)) { $seen = 1; @@ -654,12 +660,12 @@ class Enotify { require_once('include/conversation.php'); - // Call localize_item with the "brief" flag to get a one line status for activities. + // Call localize_item to get a one line status for activities. // This should set $item['localized'] to indicate we have a brief summary. localize_item($item); - if($item_localize) { + if($item['localize']) { $itemem_text = $item['localize']; } else { diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index 610f3c4f4..22a7be99e 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -87,7 +87,7 @@ class Setup extends \Zotlabs\Web\Controller { $db = \DBA::dba_factory($dbhost, $dbport, $dbuser, $dbpass, $dbdata, $dbtype, true); if(! \DBA::$dba->connected) { - echo 'Database Connect failed: ' . DBA::$dba->error; + echo 'Database Connect failed: ' . \DBA::$dba->error; killme(); } return; -- cgit v1.2.3 From 2863c35ab51fdba9483b4dfb9610045e358a3398 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 18 Sep 2016 17:51:40 -0700 Subject: a couple more namespace issues with exception handlers --- Zotlabs/Module/Api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Api.php b/Zotlabs/Module/Api.php index 71c8dc865..4fd59acc4 100644 --- a/Zotlabs/Module/Api.php +++ b/Zotlabs/Module/Api.php @@ -29,7 +29,7 @@ class Api extends \Zotlabs\Web\Controller { try { $request = OAuth1Request::from_request(); } - catch(Exception $e) { + catch(\Exception $e) { echo "
    "; var_dump($e); killme();
     			}
     			
    -- 
    cgit v1.2.3
    
    
    From 6c4f9f324b6351a12d14a0c5170ae77ca85ac58f Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Mon, 19 Sep 2016 04:08:27 -0700
    Subject: pro: filter features by techlevel
    
    ---
     include/features.php | 463 +++++++++++++++++++++++++++++++++++++++++----------
     1 file changed, 377 insertions(+), 86 deletions(-)
    
    diff --git a/include/features.php b/include/features.php
    index b59ab0c3e..1968a1f47 100644
    --- a/include/features.php
    +++ b/include/features.php
    @@ -36,6 +36,13 @@ function get_feature_default($feature) {
     }
     
     
    +function feature_level($feature,$def) {
    +	$x = get_config('feature_level',$feature);
    +	if($x !== false)
    +		return intval($x);
    +	return $def;
    +}
    +
     function get_features($filtered = true) {
     
     	$server_role = \Zotlabs\Lib\System::get_server_role();
    @@ -43,125 +50,409 @@ function get_features($filtered = true) {
     	if($server_role === 'basic' && $filtered)
     		return array();
     
    -	$arr = array(
    +	$arr = [
     
     		// General
    -		'general' => array(
    +		'general' => [
    +
     			t('General Features'),
    -			// This is per post, and different from fixed expiration 'expire' which isn't working yet
    -			array('content_expire',      t('Content Expiration'),     t('Remove posts/comments and/or private messages at a future time'), false, get_config('feature_lock','content_expire')),
    -			array('multi_profiles',      t('Multiple Profiles'),      t('Ability to create multiple profiles'), false, get_config('feature_lock','multi_profiles')),
    -			array('advanced_profiles',   t('Advanced Profiles'),      t('Additional profile sections and selections'),false,get_config('feature_lock','advanced_profiles')),
    -			array('profile_export',      t('Profile Import/Export'),  t('Save and load profile details across sites/channels'),false,get_config('feature_lock','profile_export')),
    -			array('webpages',            t('Web Pages'),              t('Provide managed web pages on your channel'),false,get_config('feature_lock','webpages')),
    -			array('wiki',            t('Wiki'),              t('Provide a wiki for your channel'),(($server_role === 'basic' || get_account_techlevel() < 3) ? false : true),get_config('feature_lock','wiki')),
    -//			array('hide_rating',       t('Hide Rating'),          t('Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else.'),false,get_config('feature_lock','hide_rating')),			
    -			array('private_notes',       t('Private Notes'),          t('Enables a tool to store notes and reminders (note: not encrypted)'),false,get_config('feature_lock','private_notes')),
    -			array('nav_channel_select',  t('Navigation Channel Select'), t('Change channels directly from within the navigation dropdown menu'),false,get_config('feature_lock','nav_channel_select')),
    -			array('photo_location',       t('Photo Location'),          t('If location data is available on uploaded photos, link this to a map.'),false,get_config('feature_lock','photo_location')),
    -			array('ajaxchat',       t('Access Controlled Chatrooms'),          t('Provide chatrooms and chat services with access control.'),true,get_config('feature_lock','ajaxchat')),
    -			array('smart_birthdays',       t('Smart Birthdays'),          t('Make birthday events timezone aware in case your friends are scattered across the planet.'),true,get_config('feature_lock','smart_birthdays')),
    -		),
    +
    +
    +			[
    +				'multi_profiles',      
    +				t('Multiple Profiles'),      
    +				t('Ability to create multiple profiles'), 
    +				false, 
    +				get_config('feature_lock','multi_profiles'),
    +				feature_level('multi_profiles',3),
    +			],
    +
    +			[
    +				'advanced_profiles',   
    +				t('Advanced Profiles'),      
    +				t('Additional profile sections and selections'),
    +				false,
    +				get_config('feature_lock','advanced_profiles'),
    +				feature_level('advanced_profiles',1),
    +			],
    +
    +			[
    +				'profile_export',      
    +				t('Profile Import/Export'),  
    +				t('Save and load profile details across sites/channels'),
    +				false,
    +				get_config('feature_lock','profile_export'),
    +				feature_level('profile_export',3),
    +			],
    +
    +			[
    +				'webpages',            
    +				t('Web Pages'),              
    +				t('Provide managed web pages on your channel'),
    +				false,
    +				get_config('feature_lock','webpages'),
    +				feature_level('webpages',3),
    +			],
    +
    +			[
    +				'wiki',            
    +				t('Wiki'),              
    +				t('Provide a wiki for your channel'),
    +				false,
    +				get_config('feature_lock','wiki'),
    +				feature_level('wiki',2),
    +			],
    +/*
    +			[
    +				'hide_rating',       
    +				t('Hide Rating'),          
    +				t('Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else.'),
    +				false,
    +				get_config('feature_lock','hide_rating'),
    +				feature_level('hide_rating',3),
    +			],
    +*/			
    +			[
    +				'private_notes',       
    +				t('Private Notes'),          
    +				t('Enables a tool to store notes and reminders (note: not encrypted)'),
    +				false,
    +				get_config('feature_lock','private_notes'),
    +				feature_level('private_notes',1),
    +			],
    +
    +			[
    +				'nav_channel_select',  
    +				t('Navigation Channel Select'), 
    +				t('Change channels directly from within the navigation dropdown menu'),
    +				false,
    +				get_config('feature_lock','nav_channel_select'),
    +				feature_level('nav_channel_select',3),
    +			],
    +
    +			[
    +				'photo_location',       
    +				t('Photo Location'),          
    +				t('If location data is available on uploaded photos, link this to a map.'),
    +				false,
    +				get_config('feature_lock','photo_location'),
    +				feature_level('photo_location',2),
    +			],
    +
    +			[
    +				'ajaxchat',       
    +				t('Access Controlled Chatrooms'),          
    +				t('Provide chatrooms and chat services with access control.'),
    +				true,
    +				get_config('feature_lock','ajaxchat'),
    +				feature_level('ajaxchat',1),
    +			],
    +
    +			[
    +				'smart_birthdays',       
    +				t('Smart Birthdays'),          
    +				t('Make birthday events timezone aware in case your friends are scattered across the planet.'),
    +				true,
    +				get_config('feature_lock','smart_birthdays'),
    +				feature_level('smart_birthdays',2),
    +			],
    +
    +			[ 
    +				'advanced_dirsearch', 
    +				t('Advanced Directory Search'),
    +				t('Allows creation of complex directory search queries'),
    +				false, 
    +				get_config('feature_lock','advanced_dirsearch'),
    +				feature_level('advanced_dirsearch',4),
    +			],
    +
    +			[ 
    +				'advanced_theming', 
    +				t('Advanced Theme and Layout Settings'),
    +				t('Allows fine tuning of themes and page layouts'),
    +				false, 
    +				get_config('feature_lock','advanced_theming'),
    +				feature_level('advanced_theming',4),
    +			],
    +		],
     
     		// Post composition
    -		'composition' => array(
    +		'composition' => [
    +
     			t('Post Composition Features'),
    -			array('large_photos',   t('Large Photos'),              t('Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails'),false,get_config('feature_lock','large_photos')),
    -			array('channel_sources', t('Channel Sources'),          t('Automatically import channel content from other channels or feeds'),false,get_config('feature_lock','channel_sources')),
    -			array('content_encrypt', t('Even More Encryption'),          t('Allow optional encryption of content end-to-end with a shared secret key'),false,get_config('feature_lock','content_encrypt')),
    -			array('consensus_tools', t('Enable Voting Tools'),      t('Provide a class of post which others can vote on'),false,get_config('feature_lock','consensus_tools')),
    -			array('disable_comments', t('Disable Comments'),      t('Provide the option to disable comments for a post'),false,get_config('feature_lock','disable_comments')),
    -			array('delayed_posting', t('Delayed Posting'),      t('Allow posts to be published at a later date'),false,get_config('feature_lock','delayed_posting')),
    -			array('suppress_duplicates', t('Suppress Duplicate Posts/Comments'),  t('Prevent posts with identical content to be published with less than two minutes in between submissions.'),true,get_config('feature_lock','suppress_duplicates')),
     
    -		),
    +			[
    +				'large_photos',   
    +				t('Large Photos'),              
    +				t('Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails'),
    +				false,
    +				get_config('feature_lock','large_photos'),
    +				feature_level('large_photos',1),
    +			],
    +
    +			[
    +				'channel_sources', 
    +				t('Channel Sources'),          
    +				t('Automatically import channel content from other channels or feeds'),
    +				false,
    +				get_config('feature_lock','channel_sources'),
    +				feature_level('channel_sources',3),
    +			],
    +			
    +			[
    +				'content_encrypt', 
    +				t('Even More Encryption'),          
    +				t('Allow optional encryption of content end-to-end with a shared secret key'),
    +				false,
    +				get_config('feature_lock','content_encrypt'),
    +				feature_level('content_encrypt',3),
    +			],
    +			
    +			[
    +				'consensus_tools', 
    +				t('Enable Voting Tools'),      
    +				t('Provide a class of post which others can vote on'),
    +				false,
    +				get_config('feature_lock','consensus_tools'),
    +				feature_level('consensus_tools',3),
    +			],
    +
    +			[
    +				'disable_comments', 
    +				t('Disable Comments'),      
    +				t('Provide the option to disable comments for a post'),
    +				false,
    +				get_config('feature_lock','disable_comments'),
    +				feature_level('disable_comments',2),
    +			],
    +
    +			[
    +				'delayed_posting', 
    +				t('Delayed Posting'),      
    +				t('Allow posts to be published at a later date'),
    +				false,
    +				get_config('feature_lock','delayed_posting'),
    +				feature_level('delayed_posting',2),
    +			],
    +
    +			[ 	
    +				'content_expire',
    +				t('Content Expiration'),
    +				t('Remove posts/comments and/or private messages at a future time'), 
    +				false, 
    +				get_config('feature_lock','content_expire'),
    +				feature_level('content_expire',1),
    +			],
    +
    +			[
    +				'suppress_duplicates', 
    +				t('Suppress Duplicate Posts/Comments'),  
    +				t('Prevent posts with identical content to be published with less than two minutes in between submissions.'),
    +				true,
    +				get_config('feature_lock','suppress_duplicates'),
    +				feature_level('suppress_duplicates',1),
    +			],
    +
    +		],
     
     		// Network Tools
    -		'net_module' => array(
    +		'net_module' => [
    +
     			t('Network and Stream Filtering'),
    -			array('archives',       t('Search by Date'),			t('Ability to select posts by date ranges'),false,get_config('feature_lock','archives')),
    -			array('groups',    		t('Privacy Groups'),		t('Enable management and selection of privacy groups'),true,get_config('feature_lock','groups')),
    -			array('savedsearch',    t('Saved Searches'),			t('Save search terms for re-use'),false,get_config('feature_lock','savedsearch')),
    -			array('personal_tab',   t('Network Personal Tab'),		t('Enable tab to display only Network posts that you\'ve interacted on'),false,get_config('feature_lock','personal_tab')),
    -			array('new_tab',   		t('Network New Tab'),			t('Enable tab to display all new Network activity'),false,get_config('feature_lock','new_tab')),
    -			array('affinity',       t('Affinity Tool'),			    t('Filter stream activity by depth of relationships'),false,get_config('feature_lock','affinity')),
    -			array('suggest',    	t('Suggest Channels'),			t('Show friend and connection suggestions'),false,get_config('feature_lock','suggest')),
    -		),
    +
    +			[
    +				'archives',       
    +				t('Search by Date'),			
    +				t('Ability to select posts by date ranges'),
    +				false,
    +				get_config('feature_lock','archives'),
    +				feature_level('archives',1),
    +			],
    +
    +			[
    +				'groups',    		
    +				t('Privacy Groups'),		
    +				t('Enable management and selection of privacy groups'),
    +				true,
    +				get_config('feature_lock','groups'),
    +				feature_level('groups',0),
    +			],
    +
    +			[
    +				'savedsearch',    
    +				t('Saved Searches'),			
    +				t('Save search terms for re-use'),
    +				false,
    +				get_config('feature_lock','savedsearch'),
    +				feature_level('savedsearch',2),
    +			],
    +
    +			[
    +				'personal_tab',   
    +				t('Network Personal Tab'),		
    +				t('Enable tab to display only Network posts that you\'ve interacted on'),
    +				false,
    +				get_config('feature_lock','personal_tab'),
    +				feature_level('personal_tab',1),
    +			],
    +
    +			[
    +				'new_tab',   		
    +				t('Network New Tab'),			
    +				t('Enable tab to display all new Network activity'),
    +				false,
    +				get_config('feature_lock','new_tab'),
    +				feature_level('new_tab',2),
    +			],
    +
    +			[
    +				'affinity',       
    +				t('Affinity Tool'),			    
    +				t('Filter stream activity by depth of relationships'),
    +				false,
    +				get_config('feature_lock','affinity'),
    +				feature_level('affinity',1),
    +			],
    +
    +			[
    +				'suggest',    	
    +				t('Suggest Channels'),			
    +				t('Show friend and connection suggestions'),
    +				false,
    +				get_config('feature_lock','suggest'),
    +				feature_level('suggest',1),
    +			],
    +
    +			[
    +				'connfilter',
    +				t('Connection Filtering'),
    +				t('Filter incoming posts from connections based on keywords/content'),
    +				false,
    +				get_config('feature_lock','connfilter'),
    +				feature_level('connfilter',3),
    +			],
    +
    +
    +		],
     
     		// Item tools
    -		'tools' => array(
    +		'tools' => [
    +
     			t('Post/Comment Tools'),
    -			array('commtag',        t('Community Tagging'),					t('Ability to tag existing posts'),false,get_config('feature_lock','commtag')),
    -			array('categories',     t('Post Categories'),			t('Add categories to your posts'),false,get_config('feature_lock','categories')),
    -			array('emojis',     t('Emoji Reactions'),			t('Add emoji reaction ability to posts'),true,get_config('feature_lock','emojis')),
    -			array('filing',         t('Saved Folders'),				t('Ability to file posts under folders'),false,get_config('feature_lock','filing')),
    -			array('dislike',        t('Dislike Posts'),				t('Ability to dislike posts/comments'),false,get_config('feature_lock','dislike')),
    -			array('star_posts',     t('Star Posts'),				t('Ability to mark special posts with a star indicator'),false,get_config('feature_lock','star_posts')),
    -			array('tagadelic',      t('Tag Cloud'),				    t('Provide a personal tag cloud on your channel page'),false,get_config('feature_lock','tagedelic')),
    -		),
    -	);
     
    -	$techlevel = get_account_techlevel();
    +			[
    +				'commtag',        
    +				t('Community Tagging'),					
    +				t('Ability to tag existing posts'),
    +				false,
    +				get_config('feature_lock','commtag'),
    +				feature_level('commtag',1),
    +			],
     
    -	if($techlevel > 2) {
    -		$arr['net_module'][] = [
    -			'connfilter',
    -			t('Connection Filtering'),
    -			t('Filter incoming posts from connections based on keywords/content'),
    -			false,
    -			get_config('feature_lock','connfilter')
    -		];
    -	}
    +			[
    +				'categories',     
    +				t('Post Categories'),			
    +				t('Add categories to your posts'),
    +				false,
    +				get_config('feature_lock','categories'),
    +				feature_level('categories',1),
    +			],
     
    -	if($techlevel > 3) {
    -		if($server_role === 'pro') {
    -			$arr['general'][] = [
    -				'premium_channel', 
    -				t('Premium Channel'), 
    -				t('Allows you to set restrictions and terms on those that connect with your channel'),
    +			[
    +				'emojis',     
    +				t('Emoji Reactions'),			
    +				t('Add emoji reaction ability to posts'),
    +				true,
    +				get_config('feature_lock','emojis'),
    +				feature_level('emojis',1),
    +			],
    +
    +			[
    +				'filing',         
    +				t('Saved Folders'),				
    +				t('Ability to file posts under folders'),
     				false,
    -				get_config('feature_lock','premium_channel')
    -			];
    -		}
    -		$arr['general'][] = [ 
    -			'advanced_dirsearch', 
    -			t('Advanced Directory Search'),
    -			t('Allows creation of complex directory search queries'),
    -			false, 
    -			get_config('feature_lock','advanced_dirsearch')
    -		];
    -		$arr['general'][] = [ 
    -			'advanced_theming', 
    -			t('Advanced Theme and Layout Settings'),
    -			t('Allows fine tuning of themes and page layouts'),
    -			false, 
    -			get_config('feature_lock','advanced_theming')
    +				get_config('feature_lock','filing'),
    +				feature_level('filing',2),
    +			],
    +
    +			[
    +				'dislike',        
    +				t('Dislike Posts'),				
    +				t('Ability to dislike posts/comments'),
    +				false,
    +				get_config('feature_lock','dislike'),
    +				feature_level('dislike',1),
    +			],
    +
    +			[
    +				'star_posts',     
    +				t('Star Posts'),				
    +				t('Ability to mark special posts with a star indicator'),
    +				false,
    +				get_config('feature_lock','star_posts'),
    +				feature_level('star_posts',1),
    +			],
    +
    +			[
    +				'tagadelic',      
    +				t('Tag Cloud'),				    
    +				t('Provide a personal tag cloud on your channel page'),
    +				false,
    +				get_config('feature_lock','tagadelic'),
    +				feature_level('tagadelic',2),
    +			],
    +		],
    +	];
    +
    +
    +	if($server_role === 'pro') {
    +		$arr['general'][] = [
    +			'premium_channel', 
    +			t('Premium Channel'), 
    +			t('Allows you to set restrictions and terms on those that connect with your channel'),
    +			false,
    +			get_config('feature_lock','premium_channel'),
    +			feature_level('premium_channel',4),
     		];
     	}
     
    -
    +	$techlevel = get_account_techlevel();
     
     	// removed any locked features and remove the entire category if this makes it empty
     
     	if($filtered) {
    +		$narr = [];
     		foreach($arr as $k => $x) {
    +			$narr[$k] = [ $arr[$k][0] ];
     			$has_items = false;
    -			for($y = 0; $y < count($arr[$k]); $y ++) {	
    +			for($y = 0; $y < count($arr[$k]); $y ++) {
    +				$disabled = false;
     				if(is_array($arr[$k][$y])) {
    -					if($arr[$k][$y][4] === false) {
    -						$has_items = true;
    +					if($arr[$k][$y][5] > $techlevel) {
    +						$disabled = true;
     					}
    -					else {
    -						unset($arr[$k][$y]);
    +					if($arr[$k][$y][4] !== false) { 
    +						$disabled = true;
    +					}
    +					if(! $disabled) {
    +						$has_items = true;
    +						$narr[$k][$y] = $arr[$k][$y];
     					}
     				}
     			}
     			if(! $has_items) {
    -				unset($arr[$k]);
    +				$narr[$k] = '';
     			}
     		}
    +		for($x = 0; $x < count($narr); $x ++) {
    +			if(! $narr[$x])
    +				unset($narr[$x]);
    +		}
     	}
    -
    -	call_hooks('get_features',$arr);
    -	return $arr;
    +	else {
    +		$narr = $arr;
    +	}
    +	call_hooks('get_features',$narr);
    +	return $narr;
     }
    -- 
    cgit v1.2.3
    
    
    From 8d0a0674c64148ef77da03851451dfc90fc771a9 Mon Sep 17 00:00:00 2001
    From: Mario Vavti 
    Date: Mon, 19 Sep 2016 13:35:36 +0200
    Subject: fix issue #517
    
    ---
     Zotlabs/Module/Acl.php    | 2 +-
     Zotlabs/Module/Manage.php | 2 +-
     2 files changed, 2 insertions(+), 2 deletions(-)
    
    diff --git a/Zotlabs/Module/Acl.php b/Zotlabs/Module/Acl.php
    index 8c62f4de9..1acd8e320 100644
    --- a/Zotlabs/Module/Acl.php
    +++ b/Zotlabs/Module/Acl.php
    @@ -66,7 +66,7 @@ class Acl extends \Zotlabs\Web\Controller {
     			// These queries require permission checking. We'll create a simple array of xchan_hash for those with
     			// the requisite permissions which we can check against. 
     
    -			$x = q("select xchan from abconfig where chan = %d and cat = 'their_perms' and k = '%s' and v = 1",
    +			$x = q("select xchan from abconfig where chan = %d and cat = 'their_perms' and k = '%s' and v = '1'",
     				intval(local_channel()),
     				dbesc(($type === 'm') ? 'post_mail' : 'tag_deliver')
     			);
    diff --git a/Zotlabs/Module/Manage.php b/Zotlabs/Module/Manage.php
    index 8f815d6d4..ec9ef4c06 100644
    --- a/Zotlabs/Module/Manage.php
    +++ b/Zotlabs/Module/Manage.php
    @@ -143,7 +143,7 @@ class Manage extends \Zotlabs\Web\Controller {
     		$create = array( 'new_channel', t('Create a new channel'), t('Create New'));
     	
     		$delegates = q("select * from abook left join xchan on abook_xchan = xchan_hash where 
    -			abook_channel = %d and abook_xchan in ( select xchan from abconfig where chan = %d and cat = 'their_perms' and k = 'delegate' and v = 1 )",
    +			abook_channel = %d and abook_xchan in ( select xchan from abconfig where chan = %d and cat = 'their_perms' and k = 'delegate' and v = '1' )",
     			intval(local_channel()),
     			intval(local_channel())
     		);
    -- 
    cgit v1.2.3
    
    
    From 0cba82ce9c23ea4db141d2d5db3dcfcb4a4fe7dc Mon Sep 17 00:00:00 2001
    From: Mario Vavti 
    Date: Mon, 19 Sep 2016 15:09:19 +0200
    Subject: if a feature category array has no items unset it
    
    ---
     include/features.php | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/include/features.php b/include/features.php
    index 1968a1f47..d1b38b48e 100644
    --- a/include/features.php
    +++ b/include/features.php
    @@ -442,7 +442,7 @@ function get_features($filtered = true) {
     				}
     			}
     			if(! $has_items) {
    -				$narr[$k] = '';
    +				unset($narr[$k]);
     			}
     		}
     		for($x = 0; $x < count($narr); $x ++) {
    -- 
    cgit v1.2.3
    
    
    From 0011b8fd4809f4e8eb3f21dc036714493e45c5b4 Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Mon, 19 Sep 2016 14:42:56 -0700
    Subject: probable fix for #509 - errant comment notifications provided on
     delayed (duplicate delivery) top level posts which are probably coming from
     clones
    
    ---
     include/items.php | 6 ++++++
     1 file changed, 6 insertions(+)
    
    diff --git a/include/items.php b/include/items.php
    index 9079621a3..f2be2a114 100755
    --- a/include/items.php
    +++ b/include/items.php
    @@ -2291,6 +2291,11 @@ function store_diaspora_comment_sig($datarray, $channel, $parent_item, $post_id,
     
     function send_status_notifications($post_id,$item) {
     
    +	// only send notifications for comments
    +
    +	if($item['mid'] == $item['parent_mid'])
    +		return;
    +
     	$notify = false;
     	$unfollowed = false;
     
    @@ -2306,6 +2311,7 @@ function send_status_notifications($post_id,$item) {
     	if($item['author_xchan'] === $r[0]['channel_hash'])
     		return;
     
    +
     	// I'm the owner - notify me
     
     	if($item['owner_hash'] === $r[0]['channel_hash'])
    -- 
    cgit v1.2.3
    
    
    From 85bf025adcb15398974bc04c5753df2412874025 Mon Sep 17 00:00:00 2001
    From: Mario Vavti 
    Date: Tue, 20 Sep 2016 13:31:54 +0200
    Subject: update changelog
    
    ---
     CHANGELOG | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
     1 file changed, 57 insertions(+)
    
    diff --git a/CHANGELOG b/CHANGELOG
    index 67077b767..660b82897 100644
    --- a/CHANGELOG
    +++ b/CHANGELOG
    @@ -1,3 +1,60 @@
    +Hubzilla 1.14 (not released)
    +	- Upgrade fullcalendar library to version 3
    +	- Whitelist button tag in htmlpurifier
    +	- Upgrade justifiedGallery library to version 3.6.3
    +	- Pubsites improvements
    +	- Upgrade foundation library to version 6.2.3
    +	- Ability to move photos to another album
    +	- Submodules for settings page
    +	- Submodules for admin page
    +	- Remove chatroom suggestions
    +	- Revamped and improved theme select backend
    +	- Theme preview
    +	⁻ Techlevels for pro server role
    +	- BBcode checklist
    +	- Improve save to folder modal dialog
    +	- Case insensitive sort apps
    +	- Add authors to post distribution
    +	- Redirect to plugin page after enabling to show configuration settings if applicable
    +	- Move allowed email domains to admin->security page
    +	- Display text around the searched query in documentation search
    +	- Comanche observer conditionals
    +	- Remove ratings
    +	- Context help for /connedit
    +	- Comanche conditionals
    +	- Cover photo enhancements (does not disappear after initial scrolldown)
    +	- Website import/export
    +	- Server roles (basic, standard and pro)
    +
    +	Bugfixes
    +	- do not show hidden channels in /randprof
    +	- Various postgres fixes
    +	- Illegal offset errors in include/conversation:status_editor() when no permissions array is passed
    +	- Patch foundation-6.2.3 to work with jquery-3.1
    +	- Custom/expert permissions bug
    +	- Mail: return array instead of object
    +	- Don't send purge_all notification to self
    +	- Saved search: tags and connection searches weren't being saved
    +	- Do not allow PERMS_PUBLIC as a choice for writable permission limits
    +	- Force cover photos as well as profile photos to be public. As a side effect 'thing' photos will also be considered public
    +	- Make lock switching actually work with multiple acl forms
    +	- Create smarty dir before any templates can be initialised
    +	- Fix aconfig
    +	- Broken doc search
    +	- Puclic forum check with custom/exoert permissions
    +
    +	Plugins
    +	- Diaspora: third party on other network comment issue
    +	- Diaspora: comment fix (hubzilla originated comment with plugin activated by comment author not making it to Diaspora)
    +	- Cdav: provide calendar list view
    +	- Diaspora: allow comments on public diaspora posts which were imported by subscribing to public tags.
    +	- Wppost: add blog_id parameter for WordPress MU sites such as WordPress.com
    +	- Wppost: don't log the password in normal mode
    +	- Hubwall: provide choice of sender addresses, the real admin email, postmaster, or noreply.
    +	- Chord: General cleanup of chord app
    +	- Chord: Update chord binary for modern linux systems
    +	- Start grouping addons by server_role
    +
     Hubzilla 1.12
     	- extensible permissions so you can create a new permission rule such as "can write to my wiki" or "can see me naked". 
     	- guest access tokens can do anything you let them, including create posts and administer your channel 
    -- 
    cgit v1.2.3
    
    
    From 4b691703fe91912149ccd350aed1dcc2e2ca090b Mon Sep 17 00:00:00 2001
    From: Mario Vavti 
    Date: Tue, 20 Sep 2016 13:39:26 +0200
    Subject: remove redundant loop
    
    ---
     include/features.php | 4 ----
     1 file changed, 4 deletions(-)
    
    diff --git a/include/features.php b/include/features.php
    index d1b38b48e..1ccdbf015 100644
    --- a/include/features.php
    +++ b/include/features.php
    @@ -445,10 +445,6 @@ function get_features($filtered = true) {
     				unset($narr[$k]);
     			}
     		}
    -		for($x = 0; $x < count($narr); $x ++) {
    -			if(! $narr[$x])
    -				unset($narr[$x]);
    -		}
     	}
     	else {
     		$narr = $arr;
    -- 
    cgit v1.2.3
    
    
    From 73bd65ead58edcb42938165144ff237c27437bbc Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Tue, 20 Sep 2016 06:05:20 -0700
    Subject: don't offer a settings/features link for techlevel 0 (basic or pro:0)
     even if there are level 0 features/categories. The definition of level 0 is
     "don't confuse me with options".
    
    ---
     include/widgets.php | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/include/widgets.php b/include/widgets.php
    index 0b3a0d108..9cd15dd59 100644
    --- a/include/widgets.php
    +++ b/include/widgets.php
    @@ -602,7 +602,7 @@ function widget_settings_menu($arr) {
     
     	);
     
    -	if(get_features()) {
    +	if(get_account_techlevel() > 0 && get_features()) {
     		$tabs[] = 	array(
     				'label'	=> t('Additional features'),
     				'url' 	=> z_root().'/settings/features',
    -- 
    cgit v1.2.3
    
    
    From ab59479a0c095c0cebb3b5cb9304850ad54e86d3 Mon Sep 17 00:00:00 2001
    From: Mario Vavti 
    Date: Tue, 20 Sep 2016 15:19:13 +0200
    Subject: narrow navbar css fixes
    
    ---
     view/theme/redbasic/css/narrow_navbar.css | 20 ++++++++------------
     1 file changed, 8 insertions(+), 12 deletions(-)
    
    diff --git a/view/theme/redbasic/css/narrow_navbar.css b/view/theme/redbasic/css/narrow_navbar.css
    index faa18dfe5..6b09b031a 100644
    --- a/view/theme/redbasic/css/narrow_navbar.css
    +++ b/view/theme/redbasic/css/narrow_navbar.css
    @@ -18,22 +18,22 @@
     	}
     
     	nav .navbar-header img {
    -		height: 30px;
    -		width: 30px;
    +		height: 29px;
    +		width: 29px;
     		margin-top: 1px;
     		border-radius: 4px;
     	}
     
     	.navbar-left {
    -		height: 30px;
    +		height: 29px;
     	}
     
     	.container-fluid {
    -		min-height:30px;
    +		min-height:29px;
     	}
     
     	.collapse .navbar-collapse {
    -		min-height:30px;
    +		min-height:29px;
     	}
     
     	#nav-search-text {
    @@ -50,15 +50,11 @@
     
     	nav .dropdown-menu,
     	nav .acpopup {
    -		top: 31px !important;
    +		top: 30px !important;
     	}
     
     	nav .badge {
    -		position: relative;
    -		top: -31px;
    -		float: right;
    -		font-size: 10px;
    -		cursor: pointer;
    +		top: -29px;
     	}
     
     	#jGrowl.top-right {
    @@ -67,6 +63,6 @@
     	}
     
     	.contextual-help-content-open {
    -		top: 32px;
    +		top: 31px;
     	}
     }
    -- 
    cgit v1.2.3
    
    
    From f812866665cc11542a42f471dae1ae0990b47566 Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Tue, 20 Sep 2016 15:27:36 -0700
    Subject: issue #515
    
    ---
     include/event.php | 7 +++++--
     1 file changed, 5 insertions(+), 2 deletions(-)
    
    diff --git a/include/event.php b/include/event.php
    index 407736a23..153654120 100644
    --- a/include/event.php
    +++ b/include/event.php
    @@ -378,6 +378,7 @@ function event_store_event($arr) {
     			`event_repeat` = '%s',
     			`event_sequence` = %d,
     			`event_priority` = %d,
    +			`event_vdata` = '%s',
     			`allow_cid` = '%s',
     			`allow_gid` = '%s',
     			`deny_cid` = '%s',
    @@ -399,6 +400,7 @@ function event_store_event($arr) {
     			dbesc($arr['event_repeat']),
     			intval($arr['event_sequence']),
     			intval($arr['event_priority']),
    +			dbesc($arr['event_vdata']),
     			dbesc($arr['allow_cid']),
     			dbesc($arr['allow_gid']),
     			dbesc($arr['deny_cid']),
    @@ -419,8 +421,8 @@ function event_store_event($arr) {
     			$hash = random_string() . '@' . App::get_hostname();
     
     		$r = q("INSERT INTO event ( uid,aid,event_xchan,event_hash,created,edited,dtstart,dtend,summary,description,location,etype,
    -			adjust,nofinish, event_status, event_status_date, event_percent, event_repeat, event_sequence, event_priority, allow_cid,allow_gid,deny_cid,deny_gid)
    -			VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', %d, '%s', %d, %d, '%s', '%s', '%s', '%s' ) ",
    +			adjust,nofinish, event_status, event_status_date, event_percent, event_repeat, event_sequence, event_priority, event_vdata, allow_cid,allow_gid,deny_cid,deny_gid)
    +			VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', %d, '%s', %d, %d, '%s', '%s', '%s', '%s', '%s' ) ",
     			intval($arr['uid']),
     			intval($arr['account']),
     			dbesc($arr['event_xchan']),
    @@ -441,6 +443,7 @@ function event_store_event($arr) {
     			dbesc($arr['event_repeat']),
     			intval($arr['event_sequence']),
     			intval($arr['event_priority']),
    +			dbesc($arr['event_vdata']),
     			dbesc($arr['allow_cid']),
     			dbesc($arr['allow_gid']),
     			dbesc($arr['deny_cid']),
    -- 
    cgit v1.2.3
    
    
    From 83dd1c7be20a1ba0ed510b1ee67dcac86e468674 Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Tue, 20 Sep 2016 15:34:35 -0700
    Subject: issue #520
    
    ---
     include/items.php | 1 +
     1 file changed, 1 insertion(+)
    
    diff --git a/include/items.php b/include/items.php
    index f2be2a114..951501b9f 100755
    --- a/include/items.php
    +++ b/include/items.php
    @@ -1645,6 +1645,7 @@ function item_store($arr, $allow_exec = false, $deliver = true) {
     	$arr['expires']       = ((x($arr,'expires')  !== false) ? datetime_convert('UTC','UTC',$arr['expires'])  : NULL_DATE);
     	$arr['commented']     = ((x($arr,'commented')  !== false) ? datetime_convert('UTC','UTC',$arr['commented'])  : datetime_convert());
     	$arr['comments_closed'] = ((x($arr,'comments_closed')  !== false) ? datetime_convert('UTC','UTC',$arr['comments_closed'])  : NULL_DATE);
    +	$arr['html'] = ((array_key_exists('html',$arr)) ? $arrr['html'] : '');
     
     	if($deliver) {
     		$arr['received']      = datetime_convert();
    -- 
    cgit v1.2.3
    
    
    From 007836f514b5e268078bf20bd95fe260fb76fb4f Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Tue, 20 Sep 2016 15:38:11 -0700
    Subject: issue #519
    
    ---
     include/photo/photo_driver.php | 7 +++++--
     1 file changed, 5 insertions(+), 2 deletions(-)
    
    diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php
    index 6de75d497..35cf77707 100644
    --- a/include/photo/photo_driver.php
    +++ b/include/photo/photo_driver.php
    @@ -358,6 +358,7 @@ abstract class photo_driver {
     				`photo_usage` = %d,
     				`title` = '%s',
     				`description` = '%s',
    +				`os_path` = '%s',
     				`allow_cid` = '%s',
     				`allow_gid` = '%s',
     				`deny_cid` = '%s',
    @@ -382,6 +383,7 @@ abstract class photo_driver {
     				intval($p['photo_usage']),
     				dbesc($p['title']),
     				dbesc($p['description']),
    +				dbesc($p['os_path']),
     				dbesc($p['allow_cid']),
     				dbesc($p['allow_gid']),
     				dbesc($p['deny_cid']),
    @@ -391,8 +393,8 @@ abstract class photo_driver {
     		}
     		else {
     			$r = q("INSERT INTO `photo`
    -				( `aid`, `uid`, `xchan`, `resource_id`, `created`, `edited`, `filename`, mimetype, `album`, `height`, `width`, `content`, `os_storage`, `filesize`, `imgscale`, `photo_usage`, `title`, `description`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid` )
    -				VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s' )",
    +				( `aid`, `uid`, `xchan`, `resource_id`, `created`, `edited`, `filename`, mimetype, `album`, `height`, `width`, `content`, `os_storage`, `filesize`, `imgscale`, `photo_usage`, `title`, `description`, `os_path`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid` )
    +				VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
     				intval($p['aid']),
     				intval($p['uid']),
     				dbesc($p['xchan']),
    @@ -411,6 +413,7 @@ abstract class photo_driver {
     				intval($p['photo_usage']),
     				dbesc($p['title']),
     				dbesc($p['description']),
    +				dbesc($p['os_path']),
     				dbesc($p['allow_cid']),
     				dbesc($p['allow_gid']),
     				dbesc($p['deny_cid']),
    -- 
    cgit v1.2.3
    
    
    From 4511f8855b195d7c675ffe9f128b0db1be120b1b Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Tue, 20 Sep 2016 15:53:30 -0700
    Subject: issue #516
    
    ---
     Zotlabs/Module/Item.php | 123 +++++++++++++++++++++++-------------------------
     1 file changed, 58 insertions(+), 65 deletions(-)
    
    diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php
    index 97b1e883d..ac2067356 100644
    --- a/Zotlabs/Module/Item.php
    +++ b/Zotlabs/Module/Item.php
    @@ -755,71 +755,64 @@ class Item extends \Zotlabs\Web\Controller {
     			$plink = z_root() . '/channel/' . $channel['channel_address'] . '/?f=&mid=' . $mid;
     		}
     		
    -	
    -	
    -	
    -	
    -		$datarray['aid']            = $channel['channel_account_id'];
    -		$datarray['uid']            = $profile_uid;
    -		
    -		$datarray['owner_xchan']    = (($owner_hash) ? $owner_hash : $owner_xchan['xchan_hash']);
    -		$datarray['author_xchan']   = $observer['xchan_hash'];
    -		$datarray['created']        = $created;
    -		$datarray['edited']         = (($orig_post) ? datetime_convert() : $created);
    -		$datarray['expires']        = $expires;
    -		$datarray['commented']      = (($orig_post) ? datetime_convert() : $created);
    -		$datarray['received']       = (($orig_post) ? datetime_convert() : $created);
    -		$datarray['changed']        = (($orig_post) ? datetime_convert() : $created);
    -		$datarray['mid']            = $mid;
    -		$datarray['parent_mid']     = $parent_mid;
    -		$datarray['mimetype']       = $mimetype;
    -		$datarray['title']          = $title;
    -		$datarray['body']           = $body;
    -		$datarray['app']            = $app;
    -		$datarray['location']       = $location;
    -		$datarray['coord']          = $coord;
    -		$datarray['verb']           = $verb;
    -		$datarray['obj_type']       = $obj_type;
    -		$datarray['allow_cid']      = $str_contact_allow;
    -		$datarray['allow_gid']      = $str_group_allow;
    -		$datarray['deny_cid']       = $str_contact_deny;
    -		$datarray['deny_gid']       = $str_group_deny;
    -		$datarray['item_private']   = $private;
    -		$datarray['item_wall']      = $item_wall;
    -		$datarray['attach']         = $attachments;
    -		$datarray['thr_parent']     = $thr_parent;
    -		$datarray['postopts']       = $postopts;
    -		$datarray['item_unseen']    = $item_unseen;
    -		$datarray['item_wall']      = $item_wall;
    -		$datarray['item_origin']    = $item_origin;
    -		$datarray['item_type']      = $webpage;
    -		$datarray['item_thread_top'] = $item_thread_top;
    -		$datarray['item_unseen']    = $item_unseen;
    -		$datarray['item_starred']    = $item_starred;
    -		$datarray['item_uplink']    = $item_uplink;
    -		$datarray['item_consensus']    = $item_consensus;
    -		$datarray['item_notshown']    = $item_notshown;
    -		$datarray['item_nsfw']    = $item_nsfw;
    -		$datarray['item_relay']    = $item_relay;
    -		$datarray['item_mentionsme']    = $item_mentionsme;
    -		$datarray['item_nocomment']    = $item_nocomment;
    -		$datarray['item_obscured']    = $item_obscured;
    -		$datarray['item_verified']    = $item_verified;
    -		$datarray['item_retained']    = $item_retained;
    -		$datarray['item_rss']    = $item_rss;
    -		$datarray['item_deleted']    = $item_deleted;
    -		$datarray['item_hidden']    = $item_hidden;
    -		$datarray['item_unpublished']    = $item_unpublished;
    -		$datarray['item_delayed']    = $item_delayed;
    -		$datarray['item_pending_remove']    = $item_pending_remove;
    -		$datarray['item_blocked']    = $item_blocked;
    -	
    -		$datarray['layout_mid']     = $layout_mid;
    -		$datarray['public_policy']  = $public_policy;
    -		$datarray['comment_policy'] = map_scope($comment_policy); 
    -		$datarray['term']           = $post_tags;
    -		$datarray['plink']          = $plink;
    -		$datarray['route']          = $route;
    +		$datarray['aid']                 = $channel['channel_account_id'];
    +		$datarray['uid']                 = $profile_uid;
    +		$datarray['owner_xchan']         = (($owner_hash) ? $owner_hash : $owner_xchan['xchan_hash']);
    +		$datarray['author_xchan']        = $observer['xchan_hash'];
    +		$datarray['created']             = $created;
    +		$datarray['edited']              = (($orig_post) ? datetime_convert() : $created);
    +		$datarray['expires']             = $expires;
    +		$datarray['commented']           = (($orig_post) ? datetime_convert() : $created);
    +		$datarray['received']            = (($orig_post) ? datetime_convert() : $created);
    +		$datarray['changed']             = (($orig_post) ? datetime_convert() : $created);
    +		$datarray['mid']                 = $mid;
    +		$datarray['parent_mid']          = $parent_mid;
    +		$datarray['mimetype']            = $mimetype;
    +		$datarray['title']               = $title;
    +		$datarray['body']                = $body;
    +		$datarray['app']                 = $app;
    +		$datarray['location']            = $location;
    +		$datarray['coord']               = $coord;
    +		$datarray['verb']                = $verb;
    +		$datarray['obj_type']            = $obj_type;
    +		$datarray['allow_cid']           = $str_contact_allow;
    +		$datarray['allow_gid']           = $str_group_allow;
    +		$datarray['deny_cid']            = $str_contact_deny;
    +		$datarray['deny_gid']            = $str_group_deny;
    +		$datarray['attach']              = $attachments;
    +		$datarray['thr_parent']          = $thr_parent;
    +		$datarray['postopts']            = $postopts;
    +		$datarray['item_unseen']         = intval($item_unseen);
    +		$datarray['item_wall']           = intval($item_wall);
    +		$datarray['item_origin']         = intval($item_origin);
    +		$datarray['item_type']           = $webpage;
    +		$datarray['item_private']        = intval($private);
    +		$datarray['item_thread_top']     = intval($item_thread_top);
    +		$datarray['item_unseen']         = intval($item_unseen);
    +		$datarray['item_starred']        = intval($item_starred);
    +		$datarray['item_uplink']         = intval($item_uplink);
    +		$datarray['item_consensus']      = intval($item_consensus);
    +		$datarray['item_notshown']       = intval($item_notshown);
    +		$datarray['item_nsfw']           = intval($item_nsfw);
    +		$datarray['item_relay']          = intval($item_relay);
    +		$datarray['item_mentionsme']     = intval($item_mentionsme);
    +		$datarray['item_nocomment']      = intval($item_nocomment);
    +		$datarray['item_obscured']       = intval($item_obscured);
    +		$datarray['item_verified']       = intval($item_verified);
    +		$datarray['item_retained']       = intval($item_retained);
    +		$datarray['item_rss']            = intval($item_rss);
    +		$datarray['item_deleted']        = intval($item_deleted);
    +		$datarray['item_hidden']         = intval($item_hidden);
    +		$datarray['item_unpublished']    = intval($item_unpublished);
    +		$datarray['item_delayed']        = intval($item_delayed);
    +		$datarray['item_pending_remove'] = intval($item_pending_remove);
    +		$datarray['item_blocked']        = intval($item_blocked);	
    +		$datarray['layout_mid']          = $layout_mid;
    +		$datarray['public_policy']       = $public_policy;
    +		$datarray['comment_policy']      = map_scope($comment_policy); 
    +		$datarray['term']                = $post_tags;
    +		$datarray['plink']               = $plink;
    +		$datarray['route']               = $route;
     	
     		if($iconfig)
     			$datarray['iconfig'] = $iconfig;
    -- 
    cgit v1.2.3
    
    
    From d9dc7f0f38be0389ecb29b21903e69572b572b18 Mon Sep 17 00:00:00 2001
    From: Mario Vavti 
    Date: Wed, 21 Sep 2016 00:58:10 +0200
    Subject: typo
    
    ---
     include/items.php | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/include/items.php b/include/items.php
    index 951501b9f..c3d2e2676 100755
    --- a/include/items.php
    +++ b/include/items.php
    @@ -1645,7 +1645,7 @@ function item_store($arr, $allow_exec = false, $deliver = true) {
     	$arr['expires']       = ((x($arr,'expires')  !== false) ? datetime_convert('UTC','UTC',$arr['expires'])  : NULL_DATE);
     	$arr['commented']     = ((x($arr,'commented')  !== false) ? datetime_convert('UTC','UTC',$arr['commented'])  : datetime_convert());
     	$arr['comments_closed'] = ((x($arr,'comments_closed')  !== false) ? datetime_convert('UTC','UTC',$arr['comments_closed'])  : NULL_DATE);
    -	$arr['html'] = ((array_key_exists('html',$arr)) ? $arrr['html'] : '');
    +	$arr['html'] = ((array_key_exists('html',$arr)) ? $arr['html'] : '');
     
     	if($deliver) {
     		$arr['received']      = datetime_convert();
    -- 
    cgit v1.2.3
    
    
    From c43eccf591c2b269879d932924aea80648841b8b Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Wed, 21 Sep 2016 13:24:16 -0700
    Subject: zot discovery wasn't returning in all cases (after discovering zot),
     which means that it could fall through and also discover other protocols and
     create xchans for them.
    
    ---
     include/network.php | 4 +++-
     1 file changed, 3 insertions(+), 1 deletion(-)
    
    diff --git a/include/network.php b/include/network.php
    index fe001b362..de10f1e0e 100644
    --- a/include/network.php
    +++ b/include/network.php
    @@ -1148,8 +1148,10 @@ function discover_by_webbie($webbie) {
     
     				if($link['rel'] === PROTOCOL_ZOT) {
     					logger('discover_by_webbie: zot found for ' . $webbie, LOGGER_DEBUG);
    -					if(array_key_exists('zot',$x) && $x['zot']['success'])
    +					if(array_key_exists('zot',$x) && $x['zot']['success']) {
     						$i = import_xchan($x['zot']);
    +						return true;
    +					}
     					else {
     						$z = z_fetch_url($link['href']);
     						if($z['success']) {
    -- 
    cgit v1.2.3
    
    
    From b5d093e5caa87517280912e40a0f47352dca3f04 Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Wed, 21 Sep 2016 15:28:37 -0700
    Subject: finish the channel_reddress() conversion
    
    ---
     Zotlabs/Lib/Enotify.php   |  2 +-
     Zotlabs/Lib/SuperCurl.php |  2 +-
     include/channel.php       | 12 ++++++------
     include/dir_fns.php       |  4 ++--
     include/items.php         |  2 +-
     include/message.php       |  2 +-
     include/network.php       |  4 ++--
     include/security.php      |  2 +-
     include/zot.php           |  8 ++++----
     9 files changed, 19 insertions(+), 19 deletions(-)
    
    diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php
    index 683e91b52..92b9fddbd 100644
    --- a/Zotlabs/Lib/Enotify.php
    +++ b/Zotlabs/Lib/Enotify.php
    @@ -465,7 +465,7 @@ class Enotify {
     		// use $_SESSION['zid_override'] to force zid() to use 
     		// the recipient address instead of the current observer
     
    -		$_SESSION['zid_override'] = $recip['channel_address'] . '@' . \App::get_hostname();
    +		$_SESSION['zid_override'] = channel_reddress($recip);
     		$_SESSION['zrl_override'] = z_root() . '/channel/' . $recip['channel_address'];
     		
     		$textversion = zidify_links($textversion);
    diff --git a/Zotlabs/Lib/SuperCurl.php b/Zotlabs/Lib/SuperCurl.php
    index 1c8583ff5..462a62b36 100644
    --- a/Zotlabs/Lib/SuperCurl.php
    +++ b/Zotlabs/Lib/SuperCurl.php
    @@ -105,7 +105,7 @@ class SuperCurl {
     			$opts['cookie'] = 'PHPSESSID=' . trim(file_get_contents('store/[data]/cookien_' . $this->magicauth));
     			$c = channelx_by_n($this->magicauth);
     			if($c)
    -				$url = zid($this->url,$c['channel_address'] . '@' . \App::get_hostname());
    +				$url = zid($this->url,channel_reddress($c));
     		}	
     		if($this->custom)
     			$opts['custom'] = $this->custom;
    diff --git a/include/channel.php b/include/channel.php
    index ce515c917..5beb4a53c 100644
    --- a/include/channel.php
    +++ b/include/channel.php
    @@ -297,7 +297,7 @@ function create_identity($arr) {
     		dbesc($guid),
     		dbesc($sig),
     		dbesc($hash),
    -		dbesc($ret['channel']['channel_address'] . '@' . App::get_hostname()),
    +		dbesc(channel_reddress($ret['channel'])),
     		intval($primary),
     		dbesc(z_root()),
     		dbesc(base64url_encode(rsa_sign(z_root(),$ret['channel']['channel_prvkey']))),
    @@ -319,7 +319,7 @@ function create_identity($arr) {
     		dbesc(z_root() . "/photo/profile/l/{$newuid}"),
     		dbesc(z_root() . "/photo/profile/m/{$newuid}"),
     		dbesc(z_root() . "/photo/profile/s/{$newuid}"),
    -		dbesc($ret['channel']['channel_address'] . '@' . App::get_hostname()),
    +		dbesc(channel_reddress($ret['channel'])),
     		dbesc(z_root() . '/channel/' . $ret['channel']['channel_address']),
     		dbesc(z_root() . '/follow?f=&url=%s'),
     		dbesc(z_root() . '/poco/' . $ret['channel']['channel_address']),
    @@ -918,7 +918,7 @@ function profile_load($nickname, $profile = '') {
     
     	App::$profile = $p[0];
     	App::$profile_uid = $p[0]['profile_uid'];
    -	App::$page['title'] = App::$profile['channel_name'] . " - " . App::$profile['channel_address'] . "@" . App::get_hostname();
    +	App::$page['title'] = App::$profile['channel_name'] . " - " . channel_reddress(App::$profile);
     
     	App::$profile['permission_to_view'] = $can_view_profile;
     
    @@ -1033,7 +1033,7 @@ function profile_sidebar($profile, $block = 0, $show_connect = true, $zcard = fa
     		$connect_url = rconnect_url($profile['uid'],get_observer_hash());
     		$connect = (($connect_url) ? t('Connect') : '');
     		if($connect_url) 
    -			$connect_url = sprintf($connect_url,urlencode($profile['channel_address'] . '@' . App::get_hostname()));
    +			$connect_url = sprintf($connect_url,urlencode(channel_reddress($profile)));
     
     		// premium channel - over-ride
     
    @@ -1779,7 +1779,7 @@ function get_zcard($channel,$observer_hash = '',$args = array()) {
     //	$translate = intval(($scale / 1.0) * 100);
     
     
    -	$channel['channel_addr'] = $channel['channel_address'] . '@' . App::get_hostname();
    +	$channel['channel_addr'] = channel_reddress($channel);
     	$zcard = array('chan' => $channel);
     
     	$r = q("select height, width, resource_id, imgscale, mimetype from photo where uid = %d and imgscale = %d and photo_usage = %d",
    @@ -1841,7 +1841,7 @@ function get_zcard_embed($channel,$observer_hash = '',$args = array()) {
     		$pphoto = array('mimetype' => $channel['xchan_photo_mimetype'],  'width' => 300 , 'height' => 300, 'href' => $channel['xchan_photo_l']);
     	}
     
    -	$channel['channel_addr'] = $channel['channel_address'] . '@' . App::get_hostname();
    +	$channel['channel_addr'] = channel_reddress($channel);
     	$zcard = array('chan' => $channel);
     
     	$r = q("select height, width, resource_id, imgscale, mimetype from photo where uid = %d and imgscale = %d and photo_usage = %d",
    diff --git a/include/dir_fns.php b/include/dir_fns.php
    index 9f1be1a42..53a81b242 100644
    --- a/include/dir_fns.php
    +++ b/include/dir_fns.php
    @@ -423,7 +423,7 @@ function local_dir_update($uid, $force) {
     		$arr = array('channel_id' => $uid, 'hash' => $hash, 'profile' => $profile);
     		call_hooks('local_dir_update', $arr);
     
    -		$address = $p[0]['channel_address'] . '@' . App::get_hostname();
    +		$address = channel_reddress($p[0]);
     
     		if (perm_is_allowed($uid, '', 'view_profile')) {
     			import_directory_profile($hash, $arr['profile'], $address, 0);
    @@ -439,5 +439,5 @@ function local_dir_update($uid, $force) {
     	}
     
     	$ud_hash = random_string() . '@' . App::get_hostname();
    -	update_modtime($hash, $ud_hash, $p[0]['channel_address'] . '@' . App::get_hostname(),(($force) ? UPDATE_FLAGS_FORCED : UPDATE_FLAGS_UPDATED));
    +	update_modtime($hash, $ud_hash, channel_reddress($p[0]),(($force) ? UPDATE_FLAGS_FORCED : UPDATE_FLAGS_UPDATED));
     }
    diff --git a/include/items.php b/include/items.php
    index c3d2e2676..ba39fd7ac 100755
    --- a/include/items.php
    +++ b/include/items.php
    @@ -2262,7 +2262,7 @@ function store_diaspora_comment_sig($datarray, $channel, $parent_item, $post_id,
     
     	logger('storing diaspora comment signature',LOGGER_DEBUG);
     
    -	$diaspora_handle = $channel['channel_address'] . '@' . App::get_hostname();
    +	$diaspora_handle = channel_reddress($channel);
     
     	$signed_text = $datarray['mid'] . ';' . $parent_item['mid'] . ';' . $signed_body . ';' . $diaspora_handle;
     
    diff --git a/include/message.php b/include/message.php
    index d3d8181ae..0ba1978f0 100644
    --- a/include/message.php
    +++ b/include/message.php
    @@ -75,7 +75,7 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto='
     		if($recip)
     			$recip_handle = $recip[0]['xchan_addr'];
     
    -		$sender_handle = $channel['channel_address'] . '@' . App::get_hostname();
    +		$sender_handle = channel_reddress($channel);
     
     		$handles = $recip_handle . ';' . $sender_handle;
     
    diff --git a/include/network.php b/include/network.php
    index de10f1e0e..c23005935 100644
    --- a/include/network.php
    +++ b/include/network.php
    @@ -2010,11 +2010,11 @@ function get_site_info() {
     		$admin = array();
     		foreach($r as $rr) {
     			if($rr['channel_pageflags'] & PAGE_HUBADMIN)
    -				$admin[] = array( 'name' => $rr['channel_name'], 'address' => $rr['channel_address'] . '@' . App::get_hostname(), 'channel' => z_root() . '/channel/' . $rr['channel_address']);
    +				$admin[] = array( 'name' => $rr['channel_name'], 'address' => channel_reddress($rr), 'channel' => z_root() . '/channel/' . $rr['channel_address']);
     		}
     		if(! $admin) {
     			foreach($r as $rr) {
    -				$admin[] = array( 'name' => $rr['channel_name'], 'address' => $rr['channel_address'] . '@' . App::get_hostname(), 'channel' => z_root() . '/channel/' . $rr['channel_address']);
    +				$admin[] = array( 'name' => $rr['channel_name'], 'address' => channel_reddress($rr), 'channel' => z_root() . '/channel/' . $rr['channel_address']);
     			}
     		}
     	}
    diff --git a/include/security.php b/include/security.php
    index 83bf51bc0..9b508d339 100644
    --- a/include/security.php
    +++ b/include/security.php
    @@ -265,7 +265,7 @@ function change_channel($change_channel) {
     		);
     		if($x) {
     			$_SESSION['my_url'] = $x[0]['xchan_url'];
    -			$_SESSION['my_address'] = $r[0]['channel_address'] . '@' . App::get_hostname();
    +			$_SESSION['my_address'] = channel_reddress($r[0]);
     
     			App::set_observer($x[0]);
     			App::set_perms(get_all_perms(local_channel(), $hash));
    diff --git a/include/zot.php b/include/zot.php
    index 8771495ff..49b66bc62 100644
    --- a/include/zot.php
    +++ b/include/zot.php
    @@ -1593,7 +1593,7 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $
     		}
     
     		$channel = $r[0];
    -		$DR->addto_recipient($channel['channel_name'] . ' <' . $channel['channel_address'] . '@' . App::get_hostname() . '>');
    +		$DR->addto_recipient($channel['channel_name'] . ' <' . channel_reddress($channel) . '>');
     
     		/* blacklisted channels get a permission denied, no special message to tip them off */
     
    @@ -2082,7 +2082,7 @@ function process_mail_delivery($sender, $arr, $deliveries) {
     		}
     
     		$channel = $r[0];
    -		$DR->addto_recipient($channel['channel_name'] . ' <' . $channel['channel_address'] . '@' . App::get_hostname() . '>');
    +		$DR->addto_recipient($channel['channel_name'] . ' <' . channel_reddress($channel) . '>');
     
     		/* blacklisted channels get a permission denied, no special message to tip them off */
     
    @@ -3532,7 +3532,7 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) {
     
     		if(array_key_exists('item',$arr) && is_array($arr['item'][0])) {
     			$DR = new Zotlabs\Zot\DReport(z_root(),$d['hash'],$d['hash'],$arr['item'][0]['message_id'],'channel sync processed');
    -			$DR->addto_recipient($channel['channel_name'] . ' <' . $channel['channel_address'] . '@' . App::get_hostname() . '>');
    +			$DR->addto_recipient($channel['channel_name'] . ' <' . channel_reddress($channel) . '>');
     		}
     		else
     			$DR = new Zotlabs\Zot\DReport(z_root(),$d['hash'],$d['hash'],'sync packet','channel sync delivered');
    @@ -4032,7 +4032,7 @@ function check_zotinfo($channel,$locations,&$ret) {
     				dbesc($channel['channel_guid']),
     				dbesc($channel['channel_guid_sig']),
     				dbesc($channel['channel_hash']),
    -				dbesc($channel['channel_address'] . '@' . App::get_hostname()),
    +				dbesc(channel_reddress($channel)),
     				intval(1),
     				dbesc(z_root()),
     				dbesc(base64url_encode(rsa_sign(z_root(),$channel['channel_prvkey']))),
    -- 
    cgit v1.2.3
    
    
    From ec5cc08fabbdcd17e5e73821c083e4583cdf3214 Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Wed, 21 Sep 2016 15:47:18 -0700
    Subject: issue #521, add 'map' extension to files served natively by nginx
     without using the project controller
    
    ---
     install/sample-nginx.conf | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/install/sample-nginx.conf b/install/sample-nginx.conf
    index da84c8b09..85178596a 100644
    --- a/install/sample-nginx.conf
    +++ b/install/sample-nginx.conf
    @@ -92,7 +92,7 @@ server {
       # otherwise fall back to front controller
       # allow browser to cache them
       # added .htm for advanced source code editor library
    -  location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|ttf|woff|woff2|svg)$ {
    +  location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|map|ttf|woff|woff2|svg)$ {
         expires 30d;
         try_files $uri /index.php?q=$uri&$args;
       }
    -- 
    cgit v1.2.3
    
    
    From d1c9701ccfefee7dbe79e9e0a54ce04a387b3233 Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Wed, 21 Sep 2016 16:01:17 -0700
    Subject: issue #522 - replace && with AND in sql query.
    
    ---
     Zotlabs/Daemon/Cron.php | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php
    index c66b62f55..613c2e705 100644
    --- a/Zotlabs/Daemon/Cron.php
    +++ b/Zotlabs/Daemon/Cron.php
    @@ -64,7 +64,7 @@ class Cron {
     
     		// delete expired access tokens
     
    -		$r = q("select atoken_id from atoken where atoken_expires != '%s' && atoken_expires < %s",
    +		$r = q("select atoken_id from atoken where atoken_expires != '%s' and atoken_expires < %s",
     			dbesc(NULL_DATE),
     			db_utcnow()
     		);
    -- 
    cgit v1.2.3
    
    
    From 4e85bc66b8a5f5347ae15dda229f028d31b58469 Mon Sep 17 00:00:00 2001
    From: redmatrix 
    Date: Wed, 21 Sep 2016 17:16:54 -0700
    Subject: function to check for different values of NULL_DATE for backward
     compatibility
    
    ---
     include/datetime.php | 7 +++++++
     1 file changed, 7 insertions(+)
    
    diff --git a/include/datetime.php b/include/datetime.php
    index 76bd6b8d6..914eac95e 100644
    --- a/include/datetime.php
    +++ b/include/datetime.php
    @@ -24,6 +24,13 @@ function timezone_cmp($a, $b) {
     	return ( t($a) < t($b)) ? -1 : 1;
     }
     
    +function is_null_date($s) {
    +	if($s === '0000-00-00 00:00:00' || $s === '0001-01-01 00:00:00')
    +		return true;
    +	return false;
    +}
    +
    +
     /**
      * @brief Return timezones grouped (primarily) by continent.
      *
    -- 
    cgit v1.2.3
    
    
    From 3edbb564fcbc3f1b5ba41f6806dc2aa9e0f86c99 Mon Sep 17 00:00:00 2001
    From: Mario Vavti 
    Date: Thu, 22 Sep 2016 09:43:11 +0200
    Subject: fix #525
    
    ---
     view/tpl/event_head.tpl | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl
    index fee4f17a3..640e6024a 100755
    --- a/view/tpl/event_head.tpl
    +++ b/view/tpl/event_head.tpl
    @@ -1,7 +1,7 @@
     
     
     
    -
    +
     
     
    -- 
    cgit v1.2.3
    
    
    From ed457ac6947486f93f9d1288c1fe81c2e9c11e26 Mon Sep 17 00:00:00 2001
    From: phellmes 
    Date: Thu, 22 Sep 2016 13:45:49 +0200
    Subject: Update DE translation strings
    
    ---
     view/de/hmessages.po | 14058 +++++++++++++++++++++++++------------------------
     view/de/hstrings.php |  3453 ++++++------
     2 files changed, 8958 insertions(+), 8553 deletions(-)
    
    diff --git a/view/de/hmessages.po b/view/de/hmessages.po
    index 5c3b981ad..425273386 100644
    --- a/view/de/hmessages.po
    +++ b/view/de/hmessages.po
    @@ -5,7 +5,7 @@
     # Translators:
     # Alex , 2013
     # Balder , 2013
    -# bavatar , 2013
    +# Tobias Diekershoff , 2013
     # do.t , 2014
     # Einer von Vielen , 2013
     # Ettore Atalan , 2015-2016
    @@ -16,15 +16,16 @@
     # Phellmes , 2014,2016
     # sasiflo , 2014
     # Steff , 2015-2016
    -# bavatar , 2016
    +# Tobias Diekershoff , 2016
    +# Tobias Diekershoff , 2016
     # zottel , 2015
     # sasiflo , 2015
     msgid ""
     msgstr ""
     "Project-Id-Version: Redmatrix\n"
     "Report-Msgid-Bugs-To: \n"
    -"POT-Creation-Date: 2016-06-10 00:02-0700\n"
    -"PO-Revision-Date: 2016-06-15 09:43+0000\n"
    +"POT-Creation-Date: 2016-09-17 14:51-0700\n"
    +"PO-Revision-Date: 2016-09-22 11:28+0000\n"
     "Last-Translator: Phellmes \n"
     "Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n"
     "MIME-Version: 1.0\n"
    @@ -33,11 +34,160 @@ msgstr ""
     "Language: de\n"
     "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     
    +#: ../../Zotlabs/Access/PermissionRoles.php:182
    +#: ../../include/permissions.php:945
    +msgid "Social Networking"
    +msgstr "Soziales Netzwerk"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:183
    +#: ../../include/permissions.php:945
    +msgid "Social - Mostly Public"
    +msgstr "Soziales Netzwerk - Weitgehend öffentlich"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:184
    +#: ../../include/permissions.php:945
    +msgid "Social - Restricted"
    +msgstr "Soziales Netzwerk - Beschränkt"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:185
    +#: ../../include/permissions.php:945
    +msgid "Social - Private"
    +msgstr "Soziales Netzwerk - Privat"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:188
    +#: ../../include/permissions.php:946
    +msgid "Community Forum"
    +msgstr "Forum"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:189
    +#: ../../include/permissions.php:946
    +msgid "Forum - Mostly Public"
    +msgstr "Forum - Weitgehend öffentlich"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:190
    +#: ../../include/permissions.php:946
    +msgid "Forum - Restricted"
    +msgstr "Forum - Beschränkt"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:191
    +#: ../../include/permissions.php:946
    +msgid "Forum - Private"
    +msgstr "Forum - Privat"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:194
    +#: ../../include/permissions.php:947
    +msgid "Feed Republish"
    +msgstr "Teilen von Feeds"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:195
    +#: ../../include/permissions.php:947
    +msgid "Feed - Mostly Public"
    +msgstr "Feeds - Weitgehend öffentlich"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:196
    +#: ../../include/permissions.php:947
    +msgid "Feed - Restricted"
    +msgstr "Feeds - Beschränkt"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:199
    +#: ../../include/permissions.php:948
    +msgid "Special Purpose"
    +msgstr "Für besondere Zwecke"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:200
    +#: ../../include/permissions.php:948
    +msgid "Special - Celebrity/Soapbox"
    +msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:201
    +#: ../../include/permissions.php:948
    +msgid "Special - Group Repository"
    +msgstr "Speziell - Gruppenarchiv"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:204
    +#: ../../Zotlabs/Module/Register.php:213
    +#: ../../Zotlabs/Module/New_channel.php:132
    +#: ../../Zotlabs/Module/Settings/Channel.php:442
    +#: ../../include/permissions.php:949 ../../include/selectors.php:49
    +#: ../../include/selectors.php:66 ../../include/selectors.php:104
    +#: ../../include/selectors.php:140
    +msgid "Other"
    +msgstr "Andere"
    +
    +#: ../../Zotlabs/Access/PermissionRoles.php:205
    +#: ../../include/permissions.php:949
    +msgid "Custom/Expert Mode"
    +msgstr "Benutzerdefiniert/Expertenmodus"
    +
    +#: ../../Zotlabs/Access/Permissions.php:30
    +msgid "Can view my channel stream and posts"
    +msgstr "Kann meinen Kanal-Stream und meine Beiträge sehen"
    +
    +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:42
    +msgid "Can send me their channel stream and posts"
    +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"
    +
    +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:36
    +msgid "Can view my default channel profile"
    +msgstr "Kann mein Standardprofil sehen"
    +
    +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:37
    +msgid "Can view my connections"
    +msgstr "Kann meine Verbindungen sehen"
    +
    +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:38
    +msgid "Can view my file storage and photos"
    +msgstr "Kann meine Datei- und Bilderordner sehen"
    +
    +#: ../../Zotlabs/Access/Permissions.php:35
    +msgid "Can upload/modify my file storage and photos"
    +msgstr "Kann in meine Datei- und Bilderordner hochladen/ändern"
    +
    +#: ../../Zotlabs/Access/Permissions.php:36
    +msgid "Can view my channel webpages"
    +msgstr "Kann die Webseiten meines Kanals sehen"
    +
    +#: ../../Zotlabs/Access/Permissions.php:37
    +msgid "Can create/edit my channel webpages"
    +msgstr "Kann Webseiten in meinem Kanal erstellen/ändern"
    +
    +#: ../../Zotlabs/Access/Permissions.php:38
    +msgid "Can post on my channel (wall) page"
    +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"
    +
    +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:44
    +msgid "Can comment on or like my posts"
    +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen"
    +
    +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:45
    +msgid "Can send me private mail messages"
    +msgstr "Kann mir private Nachrichten schicken"
    +
    +#: ../../Zotlabs/Access/Permissions.php:41
    +msgid "Can like/dislike profiles and profile things"
    +msgstr "Kann Profile und Profilsachen mögen/nicht mögen"
    +
    +#: ../../Zotlabs/Access/Permissions.php:42
    +msgid "Can forward to all my channel connections via @+ mentions in posts"
    +msgstr "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten"
    +
    +#: ../../Zotlabs/Access/Permissions.php:43
    +msgid "Can chat with me"
    +msgstr "Kann mit mir chatten"
    +
    +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:53
    +msgid "Can source my public posts in derived channels"
    +msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"
    +
    +#: ../../Zotlabs/Access/Permissions.php:45
    +msgid "Can administer my channel"
    +msgstr "Kann meinen Kanal administrieren"
    +
     #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239
     msgid "parent"
     msgstr "Übergeordnetes Verzeichnis"
     
    -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620
    +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2711
     msgid "Collection"
     msgstr "Sammlung"
     
    @@ -61,16 +211,17 @@ msgstr "Posteingang für überwachte Kalender"
     msgid "Schedule Outbox"
     msgstr "Postausgang für überwachte Kalender"
     
    -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798
    -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486
    -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505
    -#: ../../include/conversation.php:1032
    +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:789
    +#: ../../Zotlabs/Module/Photos.php:1249
    +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490
    +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1033
    +#: ../../include/widgets.php:1679
     msgid "Unknown"
     msgstr "Unbekannt"
     
     #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85
    -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93
    -#: ../../include/conversation.php:1639
    +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:96
    +#: ../../include/conversation.php:1678
     msgid "Files"
     msgstr "Dateien"
     
    @@ -82,24 +233,26 @@ msgstr "Summe"
     msgid "Shared"
     msgstr "Geteilt"
     
    -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306
    -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182
    -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142
    -#: ../../Zotlabs/Module/Webpages.php:186
    +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323
    +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:239
    +#: ../../Zotlabs/Module/New_channel.php:147
    +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184
     msgid "Create"
     msgstr "Erstelle"
     
    -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308
    +#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325
     #: ../../Zotlabs/Module/Cover_photo.php:357
    -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364
    -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518
    +#: ../../Zotlabs/Module/Profile_photo.php:390
    +#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370
    +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1692
     msgid "Upload"
     msgstr "Hochladen"
     
    -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247
    -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592
    -#: ../../Zotlabs/Module/Settings.php:618
    -#: ../../Zotlabs/Module/Sharedwithme.php:99
    +#: ../../Zotlabs/Storage/Browser.php:235
    +#: ../../Zotlabs/Module/Admin/Channels.php:163
    +#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250
    +#: ../../Zotlabs/Module/Settings/Oauth.php:89
    +#: ../../Zotlabs/Module/Settings/Oauth.php:115
     msgid "Name"
     msgstr "Name"
     
    @@ -108,7 +261,7 @@ msgid "Type"
     msgstr "Typ"
     
     #: ../../Zotlabs/Storage/Browser.php:237
    -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344
    +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1372
     msgid "Size"
     msgstr "Größe"
     
    @@ -117,1700 +270,1608 @@ msgstr "Größe"
     msgid "Last Modified"
     msgstr "Zuletzt geändert"
     
    -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157
    -#: ../../Zotlabs/Module/Editblock.php:109
    +#: ../../Zotlabs/Storage/Browser.php:240
    +#: ../../Zotlabs/Module/Admin/Profs.php:154
     #: ../../Zotlabs/Module/Connections.php:290
     #: ../../Zotlabs/Module/Connections.php:310
    -#: ../../Zotlabs/Module/Editpost.php:84
    -#: ../../Zotlabs/Module/Editlayout.php:113
    -#: ../../Zotlabs/Module/Editwebpage.php:146
    -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112
    -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652
    -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187
    -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106
    -#: ../../include/channel.php:937 ../../include/channel.php:941
    -#: ../../include/menu.php:108 ../../include/page_widgets.php:8
    -#: ../../include/page_widgets.php:36
    +#: ../../Zotlabs/Module/Editblock.php:109
    +#: ../../Zotlabs/Module/Editlayout.php:114
    +#: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112
    +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Blocks.php:160
    +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84
    +#: ../../Zotlabs/Module/Thing.php:260
    +#: ../../Zotlabs/Module/Settings/Oauth.php:149 ../../Zotlabs/Lib/Apps.php:341
    +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9
    +#: ../../include/page_widgets.php:39 ../../include/channel.php:959
    +#: ../../include/channel.php:963 ../../include/menu.php:113
     msgid "Edit"
     msgstr "Bearbeiten"
     
    -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159
    -#: ../../Zotlabs/Module/Connedit.php:572
    -#: ../../Zotlabs/Module/Editblock.php:134
    +#: ../../Zotlabs/Storage/Browser.php:241
    +#: ../../Zotlabs/Module/Admin/Accounts.php:174
    +#: ../../Zotlabs/Module/Admin/Channels.php:153
    +#: ../../Zotlabs/Module/Admin/Profs.php:155
     #: ../../Zotlabs/Module/Connections.php:263
    -#: ../../Zotlabs/Module/Editlayout.php:136
    +#: ../../Zotlabs/Module/Editblock.php:134
    +#: ../../Zotlabs/Module/Editlayout.php:137
     #: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177
    -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039
    -#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114
    -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261
    -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338
    -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657
    +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Blocks.php:162
    +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261
    +#: ../../Zotlabs/Module/Photos.php:1179
    +#: ../../Zotlabs/Module/Settings/Oauth.php:150 ../../Zotlabs/Lib/Apps.php:342
    +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660
     msgid "Delete"
     msgstr "Löschen"
     
    -#: ../../Zotlabs/Storage/Browser.php:285
    +#: ../../Zotlabs/Storage/Browser.php:301
     #, php-format
     msgid "You are using %1$s of your available file storage."
     msgstr "Sie verwenden %1$s von Ihrem verfügbaren Dateispeicher."
     
    -#: ../../Zotlabs/Storage/Browser.php:290
    +#: ../../Zotlabs/Storage/Browser.php:306
     #, php-format
     msgid "You are using %1$s of %2$s available file storage. (%3$s%)"
     msgstr "Sie verwenden %1$s von %2$s verfügbarem Dateispeicher. (%3$s%)"
     
    -#: ../../Zotlabs/Storage/Browser.php:302
    +#: ../../Zotlabs/Storage/Browser.php:317
     msgid "WARNING:"
     msgstr "WARNUNG:"
     
    -#: ../../Zotlabs/Storage/Browser.php:305
    +#: ../../Zotlabs/Storage/Browser.php:322
     msgid "Create new folder"
     msgstr "Neuen Ordner anlegen"
     
    -#: ../../Zotlabs/Storage/Browser.php:307
    +#: ../../Zotlabs/Storage/Browser.php:324
     msgid "Upload file"
     msgstr "Datei hochladen"
     
    -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10
    -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72
    -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112
    -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62
    -#: ../../include/items.php:385
    -msgid "Permission denied"
    -msgstr "Keine Berechtigung"
    +#: ../../Zotlabs/Storage/Browser.php:337
    +msgid "Drop files here to immediately upload"
    +msgstr "Dateien zum sofortigen Hochladen hier fallen lassen"
     
    -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65
    -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73
    -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105
    -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267
    -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105
    -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26
    -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61
    -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67
    -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33
    +#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128
    +#: ../../Zotlabs/Module/Achievements.php:34
    +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Authtest.php:16
    +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Page.php:35
    +#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Connections.php:33
     #: ../../Zotlabs/Module/Cover_photo.php:277
     #: ../../Zotlabs/Module/Cover_photo.php:290
    -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265
    +#: ../../Zotlabs/Module/Editblock.php:67
     #: ../../Zotlabs/Module/Editlayout.php:67
     #: ../../Zotlabs/Module/Editlayout.php:90
    -#: ../../Zotlabs/Module/Editwebpage.php:69
    -#: ../../Zotlabs/Module/Editwebpage.php:90
    -#: ../../Zotlabs/Module/Editwebpage.php:105
    -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13
    -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18
    -#: ../../Zotlabs/Module/Filestorage.php:24
    -#: ../../Zotlabs/Module/Filestorage.php:79
    -#: ../../Zotlabs/Module/Filestorage.php:94
    -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210
    -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070
    -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78
    -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76
    -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17
    +#: ../../Zotlabs/Module/Editwebpage.php:68
    +#: ../../Zotlabs/Module/Editwebpage.php:89
    +#: ../../Zotlabs/Module/Editwebpage.php:104
    +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78
    +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Mail.php:121
    +#: ../../Zotlabs/Module/Settings.php:59
    +#: ../../Zotlabs/Module/Filestorage.php:23
    +#: ../../Zotlabs/Module/Filestorage.php:78
    +#: ../../Zotlabs/Module/Filestorage.php:93
    +#: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Group.php:13
    +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Block.php:26
    +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17
     #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87
    -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10
    -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18
    -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17
    -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77
    +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Like.php:181
    +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115
    +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Rate.php:113
    +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203
    +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Api.php:12
    +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Item.php:214
    +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073
    +#: ../../Zotlabs/Module/New_channel.php:77
     #: ../../Zotlabs/Module/New_channel.php:104
    -#: ../../Zotlabs/Module/Notifications.php:70
    -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35
    -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26
    -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68
    -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203
    -#: ../../Zotlabs/Module/Profiles.php:601
    -#: ../../Zotlabs/Module/Profile_photo.php:256
    -#: ../../Zotlabs/Module/Profile_photo.php:269
    -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75
    -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21
    +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137
    +#: ../../Zotlabs/Module/Setup.php:220 ../../Zotlabs/Module/Profile.php:68
    +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Blocks.php:73
    +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71
    +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89
    +#: ../../Zotlabs/Module/Profile_photo.php:265
    +#: ../../Zotlabs/Module/Profile_photo.php:278
    +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Pdledit.php:29
    +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21
    +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Channel.php:104
    +#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269
     #: ../../Zotlabs/Module/Service_limits.php:11
    -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215
    -#: ../../Zotlabs/Module/Sharedwithme.php:11
    -#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30
     #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294
    -#: ../../Zotlabs/Module/Thing.php:331
    -#: ../../Zotlabs/Module/Viewconnections.php:25
    -#: ../../Zotlabs/Module/Viewconnections.php:30
    -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74
    -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438
    -#: ../../include/attach.php:141 ../../include/attach.php:189
    -#: ../../include/attach.php:252 ../../include/attach.php:266
    -#: ../../include/attach.php:273 ../../include/attach.php:338
    -#: ../../include/attach.php:352 ../../include/attach.php:359
    -#: ../../include/attach.php:437 ../../include/attach.php:895
    -#: ../../include/attach.php:966 ../../include/attach.php:1118
    -#: ../../include/photos.php:27
    +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Sharedwithme.php:11
    +#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30
    +#: ../../Zotlabs/Module/Photos.php:73
    +#: ../../Zotlabs/Module/Viewconnections.php:28
    +#: ../../Zotlabs/Module/Viewconnections.php:33
    +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100
    +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137
    +#: ../../include/photos.php:27 ../../include/items.php:3496
    +#: ../../include/attach.php:142 ../../include/attach.php:190
    +#: ../../include/attach.php:253 ../../include/attach.php:267
    +#: ../../include/attach.php:274 ../../include/attach.php:339
    +#: ../../include/attach.php:353 ../../include/attach.php:360
    +#: ../../include/attach.php:440 ../../include/attach.php:902
    +#: ../../include/attach.php:973 ../../include/attach.php:1125
     msgid "Permission denied."
     msgstr "Berechtigung verweigert."
     
    -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94
    +#: ../../Zotlabs/Web/Router.php:146 ../../include/help.php:53
     msgid "Not Found"
     msgstr "Nicht gefunden"
     
    -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79
    -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97
    -#: ../../Zotlabs/Module/Page.php:93
    +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94
    +#: ../../Zotlabs/Module/Display.php:120 ../../Zotlabs/Module/Block.php:79
    +#: ../../include/help.php:56
     msgid "Page not found."
     msgstr "Seite nicht gefunden."
     
    +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10
    +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72
    +#: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283
    +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62
    +#: ../../include/items.php:403
    +msgid "Permission denied"
    +msgstr "Keine Berechtigung"
    +
     #: ../../Zotlabs/Zot/Auth.php:138
     msgid ""
     "Remote authentication blocked. You are logged into this site locally. Please"
     " logout and retry."
     msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."
     
    -#: ../../Zotlabs/Zot/Auth.php:246 ../../Zotlabs/Module/Openid.php:76
    -#: ../../Zotlabs/Module/Openid.php:183
    +#: ../../Zotlabs/Zot/Auth.php:246
     #, php-format
     msgid "Welcome %s. Remote authentication successful."
     msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
     
    -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33
    -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31
    +#: ../../Zotlabs/Module/Achievements.php:15
    +#: ../../Zotlabs/Module/Editblock.php:31
     #: ../../Zotlabs/Module/Editlayout.php:31
    -#: ../../Zotlabs/Module/Editwebpage.php:33
    -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12
    -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20
    -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837
    +#: ../../Zotlabs/Module/Editwebpage.php:32
    +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17
    +#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12
    +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33
    +#: ../../Zotlabs/Module/Layouts.php:31 ../../include/channel.php:859
     msgid "Requested profile is not available."
    -msgstr "Erwünschte Profil ist nicht verfügbar."
    +msgstr "Das angefragte Profil ist nicht verfügbar."
     
     #: ../../Zotlabs/Module/Achievements.php:38
     msgid "Some blurb about what to do when you're new here"
     msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist"
     
    -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152
    -#: ../../Zotlabs/Module/Editblock.php:108
    -msgid "Block Name"
    -msgstr "Block-Name"
    +#: ../../Zotlabs/Module/Chatsvc.php:117
    +msgid "Away"
    +msgstr "Abwesend"
     
    -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265
    -msgid "Blocks"
    -msgstr "Blöcke"
    +#: ../../Zotlabs/Module/Chatsvc.php:122
    +msgid "Online"
    +msgstr "Online"
     
    -#: ../../Zotlabs/Module/Blocks.php:153
    -msgid "Block Title"
    -msgstr "Titel des Blocks"
    +#: ../../Zotlabs/Module/Dreport.php:44
    +msgid "Invalid message"
    +msgstr "Ungültige Beitrags-ID (mid)"
     
    -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188
    -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198
    -#: ../../include/page_widgets.php:44
    -msgid "Created"
    -msgstr "Erstellt"
    +#: ../../Zotlabs/Module/Dreport.php:76
    +msgid "no results"
    +msgstr "keine Ergebnisse"
     
    -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189
    -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199
    -#: ../../include/page_widgets.php:45
    -msgid "Edited"
    -msgstr "Geändert"
    +#: ../../Zotlabs/Module/Dreport.php:91
    +msgid "channel sync processed"
    +msgstr "Kanal-Sync verarbeitet"
     
    -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191
    -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188
    -#: ../../include/conversation.php:1208
    -msgid "Share"
    -msgstr "Teilen"
    +#: ../../Zotlabs/Module/Dreport.php:95
    +msgid "queued"
    +msgstr "zur Warteschlange hinzugefügt"
     
    -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195
    -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193
    -#: ../../include/page_widgets.php:39
    -msgid "View"
    -msgstr "Ansicht"
    +#: ../../Zotlabs/Module/Dreport.php:99
    +msgid "posted"
    +msgstr "zugestellt"
     
    -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43
    -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33
    -msgid "Channel not found."
    -msgstr "Kanal nicht gefunden."
    +#: ../../Zotlabs/Module/Dreport.php:103
    +msgid "accepted for delivery"
    +msgstr "für Zustellung akzeptiert"
     
    -#: ../../Zotlabs/Module/Cal.php:69
    -msgid "Permissions denied."
    -msgstr "Berechtigung verweigert."
    +#: ../../Zotlabs/Module/Dreport.php:107
    +msgid "updated"
    +msgstr "aktualisiert"
     
    -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588
    -msgid "l, F j"
    -msgstr "l, j. F"
    +#: ../../Zotlabs/Module/Dreport.php:110
    +msgid "update ignored"
    +msgstr "Aktualisierung ignoriert"
     
    -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637
    -#: ../../include/text.php:1732
    -msgid "Link to Source"
    -msgstr "Link zur Quelle"
    +#: ../../Zotlabs/Module/Dreport.php:113
    +msgid "permission denied"
    +msgstr "Zugriff verweigert"
     
    -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665
    -msgid "Edit Event"
    -msgstr "Termin bearbeiten"
    +#: ../../Zotlabs/Module/Dreport.php:117
    +msgid "recipient not found"
    +msgstr "Empfänger nicht gefunden."
     
    -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665
    -msgid "Create Event"
    -msgstr "Termin anlegen"
    +#: ../../Zotlabs/Module/Dreport.php:120
    +msgid "mail recalled"
    +msgstr "Mail widerrufen"
     
    -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339
    -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673
    -#: ../../Zotlabs/Module/Photos.php:949
    -msgid "Previous"
    -msgstr "Voriges"
    +#: ../../Zotlabs/Module/Dreport.php:123
    +msgid "duplicate mail received"
    +msgstr "Doppelte Mail erhalten"
     
    -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340
    -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674
    -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267
    -msgid "Next"
    -msgstr "Nächste"
    +#: ../../Zotlabs/Module/Dreport.php:126
    +msgid "mail delivered"
    +msgstr "Mail zugestellt"
     
    -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668
    -#: ../../include/widgets.php:755
    -msgid "Export"
    -msgstr "Exportieren"
    +#: ../../Zotlabs/Module/Dreport.php:146
    +#, php-format
    +msgid "Delivery report for %1$s"
    +msgstr "Zustellungsbericht für %1$s"
     
    -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671
    -#: ../../include/widgets.php:756
    -msgid "Import"
    -msgstr "Import"
    +#: ../../Zotlabs/Module/Dreport.php:149
    +msgid "Options"
    +msgstr "Optionen"
     
    -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196
    -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98
    -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475
    -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85
    -#: ../../Zotlabs/Module/Filestorage.php:162
    -#: ../../Zotlabs/Module/Import.php:550
    -#: ../../Zotlabs/Module/Import_items.php:120
    -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
    -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139
    -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677
    -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092
    -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107
    -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186
    -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170
    -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688
    -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032
    -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421
    -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733
    -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126
    -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703
    -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754
    -#: ../../Zotlabs/Module/Settings.php:842
    -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312
    -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114
    -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316
    -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15
    -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757
    -#: ../../include/widgets.php:769 ../../include/js_strings.php:22
    -#: ../../view/theme/redbasic/php/config.php:99
    -msgid "Submit"
    -msgstr "Bestätigen"
    +#: ../../Zotlabs/Module/Dreport.php:150
    +msgid "Redeliver"
    +msgstr "Erneut zustellen"
     
    -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675
    -msgid "Today"
    -msgstr "Heute"
    +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32
    +#, php-format
    +msgid "Fetching URL returns error: %1$s"
    +msgstr "Abrufen der URL gab einen Fehler zurück: %1$s"
     
    -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25
    -msgid "You must be logged in to see this page."
    -msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können."
    +#: ../../Zotlabs/Module/Register.php:49
    +msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
    +msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."
     
    -#: ../../Zotlabs/Module/Channel.php:41
    -msgid "Posts and comments"
    -msgstr "Beiträge und Kommentare"
    +#: ../../Zotlabs/Module/Register.php:55
    +msgid ""
    +"Please indicate acceptance of the Terms of Service. Registration failed."
    +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."
     
    -#: ../../Zotlabs/Module/Channel.php:42
    -msgid "Only posts"
    -msgstr "Nur Beiträge"
    +#: ../../Zotlabs/Module/Register.php:89
    +msgid "Passwords do not match."
    +msgstr "Passwörter stimmen nicht überein."
     
    -#: ../../Zotlabs/Module/Channel.php:102
    -msgid "Insufficient permissions.  Request redirected to profile page."
    -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."
    +#: ../../Zotlabs/Module/Register.php:131
    +msgid ""
    +"Registration successful. Please check your email for validation "
    +"instructions."
    +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
     
    -#: ../../Zotlabs/Module/Chat.php:181
    -msgid "Room not found"
    -msgstr "Chatraum nicht gefunden"
    +#: ../../Zotlabs/Module/Register.php:137
    +msgid "Your registration is pending approval by the site owner."
    +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
     
    -#: ../../Zotlabs/Module/Chat.php:197
    -msgid "Leave Room"
    -msgstr "Raum verlassen"
    +#: ../../Zotlabs/Module/Register.php:140
    +msgid "Your registration can not be processed."
    +msgstr "Deine Registrierung konnte nicht verarbeitet werden."
     
    -#: ../../Zotlabs/Module/Chat.php:198
    -msgid "Delete Room"
    -msgstr "Raum löschen"
    +#: ../../Zotlabs/Module/Register.php:184
    +msgid "Registration on this hub is disabled."
    +msgstr "Die Registrierung auf diesem Hub ist nicht möglich."
     
    -#: ../../Zotlabs/Module/Chat.php:199
    -msgid "I am away right now"
    -msgstr "Ich bin gerade nicht da"
    +#: ../../Zotlabs/Module/Register.php:193
    +msgid "Registration on this hub is by approval only."
    +msgstr "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator."
     
    -#: ../../Zotlabs/Module/Chat.php:200
    -msgid "I am online"
    -msgstr "Ich bin online"
    +#: ../../Zotlabs/Module/Register.php:194
    +msgid "Register at another affiliated hub."
    +msgstr "Registriere Dich auf einem der anderen verbundenen Hubs."
     
    -#: ../../Zotlabs/Module/Chat.php:202
    -msgid "Bookmark this room"
    -msgstr "Lesezeichen für diesen Raum setzen"
    +#: ../../Zotlabs/Module/Register.php:204
    +msgid ""
    +"This site has exceeded the number of allowed daily account registrations. "
    +"Please try again tomorrow."
    +msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."
     
    -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205
    -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176
    -msgid "Please enter a link URL:"
    -msgstr "Gib eine URL ein:"
    +#: ../../Zotlabs/Module/Register.php:221
    +msgid "Terms of Service"
    +msgstr "Nutzungsbedingungen"
     
    -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258
    -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722
    -#: ../../include/conversation.php:1256
    -msgid "Encrypt text"
    -msgstr "Text verschlüsseln"
    +#: ../../Zotlabs/Module/Register.php:227
    +#, php-format
    +msgid "I accept the %s for this website"
    +msgstr "Ich akzeptiere die %s für diese Webseite"
     
    -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111
    -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252
    -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143
    -msgid "Insert web link"
    -msgstr "Link einfügen"
    -
    -#: ../../Zotlabs/Module/Chat.php:218
    -msgid "Feature disabled."
    -msgstr "Funktion deaktiviert."
    -
    -#: ../../Zotlabs/Module/Chat.php:232
    -msgid "New Chatroom"
    -msgstr "Neuer Chatraum"
    -
    -#: ../../Zotlabs/Module/Chat.php:233
    -msgid "Chatroom name"
    -msgstr "Chatraumname"
    -
    -#: ../../Zotlabs/Module/Chat.php:234
    -msgid "Expiration of chats (minutes)"
    -msgstr "Verfall von Chats (Minuten)"
    -
    -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153
    -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045
    -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359
    -#: ../../include/acl_selectors.php:283
    -msgid "Permissions"
    -msgstr "Berechtigungen"
    -
    -#: ../../Zotlabs/Module/Chat.php:246
    +#: ../../Zotlabs/Module/Register.php:229
     #, php-format
    -msgid "%1$s's Chatrooms"
    -msgstr "%1$ss Chaträume"
    +msgid "I am over 13 years of age and accept the %s for this website"
    +msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"
     
    -#: ../../Zotlabs/Module/Chat.php:251
    -msgid "No chatrooms available"
    -msgstr "Keine Chaträume verfügbar"
    +#: ../../Zotlabs/Module/Register.php:233
    +msgid "Your email address"
    +msgstr "Ihre E-Mail Adresse"
     
    -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143
    -#: ../../Zotlabs/Module/Profiles.php:778
    -msgid "Create New"
    -msgstr "Neu anlegen"
    +#: ../../Zotlabs/Module/Register.php:234
    +msgid "Choose a password"
    +msgstr "Passwort"
     
    -#: ../../Zotlabs/Module/Chat.php:255
    -msgid "Expiration"
    -msgstr "Verfall"
    +#: ../../Zotlabs/Module/Register.php:235
    +msgid "Please re-enter your password"
    +msgstr "Bitte gib Dein Passwort noch einmal ein"
     
    -#: ../../Zotlabs/Module/Chat.php:256
    -msgid "min"
    -msgstr "min"
    +#: ../../Zotlabs/Module/Register.php:236
    +msgid "Please enter your invitation code"
    +msgstr "Bitte trage Deinen Einladungs-Code ein"
     
    -#: ../../Zotlabs/Module/Chatsvc.php:117
    -msgid "Away"
    -msgstr "Abwesend"
    +#: ../../Zotlabs/Module/Register.php:237
    +#: ../../Zotlabs/Module/New_channel.php:134
    +msgid "Name or caption"
    +msgstr "Name oder Titel"
     
    -#: ../../Zotlabs/Module/Chatsvc.php:122
    -msgid "Online"
    -msgstr "Online"
    +#: ../../Zotlabs/Module/Register.php:237
    +#: ../../Zotlabs/Module/New_channel.php:134
    +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""
    +msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "
     
    -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40
    -msgid "Invalid item."
    -msgstr "Ungültiges Element."
    +#: ../../Zotlabs/Module/Register.php:239
    +#: ../../Zotlabs/Module/New_channel.php:136
    +msgid "Choose a short nickname"
    +msgstr "Wähle einen kurzen Spitznamen"
     
    -#: ../../Zotlabs/Module/Bookmarks.php:53
    -msgid "Bookmark added"
    -msgstr "Lesezeichen hinzugefügt"
    +#: ../../Zotlabs/Module/Register.php:239
    +#: ../../Zotlabs/Module/New_channel.php:136
    +#, php-format
    +msgid ""
    +"Your nickname will be used to create an easy to remember channel address "
    +"e.g. nickname%s"
    +msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"
     
    -#: ../../Zotlabs/Module/Bookmarks.php:75
    -msgid "My Bookmarks"
    -msgstr "Meine Lesezeichen"
    +#: ../../Zotlabs/Module/Register.php:240
    +#: ../../Zotlabs/Module/New_channel.php:137
    +msgid "Channel role and privacy"
    +msgstr "Kanaltyp und Privatspäre-Einstellungen"
     
    -#: ../../Zotlabs/Module/Bookmarks.php:86
    -msgid "My Connections Bookmarks"
    -msgstr "Lesezeichen meiner Kontakte"
    +#: ../../Zotlabs/Module/Register.php:240
    +#: ../../Zotlabs/Module/New_channel.php:137
    +msgid "Select a channel role with your privacy requirements."
    +msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."
     
    -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109
    -msgid "Continue"
    -msgstr "Fortfahren"
    +#: ../../Zotlabs/Module/Register.php:240
    +#: ../../Zotlabs/Module/New_channel.php:137
    +msgid "Read more about roles"
    +msgstr "Mehr Informationen über Rollen"
     
    -#: ../../Zotlabs/Module/Connect.php:90
    -msgid "Premium Channel Setup"
    -msgstr "Premium-Kanal-Einrichtung"
    +#: ../../Zotlabs/Module/Register.php:241
    +msgid "no"
    +msgstr "nein"
     
    -#: ../../Zotlabs/Module/Connect.php:92
    -msgid "Enable premium channel connection restrictions"
    -msgstr "Einschränkungen für einen Premium-Kanal aktivieren"
    +#: ../../Zotlabs/Module/Register.php:241
    +msgid "yes"
    +msgstr "ja"
     
    -#: ../../Zotlabs/Module/Connect.php:93
    -msgid ""
    -"Please enter your restrictions or conditions, such as paypal receipt, usage "
    -"guidelines, etc."
    -msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."
    +#: ../../Zotlabs/Module/Register.php:253
    +#: ../../Zotlabs/Module/Admin/Site.php:268
    +msgid "Registration"
    +msgstr "Registrierung"
     
    -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115
    -msgid ""
    -"This channel may require additional steps or acknowledgement of the "
    -"following conditions prior to connecting:"
    -msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."
    +#: ../../Zotlabs/Module/Register.php:258
    +msgid "Membership on this site is by invitation only."
    +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
     
    -#: ../../Zotlabs/Module/Connect.php:96
    -msgid ""
    -"Potential connections will then see the following text before proceeding:"
    -msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"
    +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152
    +#: ../../boot.php:1721
    +msgid "Register"
    +msgstr "Registrieren"
     
    -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118
    +#: ../../Zotlabs/Module/Register.php:271
     msgid ""
    -"By continuing, I certify that I have complied with any instructions provided"
    -" on this page."
    -msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."
    -
    -#: ../../Zotlabs/Module/Connect.php:106
    -msgid "(No specific instructions have been provided by the channel owner.)"
    -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"
    -
    -#: ../../Zotlabs/Module/Connect.php:114
    -msgid "Restricted or Premium Channel"
    -msgstr "Eingeschränkter oder Premium-Kanal"
    -
    -#: ../../Zotlabs/Module/Connedit.php:80
    -msgid "Could not access contact record."
    -msgstr "Konnte nicht auf den Kontakteintrag zugreifen."
    -
    -#: ../../Zotlabs/Module/Connedit.php:104
    -msgid "Could not locate selected profile."
    -msgstr "Gewähltes Profil nicht gefunden."
    +"This site may require email verification after submitting this form. If you "
    +"are returned to a login page, please check your email for instructions."
    +msgstr "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen."
     
    -#: ../../Zotlabs/Module/Connedit.php:227
    -msgid "Connection updated."
    -msgstr "Verbindung aktualisiert."
    +#: ../../Zotlabs/Module/Admin/Accounts.php:36
    +#, php-format
    +msgid "%s account blocked/unblocked"
    +msgid_plural "%s account blocked/unblocked"
    +msgstr[0] "%s Konto blockiert/freigegeben"
    +msgstr[1] "%s Konten blockiert/freigegeben"
     
    -#: ../../Zotlabs/Module/Connedit.php:229
    -msgid "Failed to update connection record."
    -msgstr "Konnte den Verbindungseintrag nicht aktualisieren."
    +#: ../../Zotlabs/Module/Admin/Accounts.php:43
    +#, php-format
    +msgid "%s account deleted"
    +msgid_plural "%s accounts deleted"
    +msgstr[0] "%s Konto gelöscht"
    +msgstr[1] "%s Konten gelöscht"
     
    -#: ../../Zotlabs/Module/Connedit.php:276
    -msgid "is now connected to"
    -msgstr "ist jetzt verbunden mit"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:79
    +msgid "Account not found"
    +msgstr "Konto nicht gefunden"
     
    -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654
    -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460
    -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89
    -#: ../../Zotlabs/Module/Filestorage.php:157
    -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100
    -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158
    -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232
    -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666
    -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459
    -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581
    -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
    -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105
    -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707
    -msgid "No"
    -msgstr "Nein"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:90
    +#, php-format
    +msgid "Account '%s' deleted"
    +msgstr "Konto '%s' gelöscht"
     
    -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459
    -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469
    -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157
    -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100
    -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158
    -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232
    -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666
    -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461
    -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581
    -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
    -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105
    -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707
    -msgid "Yes"
    -msgstr "Ja"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:98
    +#, php-format
    +msgid "Account '%s' blocked"
    +msgstr "Konto '%s' blockiert"
     
    -#: ../../Zotlabs/Module/Connedit.php:411
    -msgid "Could not access address book record."
    -msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen."
    +#: ../../Zotlabs/Module/Admin/Accounts.php:106
    +#, php-format
    +msgid "Account '%s' unblocked"
    +msgstr "Konto '%s' freigegeben"
     
    -#: ../../Zotlabs/Module/Connedit.php:425
    -msgid "Refresh failed - channel is currently unavailable."
    -msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."
    +#: ../../Zotlabs/Module/Admin/Accounts.php:165
    +#: ../../Zotlabs/Module/Admin/Channels.php:149
    +#: ../../Zotlabs/Module/Admin/Logs.php:82
    +#: ../../Zotlabs/Module/Admin/Plugins.php:336
    +#: ../../Zotlabs/Module/Admin/Plugins.php:427
    +#: ../../Zotlabs/Module/Admin/Security.php:86
    +#: ../../Zotlabs/Module/Admin/Site.php:265
    +#: ../../Zotlabs/Module/Admin/Themes.php:120
    +#: ../../Zotlabs/Module/Admin/Themes.php:154
    +#: ../../Zotlabs/Module/Admin.php:141
    +msgid "Administration"
    +msgstr "Administration"
     
    -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449
    -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467
    -#: ../../Zotlabs/Module/Connedit.php:480
    -msgid "Unable to set address book parameters."
    -msgstr "Konnte die Adressbuch-Parameter nicht setzen."
    +#: ../../Zotlabs/Module/Admin/Accounts.php:166
    +#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557
    +msgid "Accounts"
    +msgstr "Konten"
     
    -#: ../../Zotlabs/Module/Connedit.php:503
    -msgid "Connection has been removed."
    -msgstr "Verbindung wurde gelöscht."
    +#: ../../Zotlabs/Module/Admin/Accounts.php:167
    +#: ../../Zotlabs/Module/Admin/Channels.php:151
    +#: ../../Zotlabs/Module/Admin/Features.php:66
    +#: ../../Zotlabs/Module/Admin/Logs.php:84
    +#: ../../Zotlabs/Module/Admin/Plugins.php:429
    +#: ../../Zotlabs/Module/Admin/Profs.php:157
    +#: ../../Zotlabs/Module/Admin/Security.php:104
    +#: ../../Zotlabs/Module/Admin/Site.php:267
    +#: ../../Zotlabs/Module/Admin/Themes.php:156
    +#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Appman.php:126
    +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Filestorage.php:165
    +#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Group.php:85
    +#: ../../Zotlabs/Module/Import_items.php:122
    +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
    +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Rate.php:166
    +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687
    +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Poke.php:186
    +#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365
    +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Cal.php:338
    +#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Connedit.php:779
    +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370
    +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149
    +#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058
    +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216
    +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241
    +#: ../../Zotlabs/Module/Xchan.php:15
    +#: ../../Zotlabs/Module/Settings/Account.php:126
    +#: ../../Zotlabs/Module/Settings/Channel.php:452
    +#: ../../Zotlabs/Module/Settings/Display.php:194
    +#: ../../Zotlabs/Module/Settings/Features.php:47
    +#: ../../Zotlabs/Module/Settings/Oauth.php:87
    +#: ../../Zotlabs/Module/Settings/Tokens.php:167
    +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/js_strings.php:22
    +#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106
    +msgid "Submit"
    +msgstr "Absenden"
     
    -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219
    -#: ../../include/nav.php:86 ../../include/conversation.php:954
    -msgid "View Profile"
    -msgstr "Profil ansehen"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:168
    +#: ../../Zotlabs/Module/Admin/Channels.php:152
    +msgid "select all"
    +msgstr "Alle auswählen"
     
    -#: ../../Zotlabs/Module/Connedit.php:522
    -#, php-format
    -msgid "View %s's profile"
    -msgstr "%ss Profil ansehen"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:169
    +msgid "Registrations waiting for confirm"
    +msgstr "Registrierungen warten auf Bestätigung"
     
    -#: ../../Zotlabs/Module/Connedit.php:526
    -msgid "Refresh Permissions"
    -msgstr "Zugriffsrechte neu laden"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:170
    +msgid "Request date"
    +msgstr "Antragsdatum"
     
    -#: ../../Zotlabs/Module/Connedit.php:529
    -msgid "Fetch updated permissions"
    -msgstr "Aktualisierte Zugriffsrechte abfragen"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:170
    +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2208
    +msgid "Email"
    +msgstr "E-Mail"
     
    -#: ../../Zotlabs/Module/Connedit.php:533
    -msgid "Recent Activity"
    -msgstr "Kürzliche Aktivitäten"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:171
    +msgid "No registrations."
    +msgstr "Keine Registrierungen."
     
    -#: ../../Zotlabs/Module/Connedit.php:536
    -msgid "View recent posts and comments"
    -msgstr "Betrachte die neuesten Beiträge und Kommentare"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:172
    +#: ../../Zotlabs/Module/Connections.php:275
    +msgid "Approve"
    +msgstr "Genehmigen"
     
    -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041
    -msgid "Unblock"
    -msgstr "Freigeben"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:173
    +msgid "Deny"
    +msgstr "Verweigern"
     
    -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040
    +#: ../../Zotlabs/Module/Admin/Accounts.php:175
    +#: ../../Zotlabs/Module/Connedit.php:575
     msgid "Block"
     msgstr "Blockieren"
     
    -#: ../../Zotlabs/Module/Connedit.php:543
    -msgid "Block (or Unblock) all communications with this connection"
    -msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:176
    +#: ../../Zotlabs/Module/Connedit.php:575
    +msgid "Unblock"
    +msgstr "Freigeben"
     
    -#: ../../Zotlabs/Module/Connedit.php:544
    -msgid "This connection is blocked!"
    -msgstr "Die Verbindung ist geblockt!"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:181
    +msgid "ID"
    +msgstr "ID"
     
    -#: ../../Zotlabs/Module/Connedit.php:548
    -msgid "Unignore"
    -msgstr "Nicht ignorieren"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267
    +msgid "All Channels"
    +msgstr "Alle Kanäle"
     
    -#: ../../Zotlabs/Module/Connedit.php:548
    -#: ../../Zotlabs/Module/Connections.php:277
    -#: ../../Zotlabs/Module/Notifications.php:55
    -msgid "Ignore"
    -msgstr "Ignorieren"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:184
    +msgid "Register date"
    +msgstr "Registrierungs-Datum"
     
    -#: ../../Zotlabs/Module/Connedit.php:551
    -msgid "Ignore (or Unignore) all inbound communications from this connection"
    -msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:185
    +msgid "Last login"
    +msgstr "Letzte Anmeldung"
     
    -#: ../../Zotlabs/Module/Connedit.php:552
    -msgid "This connection is ignored!"
    -msgstr "Die Verbindung wird ignoriert!"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:186
    +msgid "Expires"
    +msgstr "Verfällt"
     
    -#: ../../Zotlabs/Module/Connedit.php:556
    -msgid "Unarchive"
    -msgstr "Aus Archiv zurückholen"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:187
    +msgid "Service Class"
    +msgstr "Service-Klasse"
     
    -#: ../../Zotlabs/Module/Connedit.php:556
    -msgid "Archive"
    -msgstr "Archivieren"
    +#: ../../Zotlabs/Module/Admin/Accounts.php:189
    +msgid ""
    +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted"
    +" on this site will be permanently deleted!\\n\\nAre you sure?"
    +msgstr "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?"
     
    -#: ../../Zotlabs/Module/Connedit.php:559
    +#: ../../Zotlabs/Module/Admin/Accounts.php:190
     msgid ""
    -"Archive (or Unarchive) this connection - mark channel dead but keep content"
    -msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"
    +"The account {0} will be deleted!\\n\\nEverything this account has posted on "
    +"this site will be permanently deleted!\\n\\nAre you sure?"
    +msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"
     
    -#: ../../Zotlabs/Module/Connedit.php:560
    -msgid "This connection is archived!"
    -msgstr "Die Verbindung ist archiviert!"
    -
    -#: ../../Zotlabs/Module/Connedit.php:564
    -msgid "Unhide"
    -msgstr "Wieder sichtbar machen"
    -
    -#: ../../Zotlabs/Module/Connedit.php:564
    -msgid "Hide"
    -msgstr "Verstecken"
    -
    -#: ../../Zotlabs/Module/Connedit.php:567
    -msgid "Hide or Unhide this connection from your other connections"
    -msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"
    +#: ../../Zotlabs/Module/Admin/Channels.php:30
    +#, php-format
    +msgid "%s channel censored/uncensored"
    +msgid_plural "%s channels censored/uncensored"
    +msgstr[0] "%s Kanal gesperrt/freigegeben"
    +msgstr[1] "%s Kanäle gesperrt/freigegeben"
     
    -#: ../../Zotlabs/Module/Connedit.php:568
    -msgid "This connection is hidden!"
    -msgstr "Die Verbindung ist versteckt!"
    +#: ../../Zotlabs/Module/Admin/Channels.php:39
    +#, php-format
    +msgid "%s channel code allowed/disallowed"
    +msgid_plural "%s channels code allowed/disallowed"
    +msgstr[0] "Code für %s Kanal gesperrt/freigegeben"
    +msgstr[1] "Code für %s Kanäle gesperrt/freigegeben"
     
    -#: ../../Zotlabs/Module/Connedit.php:575
    -msgid "Delete this connection"
    -msgstr "Verbindung löschen"
    +#: ../../Zotlabs/Module/Admin/Channels.php:45
    +#, php-format
    +msgid "%s channel deleted"
    +msgid_plural "%s channels deleted"
    +msgstr[0] "%s Kanal gelöscht"
    +msgstr[1] "%s Kanäle gelöscht"
     
    -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493
    -msgid "Me"
    -msgstr "Ich"
    +#: ../../Zotlabs/Module/Admin/Channels.php:66
    +msgid "Channel not found"
    +msgstr "Kanal nicht gefunden"
     
    -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494
    -msgid "Family"
    -msgstr "Familie"
    +#: ../../Zotlabs/Module/Admin/Channels.php:76
    +#, php-format
    +msgid "Channel '%s' deleted"
    +msgstr "Kanal '%s' gelöscht"
     
    -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342
    -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347
    -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361
    -#: ../../include/widgets.php:495 ../../include/selectors.php:123
    -#: ../../include/channel.php:389 ../../include/channel.php:390
    -#: ../../include/channel.php:397
    -msgid "Friends"
    -msgstr "Freunde"
    +#: ../../Zotlabs/Module/Admin/Channels.php:88
    +#, php-format
    +msgid "Channel '%s' censored"
    +msgstr "Kanal '%s' gesperrt"
     
    -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496
    -msgid "Acquaintances"
    -msgstr "Bekannte"
    +#: ../../Zotlabs/Module/Admin/Channels.php:88
    +#, php-format
    +msgid "Channel '%s' uncensored"
    +msgstr "Kanal '%s' freigegeben"
     
    -#: ../../Zotlabs/Module/Connedit.php:594
    -#: ../../Zotlabs/Module/Connections.php:92
    -#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497
    -msgid "All"
    -msgstr "Alle"
    +#: ../../Zotlabs/Module/Admin/Channels.php:99
    +#, php-format
    +msgid "Channel '%s' code allowed"
    +msgstr "Code für Kanal '%s' freigegeben"
     
    -#: ../../Zotlabs/Module/Connedit.php:654
    -msgid "Approve this connection"
    -msgstr "Verbindung genehmigen"
    +#: ../../Zotlabs/Module/Admin/Channels.php:99
    +#, php-format
    +msgid "Channel '%s' code disallowed"
    +msgstr "Code für Kanal '%s' gesperrt"
     
    -#: ../../Zotlabs/Module/Connedit.php:654
    -msgid "Accept connection to allow communication"
    -msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"
    +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558
    +msgid "Channels"
    +msgstr "Kanäle"
     
    -#: ../../Zotlabs/Module/Connedit.php:659
    -msgid "Set Affinity"
    -msgstr "Beziehung festlegen"
    +#: ../../Zotlabs/Module/Admin/Channels.php:154
    +msgid "Censor"
    +msgstr "Sperren"
     
    -#: ../../Zotlabs/Module/Connedit.php:662
    -msgid "Set Profile"
    -msgstr "Profil festlegen"
    +#: ../../Zotlabs/Module/Admin/Channels.php:155
    +msgid "Uncensor"
    +msgstr "Freigeben"
     
    -#: ../../Zotlabs/Module/Connedit.php:665
    -msgid "Set Affinity & Profile"
    -msgstr "Beziehung und Profile festlegen"
    +#: ../../Zotlabs/Module/Admin/Channels.php:156
    +msgid "Allow Code"
    +msgstr "Code erlauben"
     
    -#: ../../Zotlabs/Module/Connedit.php:698
    -msgid "none"
    -msgstr "Keine"
    +#: ../../Zotlabs/Module/Admin/Channels.php:157
    +msgid "Disallow Code"
    +msgstr "Code sperren"
     
    -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614
    -msgid "Connection Default Permissions"
    -msgstr "Standardzugriffsrechte für neue Verbindungen:"
    +#: ../../Zotlabs/Module/Admin/Channels.php:158
    +#: ../../include/conversation.php:1650
    +msgid "Channel"
    +msgstr "Kanal"
     
    -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926
    -#, php-format
    -msgid "Connection: %s"
    -msgstr "Verbindung: %s"
    +#: ../../Zotlabs/Module/Admin/Channels.php:162
    +msgid "UID"
    +msgstr "UID"
     
    -#: ../../Zotlabs/Module/Connedit.php:703
    -msgid "Apply these permissions automatically"
    -msgstr "Diese Berechtigungen automatisch anwenden"
    +#: ../../Zotlabs/Module/Admin/Channels.php:164
    +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470
    +msgid "Address"
    +msgstr "Adresse"
     
    -#: ../../Zotlabs/Module/Connedit.php:703
    -msgid "Connection requests will be approved without your interaction"
    -msgstr "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist."
    +#: ../../Zotlabs/Module/Admin/Channels.php:166
    +msgid ""
    +"Selected channels will be deleted!\\n\\nEverything that was posted in these "
    +"channels on this site will be permanently deleted!\\n\\nAre you sure?"
    +msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"
     
    -#: ../../Zotlabs/Module/Connedit.php:705
    -msgid "This connection's primary address is"
    -msgstr "Die Hauptadresse der Verbindung ist"
    +#: ../../Zotlabs/Module/Admin/Channels.php:167
    +msgid ""
    +"The channel {0} will be deleted!\\n\\nEverything that was posted in this "
    +"channel on this site will be permanently deleted!\\n\\nAre you sure?"
    +msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"
     
    -#: ../../Zotlabs/Module/Connedit.php:706
    -msgid "Available locations:"
    -msgstr "Verfügbare Klone:"
    +#: ../../Zotlabs/Module/Admin/Dbsync.php:19
    +msgid "Update has been marked successful"
    +msgstr "Update wurde als erfolgreich markiert"
     
    -#: ../../Zotlabs/Module/Connedit.php:710
    -msgid ""
    -"The permissions indicated on this page will be applied to all new "
    -"connections."
    -msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet."
    +#: ../../Zotlabs/Module/Admin/Dbsync.php:29
    +#, php-format
    +msgid "Executing %s failed. Check system logs."
    +msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."
     
    -#: ../../Zotlabs/Module/Connedit.php:711
    -msgid "Connection Tools"
    -msgstr "Verbindungswerkzeuge"
    +#: ../../Zotlabs/Module/Admin/Dbsync.php:32
    +#, php-format
    +msgid "Update %s was successfully applied."
    +msgstr "Update %s wurde erfolgreich ausgeführt."
     
    -#: ../../Zotlabs/Module/Connedit.php:713
    -msgid "Slide to adjust your degree of friendship"
    -msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen"
    +#: ../../Zotlabs/Module/Admin/Dbsync.php:36
    +#, php-format
    +msgid "Update %s did not return a status. Unknown if it succeeded."
    +msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."
     
    -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159
    -#: ../../include/js_strings.php:20
    -msgid "Rating"
    -msgstr "Bewertung"
    +#: ../../Zotlabs/Module/Admin/Dbsync.php:39
    +#, php-format
    +msgid "Update function %s could not be found."
    +msgstr "Update-Funktion %s konnte nicht gefunden werden."
     
    -#: ../../Zotlabs/Module/Connedit.php:715
    -msgid "Slide to adjust your rating"
    -msgstr "Verschieben, um Deine Bewertung einzustellen"
    +#: ../../Zotlabs/Module/Admin/Dbsync.php:55
    +msgid "No failed updates."
    +msgstr "Keine fehlgeschlagenen Aktualisierungen."
     
    -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721
    -msgid "Optionally explain your rating"
    -msgstr "Optional kannst Du Deine Bewertung begründen"
    +#: ../../Zotlabs/Module/Admin/Dbsync.php:59
    +msgid "Failed Updates"
    +msgstr "Fehlgeschlagene Aktualisierungen"
     
    -#: ../../Zotlabs/Module/Connedit.php:718
    -msgid "Custom Filter"
    -msgstr "Benutzerdefinierter Filter"
    +#: ../../Zotlabs/Module/Admin/Dbsync.php:61
    +msgid "Mark success (if update was manually applied)"
    +msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"
     
    -#: ../../Zotlabs/Module/Connedit.php:719
    -msgid "Only import posts with this text"
    -msgstr "Nur Beiträge mit diesem Text importieren"
    +#: ../../Zotlabs/Module/Admin/Dbsync.php:62
    +msgid "Attempt to execute this update step automatically"
    +msgstr "Versuche, diesen Updateschritt automatisch auszuführen"
     
    -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720
    -msgid ""
    -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
    -"all posts"
    -msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren."
    +#: ../../Zotlabs/Module/Admin/Features.php:55
    +#: ../../Zotlabs/Module/Admin/Features.php:56
    +#: ../../Zotlabs/Module/Settings/Features.php:38
    +msgid "Off"
    +msgstr "Aus"
     
    -#: ../../Zotlabs/Module/Connedit.php:720
    -msgid "Do not import posts with this text"
    -msgstr "Beiträge mit diesem Text nicht importieren"
    +#: ../../Zotlabs/Module/Admin/Features.php:55
    +#: ../../Zotlabs/Module/Admin/Features.php:56
    +#: ../../Zotlabs/Module/Settings/Features.php:38
    +msgid "On"
    +msgstr "An"
     
    -#: ../../Zotlabs/Module/Connedit.php:722
    -msgid "This information is public!"
    -msgstr "Diese Information ist öffentlich!"
    +#: ../../Zotlabs/Module/Admin/Features.php:56
    +#, php-format
    +msgid "Lock feature %s"
    +msgstr "Blockiere die Funktion %s"
     
    -#: ../../Zotlabs/Module/Connedit.php:727
    -msgid "Connection Pending Approval"
    -msgstr "Verbindung wartet auf Bestätigung"
    +#: ../../Zotlabs/Module/Admin/Features.php:64
    +msgid "Manage Additional Features"
    +msgstr "Zusätzliche Funktionen verwalten"
     
    -#: ../../Zotlabs/Module/Connedit.php:730
    -msgid "inherited"
    -msgstr "geerbt"
    +#: ../../Zotlabs/Module/Admin/Logs.php:28
    +msgid "Log settings updated."
    +msgstr "Protokoll-Einstellungen aktualisiert."
     
    -#: ../../Zotlabs/Module/Connedit.php:732
    -#, php-format
    -msgid ""
    -"Please choose the profile you would like to display to %s when viewing your "
    -"profile securely."
    -msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."
    +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583
    +#: ../../include/widgets.php:1593
    +msgid "Logs"
    +msgstr "Protokolle"
     
    -#: ../../Zotlabs/Module/Connedit.php:734
    -msgid "Their Settings"
    -msgstr "Deren Einstellungen"
    +#: ../../Zotlabs/Module/Admin/Logs.php:85
    +msgid "Clear"
    +msgstr "Leeren"
     
    -#: ../../Zotlabs/Module/Connedit.php:735
    -msgid "My Settings"
    -msgstr "Meine Einstellungen"
    +#: ../../Zotlabs/Module/Admin/Logs.php:91
    +msgid "Debugging"
    +msgstr "Debugging"
     
    -#: ../../Zotlabs/Module/Connedit.php:737
    -msgid "Individual Permissions"
    -msgstr "Individuelle Zugriffsrechte"
    +#: ../../Zotlabs/Module/Admin/Logs.php:92
    +msgid "Log file"
    +msgstr "Protokolldatei"
     
    -#: ../../Zotlabs/Module/Connedit.php:738
    +#: ../../Zotlabs/Module/Admin/Logs.php:92
     msgid ""
    -"Some permissions may be inherited from your channel's privacy settings, which have higher "
    -"priority than individual settings. You can not change those"
    -" settings here."
    -msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden."
    +"Must be writable by web server. Relative to your top-level webserver "
    +"directory."
    +msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis."
     
    -#: ../../Zotlabs/Module/Connedit.php:739
    -msgid ""
    -"Some permissions may be inherited from your channel's privacy settings, which have higher "
    -"priority than individual settings. You can change those settings here but "
    -"they wont have any impact unless the inherited setting changes."
    -msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."
    +#: ../../Zotlabs/Module/Admin/Logs.php:93
    +msgid "Log level"
    +msgstr "Protokollstufe"
     
    -#: ../../Zotlabs/Module/Connedit.php:740
    -msgid "Last update:"
    -msgstr "Letzte Aktualisierung:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:254
    +#: ../../Zotlabs/Module/Admin/Themes.php:69
    +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32
    +#: ../../Zotlabs/Module/Thing.php:89 ../../Zotlabs/Module/Viewsrc.php:24
    +#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3417
    +msgid "Item not found."
    +msgstr "Element nicht gefunden."
     
    -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17
    -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86
    -#: ../../Zotlabs/Module/Search.php:17
    -#: ../../Zotlabs/Module/Viewconnections.php:20
    -msgid "Public access denied."
    -msgstr "Öffentlichen Zugriff verweigert."
    +#: ../../Zotlabs/Module/Admin/Plugins.php:284
    +#, php-format
    +msgid "Plugin %s disabled."
    +msgstr "Plug-In %s deaktiviert."
     
    -#: ../../Zotlabs/Module/Directory.php:243
    +#: ../../Zotlabs/Module/Admin/Plugins.php:289
     #, php-format
    -msgid "%d rating"
    -msgid_plural "%d ratings"
    -msgstr[0] "%d Bewertung"
    -msgstr[1] "%d Bewertungen"
    +msgid "Plugin %s enabled."
    +msgstr "Plug-In %s aktiviert."
     
    -#: ../../Zotlabs/Module/Directory.php:254
    -msgid "Gender: "
    -msgstr "Geschlecht:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:305
    +#: ../../Zotlabs/Module/Admin/Themes.php:93
    +msgid "Disable"
    +msgstr "Deaktivieren"
     
    -#: ../../Zotlabs/Module/Directory.php:256
    -msgid "Status: "
    -msgstr "Status:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:308
    +#: ../../Zotlabs/Module/Admin/Themes.php:95
    +msgid "Enable"
    +msgstr "Aktivieren"
     
    -#: ../../Zotlabs/Module/Directory.php:258
    -msgid "Homepage: "
    -msgstr "Webseite:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:337
    +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561
    +msgid "Plugins"
    +msgstr "Plug-Ins"
     
    -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183
    -msgid "Age:"
    -msgstr "Alter:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:338
    +#: ../../Zotlabs/Module/Admin/Themes.php:122
    +msgid "Toggle"
    +msgstr "Umschalten"
     
    -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52
    -#: ../../include/event.php:84 ../../include/channel.php:1027
    -#: ../../include/bb2diaspora.php:507
    -msgid "Location:"
    -msgstr "Ort:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:339
    +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216
    +#: ../../include/nav.php:213 ../../include/widgets.php:680
    +msgid "Settings"
    +msgstr "Einstellungen"
     
    -#: ../../Zotlabs/Module/Directory.php:317
    -msgid "Description:"
    -msgstr "Beschreibung:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:346
    +#: ../../Zotlabs/Module/Admin/Themes.php:132
    +msgid "Author: "
    +msgstr "Autor: "
     
    -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199
    -msgid "Hometown:"
    -msgstr "Heimatstadt:"
    -
    -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207
    -msgid "About:"
    -msgstr "Über:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:347
    +#: ../../Zotlabs/Module/Admin/Themes.php:133
    +msgid "Maintainer: "
    +msgstr "Betreuer:"
     
    -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68
    -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147
    -#: ../../include/widgets.php:184 ../../include/connections.php:78
    -#: ../../include/conversation.php:956 ../../include/channel.php:1012
    -msgid "Connect"
    -msgstr "Verbinden"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:348
    +msgid "Minimum project version: "
    +msgstr "Minimale Version des Projekts:"
     
    -#: ../../Zotlabs/Module/Directory.php:326
    -msgid "Public Forum:"
    -msgstr "Öffentliches Forum:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:349
    +msgid "Maximum project version: "
    +msgstr "Maximale Version des Projekts:"
     
    -#: ../../Zotlabs/Module/Directory.php:329
    -msgid "Keywords: "
    -msgstr "Schlüsselwörter:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:350
    +msgid "Minimum PHP version: "
    +msgstr "Minimale PHP Version:"
     
    -#: ../../Zotlabs/Module/Directory.php:332
    -msgid "Don't suggest"
    -msgstr "Nicht vorschlagen"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:351
    +msgid "Compatible Server Roles: "
    +msgstr "Kompatible Serverrollen: "
     
    -#: ../../Zotlabs/Module/Directory.php:334
    -msgid "Common connections:"
    -msgstr "Gemeinsame Verbindungen:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:352
    +msgid "Requires: "
    +msgstr "Benötigt:"
     
    -#: ../../Zotlabs/Module/Directory.php:383
    -msgid "Global Directory"
    -msgstr "Globales Verzeichnis"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:353
    +#: ../../Zotlabs/Module/Admin/Plugins.php:433
    +msgid "Disabled - version incompatibility"
    +msgstr "Abgeschaltet - Versionsinkompatibilität"
     
    -#: ../../Zotlabs/Module/Directory.php:383
    -msgid "Local Directory"
    -msgstr "Lokales Verzeichnis"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:402
    +msgid "Enter the public git repository URL of the plugin repo."
    +msgstr "Gib die öffentliche Git-Repository-URL des Plugin-Repository an."
     
    -#: ../../Zotlabs/Module/Directory.php:388
    -#: ../../Zotlabs/Module/Directory.php:393
    -#: ../../Zotlabs/Module/Connections.php:309
    -#: ../../include/contact_widgets.php:23
    -msgid "Find"
    -msgstr "Finde"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:403
    +msgid "Plugin repo git URL"
    +msgstr "Plugin-Repository Git URL"
     
    -#: ../../Zotlabs/Module/Directory.php:389
    -msgid "Finding:"
    -msgstr "Ergebnisse:"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:404
    +msgid "Custom repo name"
    +msgstr "Benutzerdefinierter Repository-Name"
     
    -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64
    -#: ../../include/contact_widgets.php:24
    -msgid "Channel Suggestions"
    -msgstr "Kanal-Vorschläge"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:404
    +msgid "(optional)"
    +msgstr "(optional)"
     
    -#: ../../Zotlabs/Module/Directory.php:394
    -msgid "next page"
    -msgstr "nächste Seite"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:405
    +msgid "Download Plugin Repo"
    +msgstr "Plugin-Repository herunterladen"
     
    -#: ../../Zotlabs/Module/Directory.php:394
    -msgid "previous page"
    -msgstr "vorherige Seite"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:412
    +msgid "Install new repo"
    +msgstr "Neues Repository installieren"
     
    -#: ../../Zotlabs/Module/Directory.php:395
    -msgid "Sort options"
    -msgstr "Sortieroptionen"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334
    +msgid "Install"
    +msgstr "Installieren"
     
    -#: ../../Zotlabs/Module/Directory.php:396
    -msgid "Alphabetic"
    -msgstr "alphabetisch"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:414
    +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88
    +#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211
    +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138
    +#: ../../Zotlabs/Module/Settings/Oauth.php:88
    +#: ../../Zotlabs/Module/Settings/Oauth.php:114
    +#: ../../include/conversation.php:1247 ../../include/conversation.php:1296
    +msgid "Cancel"
    +msgstr "Abbrechen"
     
    -#: ../../Zotlabs/Module/Directory.php:397
    -msgid "Reverse Alphabetic"
    -msgstr "Entgegengesetzt alphabetisch"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:435
    +msgid "Manage Repos"
    +msgstr "Repositorien verwalten"
     
    -#: ../../Zotlabs/Module/Directory.php:398
    -msgid "Newest to Oldest"
    -msgstr "Neueste zuerst"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:436
    +msgid "Installed Plugin Repositories"
    +msgstr "Installierte Plugin-Repositorien"
     
    -#: ../../Zotlabs/Module/Directory.php:399
    -msgid "Oldest to Newest"
    -msgstr "Älteste zuerst"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:437
    +msgid "Install a New Plugin Repository"
    +msgstr "Ein neues Plugin-Repository installieren"
     
    -#: ../../Zotlabs/Module/Directory.php:416
    -msgid "No entries (some entries may be hidden)."
    -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
    +#: ../../Zotlabs/Module/Admin/Plugins.php:443
    +#: ../../Zotlabs/Module/Settings/Oauth.php:42
    +#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334
    +msgid "Update"
    +msgstr "Aktualisieren"
     
    -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33
    -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255
    -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89
    -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359
    -msgid "Item not found."
    -msgstr "Element nicht gefunden."
    +#: ../../Zotlabs/Module/Admin/Plugins.php:444
    +msgid "Switch branch"
    +msgstr "Zweig/Branch wechseln"
     
    -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95
    -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79
    -#: ../../Zotlabs/Module/Editwebpage.php:81
    -msgid "Item not found"
    -msgstr "Element nicht gefunden"
    +#: ../../Zotlabs/Module/Admin/Plugins.php:445
    +#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Photos.php:989
    +msgid "Remove"
    +msgstr "Entfernen"
     
    -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228
    -msgid "Title (optional)"
    -msgstr "Titel (optional)"
    +#: ../../Zotlabs/Module/Admin/Profs.php:69
    +msgid "New Profile Field"
    +msgstr "Neues Profilfeld"
     
    -#: ../../Zotlabs/Module/Editblock.php:133
    -msgid "Edit Block"
    -msgstr "Block bearbeiten"
    +#: ../../Zotlabs/Module/Admin/Profs.php:70
    +#: ../../Zotlabs/Module/Admin/Profs.php:90
    +msgid "Field nickname"
    +msgstr "Kurzname für das Feld"
     
    -#: ../../Zotlabs/Module/Common.php:14
    -msgid "No channel."
    -msgstr "Kein Kanal."
    +#: ../../Zotlabs/Module/Admin/Profs.php:70
    +#: ../../Zotlabs/Module/Admin/Profs.php:90
    +msgid "System name of field"
    +msgstr "Systemname des Feldes"
     
    -#: ../../Zotlabs/Module/Common.php:43
    -msgid "Common connections"
    -msgstr "Gemeinsame Verbindungen"
    +#: ../../Zotlabs/Module/Admin/Profs.php:71
    +#: ../../Zotlabs/Module/Admin/Profs.php:91
    +msgid "Input type"
    +msgstr "Art des Inhalts"
     
    -#: ../../Zotlabs/Module/Common.php:48
    -msgid "No connections in common."
    -msgstr "Keine gemeinsamen Verbindungen."
    +#: ../../Zotlabs/Module/Admin/Profs.php:72
    +#: ../../Zotlabs/Module/Admin/Profs.php:92
    +msgid "Field Name"
    +msgstr "Feldname"
     
    -#: ../../Zotlabs/Module/Connections.php:56
    -#: ../../Zotlabs/Module/Connections.php:161
    -#: ../../Zotlabs/Module/Connections.php:242
    -msgid "Blocked"
    -msgstr "Blockiert"
    +#: ../../Zotlabs/Module/Admin/Profs.php:72
    +#: ../../Zotlabs/Module/Admin/Profs.php:92
    +msgid "Label on profile pages"
    +msgstr "Bezeichnung auf Profilseiten"
     
    -#: ../../Zotlabs/Module/Connections.php:61
    -#: ../../Zotlabs/Module/Connections.php:168
    -#: ../../Zotlabs/Module/Connections.php:241
    -msgid "Ignored"
    -msgstr "Ignoriert"
    +#: ../../Zotlabs/Module/Admin/Profs.php:73
    +#: ../../Zotlabs/Module/Admin/Profs.php:93
    +msgid "Help text"
    +msgstr "Hilfetext"
     
    -#: ../../Zotlabs/Module/Connections.php:66
    -#: ../../Zotlabs/Module/Connections.php:182
    -#: ../../Zotlabs/Module/Connections.php:240
    -msgid "Hidden"
    -msgstr "Versteckt"
    +#: ../../Zotlabs/Module/Admin/Profs.php:73
    +#: ../../Zotlabs/Module/Admin/Profs.php:93
    +msgid "Additional info (optional)"
    +msgstr "Zusätzliche Informationen (optional)"
     
    -#: ../../Zotlabs/Module/Connections.php:71
    -#: ../../Zotlabs/Module/Connections.php:175
    -#: ../../Zotlabs/Module/Connections.php:239
    -msgid "Archived"
    -msgstr "Archiviert"
    +#: ../../Zotlabs/Module/Admin/Profs.php:74
    +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Filer.php:53
    +#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104
    +#: ../../include/text.php:972 ../../include/text.php:984
    +#: ../../include/widgets.php:201
    +msgid "Save"
    +msgstr "Speichern"
     
    -#: ../../Zotlabs/Module/Connections.php:76
    -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116
    -#: ../../include/conversation.php:1535
    -msgid "New"
    -msgstr "Neu"
    +#: ../../Zotlabs/Module/Admin/Profs.php:83
    +msgid "Field definition not found"
    +msgstr "Feld-Definition nicht gefunden"
     
    -#: ../../Zotlabs/Module/Connections.php:138
    -msgid "New Connections"
    -msgstr "Neue Verbindungen"
    +#: ../../Zotlabs/Module/Admin/Profs.php:89
    +msgid "Edit Profile Field"
    +msgstr "Profilfeld bearbeiten"
     
    -#: ../../Zotlabs/Module/Connections.php:141
    -msgid "Show pending (new) connections"
    -msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen"
    +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564
    +msgid "Profile Fields"
    +msgstr "Profil Felder"
     
    -#: ../../Zotlabs/Module/Connections.php:145
    -#: ../../Zotlabs/Module/Profperm.php:144
    -msgid "All Connections"
    -msgstr "Alle Verbindungen"
    +#: ../../Zotlabs/Module/Admin/Profs.php:148
    +msgid "Basic Profile Fields"
    +msgstr "Notwendige Profil Felder"
     
    -#: ../../Zotlabs/Module/Connections.php:148
    -msgid "Show all connections"
    -msgstr "Alle Verbindungen anzeigen"
    +#: ../../Zotlabs/Module/Admin/Profs.php:149
    +msgid "Advanced Profile Fields"
    +msgstr "Erweiterte Profil Felder"
     
    -#: ../../Zotlabs/Module/Connections.php:164
    -msgid "Only show blocked connections"
    -msgstr "Nur blockierte Verbindungen anzeigen"
    +#: ../../Zotlabs/Module/Admin/Profs.php:149
    +msgid "(In addition to basic fields)"
    +msgstr "(zusätzlich zu notwendige Felder)"
     
    -#: ../../Zotlabs/Module/Connections.php:171
    -msgid "Only show ignored connections"
    -msgstr "Nur ignorierte Verbindungen anzeigen"
    +#: ../../Zotlabs/Module/Admin/Profs.php:151
    +msgid "All available fields"
    +msgstr "Alle verfügbaren Felder"
     
    -#: ../../Zotlabs/Module/Connections.php:178
    -msgid "Only show archived connections"
    -msgstr "Nur archivierte Verbindungen anzeigen"
    +#: ../../Zotlabs/Module/Admin/Profs.php:152
    +msgid "Custom Fields"
    +msgstr "Benutzerdefinierte Felder"
     
    -#: ../../Zotlabs/Module/Connections.php:185
    -msgid "Only show hidden connections"
    -msgstr "Nur versteckte Verbindungen anzeigen"
    +#: ../../Zotlabs/Module/Admin/Profs.php:156
    +msgid "Create Custom Field"
    +msgstr "Erstelle benutzerdefiniertes Feld"
     
    -#: ../../Zotlabs/Module/Connections.php:238
    -msgid "Pending approval"
    -msgstr "Wartet auf Genehmigung"
    +#: ../../Zotlabs/Module/Admin/Queue.php:36
    +msgid "Queue Statistics"
    +msgstr "Warteschlangenstatistiken"
     
    -#: ../../Zotlabs/Module/Connections.php:254
    -#, php-format
    -msgid "%1$s [%2$s]"
    -msgstr "%1$s [%2$s]"
    +#: ../../Zotlabs/Module/Admin/Queue.php:37
    +msgid "Total Entries"
    +msgstr "Einträge insgesamt"
     
    -#: ../../Zotlabs/Module/Connections.php:255
    -msgid "Edit connection"
    -msgstr "Verbindung bearbeiten"
    +#: ../../Zotlabs/Module/Admin/Queue.php:38
    +msgid "Priority"
    +msgstr "Priorität"
     
    -#: ../../Zotlabs/Module/Connections.php:256
    -msgid "Delete connection"
    -msgstr "Verbindung löschen"
    +#: ../../Zotlabs/Module/Admin/Queue.php:39
    +msgid "Destination URL"
    +msgstr "Ziel-URL"
     
    -#: ../../Zotlabs/Module/Connections.php:265
    -msgid "Channel address"
    -msgstr "Kanaladresse"
    +#: ../../Zotlabs/Module/Admin/Queue.php:40
    +msgid "Mark hub permanently offline"
    +msgstr "Hub als permanent offline markieren"
     
    -#: ../../Zotlabs/Module/Connections.php:267
    -msgid "Network"
    -msgstr "Netzwerk"
    +#: ../../Zotlabs/Module/Admin/Queue.php:41
    +msgid "Empty queue for this hub"
    +msgstr "Warteschlange für diesen Hub leeren"
     
    -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710
    -msgid "Status"
    -msgstr "Status"
    +#: ../../Zotlabs/Module/Admin/Queue.php:42
    +msgid "Last known contact"
    +msgstr "Letzter Kontakt"
     
    -#: ../../Zotlabs/Module/Connections.php:272
    -msgid "Connected"
    -msgstr "Verbunden"
    +#: ../../Zotlabs/Module/Admin/Security.php:77
    +msgid ""
    +"By default, unfiltered HTML is allowed in embedded media. This is inherently"
    +" insecure."
    +msgstr "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher."
     
    -#: ../../Zotlabs/Module/Connections.php:274
    -msgid "Approve connection"
    -msgstr "Verbindung genehmigen"
    +#: ../../Zotlabs/Module/Admin/Security.php:80
    +msgid ""
    +"The recommended setting is to only allow unfiltered HTML from the following "
    +"sites:"
    +msgstr "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:"
     
    -#: ../../Zotlabs/Module/Connections.php:275
    -#: ../../Zotlabs/Module/Admin.php:1037
    -msgid "Approve"
    -msgstr "Genehmigen"
    -
    -#: ../../Zotlabs/Module/Connections.php:276
    -msgid "Ignore connection"
    -msgstr "Verbindung ignorieren"
    -
    -#: ../../Zotlabs/Module/Connections.php:278
    -msgid "Recent activity"
    -msgstr "Kürzliche Aktivitäten"
    +#: ../../Zotlabs/Module/Admin/Security.php:81
    +msgid ""
    +"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/https://vimeo.com/
    https://soundcloud.com/
    " +msgstr "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    " -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 -msgid "Connections" -msgstr "Verbindungen" +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert." -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 -msgid "Search" -msgstr "Suche" +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 +msgid "Security" +msgstr "Sicherheit" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Verbindungen durchsuchen" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Verbindung suchen" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist." -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Setze den \"Transport Security\" HTTP Header" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Cover Foto" +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Setze den \"Content Security Policy\" HTTP Header" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 -msgid "Image resize failed." -msgstr "Bild-Anpassung fehlgeschlagen." +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 -msgid "Image upload failed." -msgstr "Hochladen des Bilds fehlgeschlagen." +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "Nicht erlaubte Domains für E-Mails" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 -msgid "Unable to process image." -msgstr "Kann Bild nicht verarbeiten." +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 -msgid "female" -msgstr "weiblich" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "Kommunikation nur von diesen Seiten erlauben" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s hat ihr %2$s aktualisiert" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben." -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 -msgid "male" -msgstr "männlich" +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "Kommunikation von diesen Seiten blockieren" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s hat sein %2$s aktualisiert" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "Kommunikation nur von diesen Kanälen erlauben" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s hat sein/ihr %2$s aktualisiert" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. " -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 -msgid "cover photo" -msgstr "Cover Foto" +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "Kommunikation von folgenden Kanälen blockieren" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 -msgid "Photo not available." -msgstr "Foto nicht verfügbar." +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links." -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 -msgid "Upload File:" -msgstr "Datei hochladen:" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 -msgid "Select a profile:" -msgstr "Wähle ein Profil:" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." +msgstr "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert." -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Cover Foto hochladen" +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "Eingebettete HTML Inhalte von diesen Seiten blockieren" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 -msgid "or" -msgstr "oder" +#: ../../Zotlabs/Module/Admin/Site.php:135 +msgid "Site settings updated." +msgstr "Site-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "skip this step" -msgstr "diesen Schritt überspringen" +#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2942 +msgid "Default" +msgstr "Standard" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "select a photo from your photo albums" -msgstr "ein Foto aus meinen Fotoalben" +#: ../../Zotlabs/Module/Admin/Site.php:172 +#: ../../Zotlabs/Module/Settings/Display.php:141 +msgid "mobile" +msgstr "mobil" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 -msgid "Crop Image" -msgstr "Bild zuschneiden" +#: ../../Zotlabs/Module/Admin/Site.php:174 +msgid "experimental" +msgstr "experimentell" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." +#: ../../Zotlabs/Module/Admin/Site.php:176 +msgid "unsupported" +msgstr "nicht unterstützt" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 -msgid "Done Editing" -msgstr "Bearbeitung fertigstellen" +#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "No" +msgstr "Nein" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." +#: ../../Zotlabs/Module/Admin/Site.php:222 +msgid "Yes - with approval" +msgstr "Ja - mit Zustimmung" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Bearbeite Beitrag" +#: ../../Zotlabs/Module/Admin/Site.php:223 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "Yes" +msgstr "Ja" -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Kalendereinträge wurden importiert." +#: ../../Zotlabs/Module/Admin/Site.php:228 +msgid "My site is not a public server" +msgstr "Mein Server ist kein öffentlicher Server" -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "Keine Kalendereinträge gefunden." +#: ../../Zotlabs/Module/Admin/Site.php:229 +msgid "My site has paid access only" +msgstr "Meine Seite hat nur bezahlten Zugriff" -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "Termin-Ende liegt vor dem Beginn." +#: ../../Zotlabs/Module/Admin/Site.php:230 +msgid "My site has free access only" +msgstr "Meine Seite hat nur freien Zugriff" -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "Vorschau konnte nicht erzeugt werden." +#: ../../Zotlabs/Module/Admin/Site.php:231 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." +#: ../../Zotlabs/Module/Admin/Site.php:242 ../../Zotlabs/Module/Setup.php:336 +msgid "Basic/Minimal Social Networking" +msgstr "Einfaches/minimales soziales Netzwerken" + +#: ../../Zotlabs/Module/Admin/Site.php:243 ../../Zotlabs/Module/Setup.php:337 +msgid "Standard Configuration (default)" +msgstr "Standardkonfiguration (Standard)" + +#: ../../Zotlabs/Module/Admin/Site.php:244 ../../Zotlabs/Module/Setup.php:338 +msgid "Professional" +msgstr "Professionell" + +#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Beginner/Basic" +msgstr "Anfänger/Basis" + +#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Novice - not skilled but willing to learn" +msgstr "Anfänger - unerfahren, aber bereit zu lernen" + +#: ../../Zotlabs/Module/Admin/Site.php:251 +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Intermediate - somewhat comfortable" +msgstr "Fortgeschritten - relativ komfortabel" + +#: ../../Zotlabs/Module/Admin/Site.php:252 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "Advanced - very comfortable" +msgstr "Fortgeschritten - sehr komfortabel" + +#: ../../Zotlabs/Module/Admin/Site.php:253 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Expert - I can write computer code" +msgstr "Experte - Ich kann Computercode schreiben" + +#: ../../Zotlabs/Module/Admin/Site.php:254 +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Wizard - I probably know more than you do" +msgstr "Zauberer - ich kann wahrscheinlich mehr als Du" + +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 +msgid "Site" +msgstr "Seite" -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Termin nicht gefunden." +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "File upload" +msgstr "Dateiupload" -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "Termin" +#: ../../Zotlabs/Module/Admin/Site.php:270 +msgid "Policies" +msgstr "Richtlinien" -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Termintitel bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Fortgeschritten" -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Termintitel" +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "Site name" +msgstr "Seitenname" -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Benötigt" +#: ../../Zotlabs/Module/Admin/Site.php:277 ../../Zotlabs/Module/Setup.php:359 +msgid "Server Configuration/Role" +msgstr "Serverkonfiguration/Rolle" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Site default technical skill level" +msgstr "Standard-Qualifikationsstufe der Website" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Kategorie bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Dies wird verwendet, um eine Benutzererfahrung passend zur technischen Qualifikationsstufe zu bieten." -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Kategorie" +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Lock the technical skill level setting" +msgstr "Sperre die technische Qualifikationsstufe" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Startdatum und -zeit bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Members can set their own technical comfort level by default" +msgstr "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Startdatum und -zeit" +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Administrator Information" +msgstr "Administrator-Informationen" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Enddatum und -zeit bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Enddatum und -zeit" +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "System language" +msgstr "System-Sprache" -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "System theme" +msgstr "System-Theme" -#: ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Admin/Site.php:287 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Beschreibung bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Mobile system theme" +msgstr "Mobile System-Theme:" -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Beschreibung" +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Theme for mobile devices" +msgstr "Theme für mobile Geräte" -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Ort bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "Allow Feeds as Connections" +msgstr "Feeds als Verbindungen erlauben" -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ort" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "(Heavy system resource usage)" +msgstr "(führt zu hoher Systemlast)" -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Den Termin teilen" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Vorschau" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Does this site allow new member registration?" +msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Weitere Optionen" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Invitation only" +msgstr "Nur mit Einladung" -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Termin bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden." -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Termin löschen" +#: ../../Zotlabs/Module/Admin/Site.php:294 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "Kalender" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Register text" +msgstr "Registrierungstext" -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "Termin gelöscht" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "Termin konnte nicht gelöscht werden" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Abbrechen" +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "Preserve site homepage URL" +msgstr "Homepage-URL schützen" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Diese Webseite ist kein Verzeichnisserver" +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "Accounts abandoned after x days" +msgstr "Konten gelten nach X Tagen als unbenutzt" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "– auswählen –" +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Speichern" +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../Zotlabs/Module/Dreport.php:27 -msgid "Invalid message" -msgstr "Ungültige Beitrags-ID (mid)" +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Verify Email Addresses" +msgstr "E-Mail-Adressen überprüfen" -#: ../../Zotlabs/Module/Dreport.php:59 -msgid "no results" -msgstr "keine Ergebnisse" +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." -#: ../../Zotlabs/Module/Dreport.php:64 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Zustellungsbericht für %1$s" +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Force publish" +msgstr "Veröffentlichung erzwingen" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "Kanal-Sync verarbeitet" +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "zur Warteschlange hinzugefügt" +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Import Public Streams" +msgstr "Öffentliche Beiträge importieren" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "zugestellt" +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert." -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "für Zustellung akzeptiert" +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Login on Homepage" +msgstr "Log-in auf der Startseite" -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "aktualisiert" +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "Aktualisierung ignoriert" +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Enable context help" +msgstr "Kontext-Hilfe aktivieren" -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "Zugriff verweigert" +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird." -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "Empfänger nicht gefunden." +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Directory Server URL" +msgstr "Verzeichnisserver-URL" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "Mail widerrufen" +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Default directory server" +msgstr "Standard-Verzeichnisserver" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "Doppelte Mail erhalten" +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Proxy user" +msgstr "Proxy Benutzer" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "Mail zugestellt" +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Proxy URL" +msgstr "Proxy URL" -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 -msgid "Layout Name" -msgstr "Layout-Name" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Network timeout" +msgstr "Netzwerk-Timeout" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 -msgid "Layout Description (Optional)" -msgstr "Layout-Beschreibung (optional)" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." -#: ../../Zotlabs/Module/Editlayout.php:135 -msgid "Edit Layout" -msgstr "Layout bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Delivery interval" +msgstr "Auslieferung Intervall" -#: ../../Zotlabs/Module/Editwebpage.php:143 -msgid "Page link" -msgstr "Seiten-Link" +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Webseite bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Deliveries per process" +msgstr "Zustellungen pro Prozess" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanal hinzugefügt." +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "Netzwerk" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Poll interval" +msgstr "Abfrageintervall" -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppe wurde erstellt." +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Maximum Load Average" +msgstr "Maximales Load Average" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Gruppe konnte nicht erstellt werden." +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 -msgid "Privacy group not found." -msgstr "Gruppe nicht gefunden." +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Gruppe wurde aktualisiert." +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "0 for no expiration of imported content" +msgstr "0 = keine Löschung importierter Inhalte" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Erstelle eine Gruppe für Kanäle." +#: ../../Zotlabs/Module/Admin/Themes.php:18 +msgid "Theme settings updated." +msgstr "Theme-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Gruppenname:" +#: ../../Zotlabs/Module/Admin/Themes.php:58 +msgid "No themes found." +msgstr "Keine Theme gefunden." -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "Mitglieder sind sichtbar für andere Kanäle" +#: ../../Zotlabs/Module/Admin/Themes.php:114 +msgid "Screenshot" +msgstr "Bildschirmfoto" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Gruppe wurde entfernt." +#: ../../Zotlabs/Module/Admin/Themes.php:121 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 +msgid "Themes" +msgstr "Themes" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Gruppe konnte nicht entfernt werden." +#: ../../Zotlabs/Module/Admin/Themes.php:160 +msgid "[Experimental]" +msgstr "[Experimentell]" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Gruppeneditor" +#: ../../Zotlabs/Module/Admin/Themes.php:161 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Mitglieder" - -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Alle verbundenen Kanäle" - -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." - -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Inhalte von Firefox nach $Projectname teilen" - -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Aktiviert den $Projectname-Provider für firefox" - -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" - -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" - -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." - -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" - -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Suche in der Dokumentation" - -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Hilfe:" - -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 -msgid "Help" -msgstr "Hilfe" - -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "$Projectname-Dokumentation" - -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Zugriff verweigert." - -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Datei nicht gefunden." - -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" - -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" - -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" - -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" - -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" - -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Diese Datei freigeben" - -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "URL zu dieser Datei anzeigen" - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Meine Kontakte über diese Datei benachrichtigen" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Apps" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Element nicht verfügbar." - -#: ../../Zotlabs/Module/Import.php:32 +#: ../../Zotlabs/Module/Import.php:33 #, php-format msgid "Your service plan only allows %d channels." msgstr "Dein Vertrag erlaubt nur %d Kanäle." -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 msgid "Nothing to import." msgstr "Nichts zu importieren." -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 msgid "Unable to download data from old server" msgstr "Daten können vom alten Server nicht heruntergeladen werden" -#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import.php:101 #: ../../Zotlabs/Module/Import_items.php:72 msgid "Imported file is empty." msgstr "Die importierte Datei ist leer." -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 #, php-format msgid "Warning: Database versions differ by %1$d updates." msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 msgid "Cloned channel not found. Import failed." msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../Zotlabs/Module/Import.php:160 +#: ../../Zotlabs/Module/Import.php:163 msgid "No channel. Import failed." msgstr "Kein Kanal. Import fehlgeschlagen." -#: ../../Zotlabs/Module/Import.php:510 +#: ../../Zotlabs/Module/Import.php:520 #: ../../include/Import/import_diaspora.php:142 msgid "Import completed." msgstr "Import abgeschlossen." -#: ../../Zotlabs/Module/Import.php:532 +#: ../../Zotlabs/Module/Import.php:542 msgid "You must be logged in to use this feature." msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." -#: ../../Zotlabs/Module/Import.php:537 +#: ../../Zotlabs/Module/Import.php:547 msgid "Import Channel" msgstr "Kanal importieren" -#: ../../Zotlabs/Module/Import.php:538 +#: ../../Zotlabs/Module/Import.php:548 msgid "" "Use this form to import an existing channel from a different server/hub. You" " may retrieve the channel identity from the old server/hub via the network " "or provide an export file." msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 msgid "File to Upload" msgstr "Hochzuladende Datei:" -#: ../../Zotlabs/Module/Import.php:540 +#: ../../Zotlabs/Module/Import.php:550 msgid "Or provide the old server/hub details" msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" -#: ../../Zotlabs/Module/Import.php:541 +#: ../../Zotlabs/Module/Import.php:551 msgid "Your old identity address (xyz@example.com)" msgstr "Bisherige Kanal-Adresse (xyz@example.com)" -#: ../../Zotlabs/Module/Import.php:542 +#: ../../Zotlabs/Module/Import.php:552 msgid "Your old login email address" msgstr "Deine alte Login-E-Mail-Adresse" -#: ../../Zotlabs/Module/Import.php:543 +#: ../../Zotlabs/Module/Import.php:553 msgid "Your old login password" msgstr "Dein altes Passwort" -#: ../../Zotlabs/Module/Import.php:544 +#: ../../Zotlabs/Module/Import.php:554 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" @@ -1818,446 +1879,692 @@ msgid "" "primary location for files, photos, and media." msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige $Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." -#: ../../Zotlabs/Module/Import.php:545 +#: ../../Zotlabs/Module/Import.php:555 msgid "Make this hub my primary location" msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." -#: ../../Zotlabs/Module/Import.php:546 +#: ../../Zotlabs/Module/Import.php:556 msgid "" "Import existing posts if possible (experimental - limited by available " "memory" msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" -#: ../../Zotlabs/Module/Import.php:547 +#: ../../Zotlabs/Module/Import.php:557 msgid "" "This process may take several minutes to complete. Please submit the form " "only once and leave this page open until finished." msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." - -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Photos.php:509 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Öffentlichen Zugriff verweigert." -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d Bewertung" +msgstr[1] "%d Bewertungen" -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Doppelter Beitrag unterdrückt." +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Geschlecht:" -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Status:" -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Webseite:" -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Alter:" -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/bb2diaspora.php:507 +#: ../../include/channel.php:1049 +msgid "Location:" +msgstr "Ort:" -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 -msgid "Layouts" -msgstr "Layouts" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Beschreibung:" -#: ../../Zotlabs/Module/Layouts.php:183 -msgid "Comanche page description language help" -msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Heimatstadt:" -#: ../../Zotlabs/Module/Layouts.php:187 -msgid "Layout Description" -msgstr "Layout-Beschreibung" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Über:" -#: ../../Zotlabs/Module/Layouts.php:192 -msgid "Download PDL file" -msgstr "PDL-Datei herunterladen" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 +#: ../../include/connections.php:78 ../../include/conversation.php:957 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "Verbinden" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Öffentliches Forum:" -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Schlüsselwörter:" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Vorname" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Nicht vorschlagen" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Nachname" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Gemeinsame Verbindungen:" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Spitzname" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Globales Verzeichnis" -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Voller Name" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "E-Mail" +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Finde" -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Profilfoto" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Ergebnisse:" -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profilfoto 16 px" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Kanal-Vorschläge" -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profilfoto 32 px" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "nächste Seite" -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profilfoto 48 px" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "vorherige Seite" -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profilfoto 64 px" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Sortieroptionen" -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profilfoto 80 px" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "alphabetisch" -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profilfoto 128 px" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Entgegengesetzt alphabetisch" -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Zeitzone" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Neueste zuerst" -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Homepage-URL" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Älteste zuerst" -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Sprache" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Geburtsjahr" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Geburtsmonat" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Geburtstag" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Geburtsdatum" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" +msgstr "Bearbeite Beitrag" -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geschlecht" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Keine Bewertungen" -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Männlich" +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Bewertungen" -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Weiblich" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Bewertung: " -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "Webseite" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Webseite: " -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "Block" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Beschreibung: " -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "Layout" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:95 ../../include/conversation.php:1671 +msgid "Photos" +msgstr "Fotos" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "Menü" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Ungültiges Element." -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "Installation des Elements %s fehlgeschlagen" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "– auswählen –" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Blockiert" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Ungültige Anfrage." +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignoriert" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "Kanal" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Versteckt" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "Sache" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archiviert" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1572 +msgid "New" +msgstr "Neu" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 +msgid "All" +msgstr "Alle" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "Foto" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 -msgid "status" -msgstr "Status" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Alle Verbindungen" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s nicht" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Alle Verbindungen anzeigen" -#: ../../Zotlabs/Module/Like.php:424 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s stimmt %2$ss %3$s zu" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Nur blockierte Verbindungen anzeigen" -#: ../../Zotlabs/Module/Like.php:426 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s lehnt %2$ss %3$s ab" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Nur ignorierte Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Nur archivierte Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Nur versteckte Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Wartet auf Genehmigung" -#: ../../Zotlabs/Module/Like.php:428 +#: ../../Zotlabs/Module/Connections.php:254 #, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s enthält sich zu %2$ss %3$s" +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Like.php:430 +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Verbindung bearbeiten" + +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Verbindung löschen" + +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Kanaladresse" + +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Netzwerk" + +#: ../../Zotlabs/Module/Connections.php:270 +msgid "Status" +msgstr "Status" + +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "Verbunden" + +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Verbindung genehmigen" + +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Verbindung ignorieren" + +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Ignorieren" + +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Kürzliche Aktivitäten" + +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:191 ../../include/text.php:901 +msgid "Connections" +msgstr "Verbindungen" + +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:170 +#: ../../include/acl_selectors.php:174 ../../include/text.php:971 +#: ../../include/text.php:983 ../../include/widgets.php:315 +msgid "Search" +msgstr "Suche" + +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Verbindungen durchsuchen" + +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Verbindung suchen" + +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." + +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Cover Foto" + +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "Bild-Anpassung fehlgeschlagen." + +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "Kann Bild nicht verarbeiten" + +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "Hochladen des Bilds fehlgeschlagen." + +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "Kann Bild nicht verarbeiten." + +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 +msgid "female" +msgstr "weiblich" + +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 #, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s teil" +msgid "%1$s updated her %2$s" +msgstr "%1$s hat ihr %2$s aktualisiert" + +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 +msgid "male" +msgstr "männlich" -#: ../../Zotlabs/Module/Like.php:432 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s nicht teil" +msgid "%1$s updated his %2$s" +msgstr "%1$s hat sein %2$s aktualisiert" -#: ../../Zotlabs/Module/Like.php:434 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" +msgid "%1$s updated their %2$s" +msgstr "%1$s hat sein/ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Action completed." -msgstr "Aktion durchgeführt." +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 +msgid "cover photo" +msgstr "Cover Foto" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Thank you." -msgstr "Vielen Dank." +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto nicht verfügbar." -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "Import abgeschlossen" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Datei hochladen:" -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Beiträge importieren" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Wähle ein Profil:" -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Cover Foto hochladen" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings/Channel.php:399 +msgid "or" +msgstr "oder" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "diesen Schritt überspringen" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Schließe Dich uns auf $Projectname an!" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "ein Foto aus meinen Fotoalben" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Bild zuschneiden" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Bearbeitung fertigstellen" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Element nicht gefunden" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Einladungen senden" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Block-Name" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Link einfügen" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "Deine Nachricht:" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1259 +msgid "Title (optional)" +msgstr "Titel (optional)" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Schließe Dich uns auf $Projectname an!" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Block bearbeiten" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "Layout-Name" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "Layout-Beschreibung (optional)" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "Layout bearbeiten" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oder besuche" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" +msgstr "Seiten-Link" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "Webseite bearbeiten" -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Sichtbar für:" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Name des Menüs" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menütitel" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 +msgid "Menus" +msgstr "Menüs" + +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Löschen" + +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Erstellt" + +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Geändert" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menü nicht gefunden" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menü bearbeiten" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Menü Name" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Menü Titel" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Nicht gefunden." + +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installiert." -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Klon nicht gefunden." +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Fehlerhafte App." -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Code einbetten" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bearbeiten" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synchronisiere Klone" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App erstellen" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Keine Klon-Adressen gefunden." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Name der App" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Klon-Adressen verwalten" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Benötigt" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primär" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Beschreibung" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Löschen" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL zum Icon" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Jetzt synchronisieren" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versions-ID" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Preis der App" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Server nicht gefunden." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" #: ../../Zotlabs/Module/Mail.php:38 msgid "Unable to lookup recipient." @@ -2271,956 +2578,928 @@ msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." msgid "Cannot verify requested channel." msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." -#: ../../Zotlabs/Module/Mail.php:78 +#: ../../Zotlabs/Module/Mail.php:70 msgid "Selected channel has private message restrictions. Send failed." msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." -#: ../../Zotlabs/Module/Mail.php:143 +#: ../../Zotlabs/Module/Mail.php:135 msgid "Messages" msgstr "Nachrichten" -#: ../../Zotlabs/Module/Mail.php:178 +#: ../../Zotlabs/Module/Mail.php:170 msgid "Message recalled." msgstr "Nachricht widerrufen." -#: ../../Zotlabs/Module/Mail.php:191 +#: ../../Zotlabs/Module/Mail.php:183 msgid "Conversation removed." msgstr "Unterhaltung gelöscht." -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" + +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Verfällt YYYY-MM-DD HH;MM" -#: ../../Zotlabs/Module/Mail.php:234 +#: ../../Zotlabs/Module/Mail.php:226 msgid "Requested channel is not in this network" msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." -#: ../../Zotlabs/Module/Mail.php:242 +#: ../../Zotlabs/Module/Mail.php:234 msgid "Send Private Message" msgstr "Private Nachricht senden" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 msgid "To:" msgstr "An:" -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 msgid "Subject:" msgstr "Betreff:" -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1243 msgid "Attach file" msgstr "Datei anhängen" -#: ../../Zotlabs/Module/Mail.php:253 +#: ../../Zotlabs/Module/Mail.php:245 msgid "Send" msgstr "Absenden" -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1288 msgid "Set expiration date" msgstr "Verfallsdatum" -#: ../../Zotlabs/Module/Mail.php:340 +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 +#: ../../include/conversation.php:1293 +msgid "Encrypt text" +msgstr "Text verschlüsseln" + +#: ../../Zotlabs/Module/Mail.php:332 msgid "Delete message" msgstr "Nachricht löschen" -#: ../../Zotlabs/Module/Mail.php:341 +#: ../../Zotlabs/Module/Mail.php:333 msgid "Delivery report" msgstr "Zustellungsbericht" -#: ../../Zotlabs/Module/Mail.php:342 +#: ../../Zotlabs/Module/Mail.php:334 msgid "Recall message" msgstr "Nachricht widerrufen" -#: ../../Zotlabs/Module/Mail.php:344 +#: ../../Zotlabs/Module/Mail.php:336 msgid "Message has been recalled." msgstr "Die Nachricht wurde widerrufen." -#: ../../Zotlabs/Module/Mail.php:361 +#: ../../Zotlabs/Module/Mail.php:353 msgid "Delete Conversation" msgstr "Unterhaltung löschen" -#: ../../Zotlabs/Module/Mail.php:363 +#: ../../Zotlabs/Module/Mail.php:355 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." -#: ../../Zotlabs/Module/Mail.php:367 +#: ../../Zotlabs/Module/Mail.php:359 msgid "Send Reply" msgstr "Antwort senden" -#: ../../Zotlabs/Module/Mail.php:372 +#: ../../Zotlabs/Module/Mail.php:364 #, php-format msgid "Your message for %s (%s):" msgstr "Deine Nachricht für %s (%s):" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Aktueller Kanal" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standard Kanal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Zum Standard machen" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Element nicht verfügbar." -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Inhalte von Firefox nach $Projectname teilen" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Delegierte Kanäle" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Aktiviert den $Projectname-Provider für firefox" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." +#: ../../Zotlabs/Module/Help.php:27 +msgid "Documentation Search" +msgstr "Suche in der Dokumentation" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." +#: ../../Zotlabs/Module/Help.php:57 +msgid "$Projectname Documentation" +msgstr "$Projectname-Dokumentation" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Lostpass.php:44 +#: ../../Zotlabs/Module/Home.php:92 #, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" +msgid "Welcome to %s" +msgstr "Willkommen auf %s" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Sichtbar für:" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Zugriff verweigert." -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Datei nicht gefunden." -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" +#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 +#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Photos.php:658 +#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Module/Chat.php:234 +#: ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Berechtigungen" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-Mail Adresse" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Zurücksetzen" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Diese Datei freigeben" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Name des Menüs" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "URL zu dieser Datei anzeigen" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Meine Kontakte über diese Datei benachrichtigen" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menütitel" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Server nicht gefunden." -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Fortfahren" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Lesezeichen erlauben" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Absenden und fortfahren" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menüs" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppe wurde erstellt." -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menü nicht gefunden" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Gruppe konnte nicht erstellt werden." -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menü bearbeiten" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3950 +msgid "Privacy group not found." +msgstr "Gruppe nicht gefunden." -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Gruppe wurde aktualisiert." -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Menü Name" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Erstelle eine Gruppe für Kanäle." -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Gruppenname:" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Menü Titel" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "Mitglieder sind sichtbar für andere Kanäle" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Gruppe wurde entfernt." -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Gruppe konnte nicht entfernt werden." -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Nicht gefunden." +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Gruppeneditor" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Mitglieder" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Laune" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Alle verbundenen Kanäle" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" +#: ../../Zotlabs/Module/Webpages.php:52 +msgid "Import Webpage Elements" +msgstr "Webseitenelemente importieren" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import selected" +msgstr "Import ausgewählt" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessiert sich für:" +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" +msgstr "Webseitenelemente exportieren" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Keine Übereinstimmungen" +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" +msgstr "Exportieren ausgewählt" -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "Gruppe nicht gefunden" +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:109 ../../include/conversation.php:1724 +msgid "Webpages" +msgstr "Webseiten" -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "Kanal nicht gefunden" +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1078 +#: ../../include/conversation.php:1231 +msgid "Share" +msgstr "Teilen" -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "Forum" +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Events.php:680 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:59 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Ansicht" -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:721 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 +msgid "Preview" +msgstr "Vorschau" -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "Gruppe ist leer" +#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Aktionen" -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Gruppe:" +#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Seiten-Link" -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Seitentitel" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "Ungültiger Dateityp." -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Fehler beim Öffnen der ZIP-Datei" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Element konnte nicht erstellt werden." +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "Ungültiger Ordnerpfad." -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "Keine Webseitenelemente erkannt." -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "Import abgeschlossen." -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webseite" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "Block" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Name des Links" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "Layout" -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Ziel des Links oder Untermenüs" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "Menü" -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Magic-Auth verwenden, falls verfügbar" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s fehlgeschlagen" -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Import abgeschlossen" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Beiträge importieren" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Absenden und fertigstellen" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Absenden und fortfahren" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menü:" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Schließe Dich uns auf $Projectname an!" -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Ziel des Links" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menü bearbeiten" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Bestandteil löschen" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Neues Bestandteil" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Einladungen senden" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oder besuche" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Klon nicht gefunden." -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Link Text" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Name oder Titel" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Synchronisiere Klone" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Keine Klon-Adressen gefunden." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Klon-Adressen verwalten" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaltyp und Privatspäre-Einstellungen" +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 +#: ../../Zotlabs/Module/Pubsites.php:51 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ort" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primär" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Mehr Informationen über Rollen" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Jetzt synchronisieren" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Einen neuen Kanal anlegen" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" -#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Locs.php:124 msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" +msgstr "Gruppe nicht gefunden" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Verwerfen" +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" +msgstr "Kanal nicht gefunden" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" +msgstr "Forum" -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Profilfotos" +#: ../../Zotlabs/Module/Network.php:218 +msgid "Privacy group is empty" +msgstr "Gruppe ist leer" -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." -msgstr "Album nicht gefunden." +#: ../../Zotlabs/Module/Network.php:227 +msgid "Privacy group: " +msgstr "Gruppe:" -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" -msgstr "Album löschen" +#: ../../Zotlabs/Module/Network.php:253 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." -#: ../../Zotlabs/Module/Photos.php:153 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 -msgid "Delete Photo" -msgstr "Foto löschen" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Ungültige Anfrage." -#: ../../Zotlabs/Module/Photos.php:621 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "Kanal" -#: ../../Zotlabs/Module/Photos.php:624 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "Sache" -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" -msgstr "Fotos hochladen" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Enter an album name" -msgstr "Namen für ein neues Album eingeben" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" -msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1991 +msgid "photo" +msgstr "Foto" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" -msgstr "Einen Statusbeitrag für diesen Upload erzeugen" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1997 +msgid "status" +msgstr "Status" -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" -msgstr "Beschriftung (optional):" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:958 +#: ../../include/conversation.php:123 ../../include/text.php:1994 +msgid "event" +msgstr "Termin" -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" -msgstr "Beschreibung (optional):" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s" -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s nicht" -#: ../../Zotlabs/Module/Photos.php:743 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s stimmt %2$ss %3$s zu" -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s lehnt %2$ss %3$s ab" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s enthält sich zu %2$ss %3$s" -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 -msgid "View Photo" -msgstr "Foto ansehen" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 -msgid "Edit Album" -msgstr "Album bearbeiten" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s nicht teil" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Aktion durchgeführt." -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Vielen Dank." -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" -msgstr "Als Titelbild verwenden" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" -msgstr "Privates Foto" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Neu anlegen" -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Entfernen" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" +msgstr "Kanal-Manager" -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" -msgstr "Foto bearbeiten" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Aktueller Kanal" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standard Kanal" -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Zum Standard machen" -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d neue Nachrichten" -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" -msgstr "Bildunterschrift" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d neue Vorstellungen" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Delegierte Kanäle" -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Element konnte nicht erstellt werden." -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 -msgid "Please wait" -msgstr "Bitte warten" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:486 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Das bist Du" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Name des Links" -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Kommentar" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Likes" -msgstr "Gefällt mir" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Dislikes" -msgstr "Gefällt mir nicht" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menü:" -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 -msgid "View all" -msgstr "Alles anzeigen" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Ziel des Links" -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Menü bearbeiten" -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Gefällt nicht" -msgstr[1] "Gefällt nicht" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" -msgstr "Fotowerkzeuge" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Bestandteil löschen" -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Neues Bestandteil" -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" -msgstr "Karte" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 -msgid "Close" -msgstr "Schließen" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Album" -msgstr "Album ansehen" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" -msgstr "Neueste Fotos" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "l, d. F, G:i \\U\\h\\r" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Link Text" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[Heute]" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Bewertung" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Webseite:" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "Login fehlgeschlagen." +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurationseditor" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" -#: ../../Zotlabs/Module/Pconfig.php:49 +#: ../../Zotlabs/Module/Lostpass.php:67 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout aktualisiert." +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout nicht gefunden." +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulname:" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Layout-Hilfe" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Anstupsen" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Jemanden anstupsen" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Jemanden anstupsen, knuffen oder sonstiges" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Empfänger" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-Mail Adresse" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Zurücksetzen" -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Laune" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 @@ -3279,6 +3558,10 @@ msgstr "Religion" msgid "Political Views" msgstr "Politische Ansichten" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geschlecht" + #: ../../Zotlabs/Module/Profiles.php:458 msgid "Sexual Preference" msgstr "Sexuelle Orientierung" @@ -3308,7 +3591,7 @@ msgid "View this profile" msgstr "Dieses Profil ansehen" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 +#: ../../include/channel.php:981 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" @@ -3320,7 +3603,7 @@ msgstr "Profilwerkzeuge" msgid "Change cover photo" msgstr "Titelbild ändern" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 msgid "Change profile photo" msgstr "Profilfoto ändern" @@ -3340,8 +3623,8 @@ msgstr "Dieses Profil löschen" msgid "Add profile things" msgstr "Sachen zum Profil hinzufügen" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1563 +#: ../../include/widgets.php:105 msgid "Personal" msgstr "Persönlich" @@ -3425,6 +3708,10 @@ msgstr "Seit (Datum)" msgid "Tell us about yourself" msgstr "Erzähle uns ein wenig von Dir" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Homepage-URL" + #: ../../Zotlabs/Module/Profiles.php:732 msgid "Hometown" msgstr "Heimatort" @@ -3481,1404 +3768,1464 @@ msgstr "Kontaktinformation und soziale Netzwerke" msgid "My other channels" msgstr "Meine anderen Kanäle" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 msgid "Profile Image" msgstr "Profilfoto:" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:91 +#: ../../include/channel.php:959 msgid "Edit Profiles" msgstr "Profile bearbeiten" -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Profil" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Sichtbar für" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessiert sich für:" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Keine Übereinstimmungen" -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Hub-URL" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Gehen Sie zu Ihrer App zurück und tragen Sie diesen Sicherheitscode ein:" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Zugriffstyp" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiken" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Kalendereinträge wurden importiert." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Keine Kalendereinträge gefunden." -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Bewertungen" +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Bewerten" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Vorschau konnte nicht erzeugt werden." -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Webseite:" +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Titel und Startzeit des Termins sind erforderlich." -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Termin nicht gefunden." -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" +msgstr "Termintitel bearbeiten" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" +msgstr "Termintitel" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Keine Bewertungen" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Bewertung: " +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" +msgstr "Kategorie bearbeiten" -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Webseite: " +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" +msgstr "Kategorie" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beschreibung: " +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" +msgstr "Startdatum und -zeit bearbeiten" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Theme-Einstellungen aktualisiert." +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" +msgstr "Startdatum und -zeit" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "Anzahl der Konten" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" +msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "Anzahl der blockierten Konten" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" +msgstr "Enddatum und -zeit bearbeiten" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "Anzahl der abgelaufenen Konten" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" +msgstr "Enddatum und -zeit" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "Anzahl der ablaufenden Konten" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "Anzahl der Kanäle" +#: ../../Zotlabs/Module/Events.php:463 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "Anzahl der primären Kanäle" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" +msgstr "Beschreibung bearbeiten" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "Anzahl der Klone" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" +msgstr "Ort bearbeiten" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" +msgstr "Den Termin teilen" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Die installierte Software sollte aktualisiert werden" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1263 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Administration" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" +msgstr "Weitere Optionen" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Zusammenfassung" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l, j. F" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Registrierte Konten" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" +msgstr "Termin bearbeiten" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" +msgstr "Termin löschen" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Registrierte Kanäle" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1762 +msgid "Link to Source" +msgstr "Link zur Quelle" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" +msgstr "Kalender" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Version" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Termin bearbeiten" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Repository-Version (master)" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Termin anlegen" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Repository-Version (dev)" +#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Previous" +msgstr "Voriges" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cal.php:333 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Photos.php:949 +msgid "Next" +msgstr "Nächste" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 -msgid "Default" -msgstr "Standard" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Exportieren" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 -msgid "mobile" -msgstr "mobil" +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" +msgstr "Monat" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "experimentell" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Woche" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "nicht unterstützt" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Tag" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Heute" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Mein Server ist kein öffentlicher Server" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Termin gelöscht" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "Meine Seite hat nur bezahlten Zugriff" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Termin konnte nicht gelöscht werden" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "Meine Seite hat nur freien Zugriff" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 -msgid "Site" -msgstr "Seite" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registrierung" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "Doppelter Beitrag unterdrückt." -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Dateiupload" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Richtlinien" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Fortgeschritten" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Seitenname" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" +msgstr "Einen neuen Kanal anlegen" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Administrator-Informationen" +#: ../../Zotlabs/Module/New_channel.php:141 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/New_channel.php:142 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." +"or import an existing channel from another location." +msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "System-Sprache" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "hat Dir eine private Nachricht geschickt" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "System-Theme" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "l, d. F, G:i \\U\\h\\r" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Mobile System-Theme:" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[Heute]" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ungültiger Anfrage-Identifikator." -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Verwerfen" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" +msgstr "Anstupsen" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Jemanden anstupsen" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Nur mit Einladung" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden." +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Jemanden anstupsen, knuffen oder sonstiges" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Empfänger" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Registrierungstext" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Server-Einrichtung" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." +msgstr "Kann nicht mit der Datenbank verbinden." -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Setup.php:192 msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." - -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Homepage-URL schützen" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." +msgstr "Konnte Tabelle nicht erstellen." -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." +msgstr "Die Datenbank Deines Hubs wurde installiert." -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Setup.php:208 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Lies die Datei \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" +msgstr "Systemprüfung" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" +msgstr "Nochmal prüfen" + +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" +msgstr "Datenbankverbindung" -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Setup.php:296 msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Nicht erlaubte Domains für E-Mails" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Setup.php:298 msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "E-Mail-Adressen überprüfen" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" +msgstr "Datenbankservername" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" +msgstr "Standard ist 127.0.0.1" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" +msgstr "Datenbankport" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" +msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Öffentliche Beiträge importieren" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" +msgstr "Datenbank-Benutzername" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert." +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" +msgstr "Datenbank-Passwort" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "Log-in auf der Startseite" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" +msgstr "Datenbankname" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" +msgstr "Datenbanktyp" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "Kontext-Hilfe aktivieren" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" +msgstr "E-Mail Adresse des Seiten-Administrators" -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird." +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "Verzeichnisserver-URL" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" +msgstr "Webseiten-URL" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Standard-Verzeichnisserver" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." +msgstr "Nutze wenn möglich eine SSL-URL (https)." -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Proxy Benutzer" +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" +msgstr "Standard-Zeitzone für Deinen Server" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "Proxy URL" +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" +msgstr "Seiteneinstellungen" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." +msgstr "PHP-Version 5.5 oder höher ist erforderlich." -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" +msgstr "PHP-Version" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Setup.php:417 msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Zustellungen pro Prozess" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" +msgstr "PHP-Pfad zu ausführbarer Datei" -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Setup.php:421 msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Abfrageintervall" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" +msgstr "PHP-Befehlszeile" -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Setup.php:435 msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." +msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen" +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "0 = keine Löschung importierter Inhalte" +#: ../../Zotlabs/Module/Setup.php:457 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "Off" -msgstr "Aus" +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Du kannst diese Einstellungen in der php.ini des Servers ändern." -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "On" -msgstr "An" +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" +msgstr "PHP-Hochladebeschränkungen" -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Blockiere die Funktion %s" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Zusätzliche Funktionen verwalten" +#: ../../Zotlabs/Module/Setup.php:488 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Kein Server gefunden" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" +msgstr "Verschlüsselungsschlüssel erzeugen" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" +msgstr "libCurl-PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "für Kanal" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" +msgstr "GD-Grafik-PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "auf Server" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" +msgstr "OpenSSL-PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Server" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" +msgstr "mysqli oder postgres PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher." +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" +msgstr "mb_string-PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" +msgstr "xml-PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/https://vimeo.com/
    https://soundcloud.com/
    " -msgstr "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    " +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" +msgstr "Apache-mod_rewrite-Modul" -#: ../../Zotlabs/Module/Admin.php:751 +#: ../../Zotlabs/Module/Setup.php:512 msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert." - -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 -msgid "Security" -msgstr "Sicherheit" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist." +#: ../../Zotlabs/Module/Setup.php:518 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Setze den \"Transport Security\" HTTP Header" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Setze den \"Content Security Policy\" HTTP Header" +#: ../../Zotlabs/Module/Setup.php:530 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Kommunikation nur von diesen Seiten erlauben" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Setup.php:538 msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben." +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Kommunikation von diesen Seiten blockieren" +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Kommunikation nur von diesen Kanälen erlauben" +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Setup.php:564 msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. " - -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Kommunikation von folgenden Kanälen blockieren" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links." +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst." -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert." +#: ../../Zotlabs/Module/Setup.php:567 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Eingebettete HTML Inhalte von diesen Seiten blockieren" +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php ist beschreibbar" -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" +#: ../../Zotlabs/Module/Setup.php:584 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." -#: ../../Zotlabs/Module/Admin.php:795 +#: ../../Zotlabs/Module/Setup.php:585 #, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses." -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../Zotlabs/Module/Admin.php:802 +#: ../../Zotlabs/Module/Setup.php:587 #, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." -#: ../../Zotlabs/Module/Admin.php:805 +#: ../../Zotlabs/Module/Setup.php:590 #, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." +msgid "%s is writable" +msgstr "%s ist beschreibbar" -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." +#: ../../Zotlabs/Module/Setup.php:606 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses" -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" +msgstr "store ist schreibbar" -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Warteschlangenstatistiken" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Einträge insgesamt" +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer $Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Priorität" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "Ziel-URL" +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Hub als permanent offline markieren" +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern." -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Warteschlange für diesen Hub leeren" +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" +msgstr "SSL Zertifikatverifizierung" -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Letzter Kontakt" +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s Konto blockiert/freigegeben" -msgstr[1] "%s Konten blockiert/freigegeben" +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" +msgstr "Url rewrite funktioniert" -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s Konto gelöscht" -msgstr[1] "%s Konten gelöscht" +#: ../../Zotlabs/Module/Setup.php:671 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Konto nicht gefunden" +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." +msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "Konto '%s' gelöscht" +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " +msgstr "

    Was als Nächstes

    " -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "Konto '%s' blockiert" +#: ../../Zotlabs/Module/Setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Konto '%s' freigegeben" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 -msgid "Accounts" -msgstr "Konten" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "Alle auswählen" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "Registrierungen warten auf Bestätigung" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Antragsdatum" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Profil" -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Keine Registrierungen." +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Verweigern" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Sichtbar für" -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Alle Kanäle" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Registrierungs-Datum" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Letzte Anmeldung" +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Verfällt" +#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "Apps" -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Service-Klasse" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" -#: ../../Zotlabs/Module/Admin.php:1054 +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" + +#: ../../Zotlabs/Module/Siteinfo.php:49 msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." -#: ../../Zotlabs/Module/Admin.php:1055 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Schlagwort: " -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s Kanal gesperrt/freigegeben" -msgstr[1] "%s Kanäle gesperrt/freigegeben" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Letzter Hintergrundabruf:" -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "Code für %s Kanal gesperrt/freigegeben" -msgstr[1] "Code für %s Kanäle gesperrt/freigegeben" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Aktuelles Load Average:" -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s Kanal gelöscht" -msgstr[1] "%s Kanäle gelöscht" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Code für Kanal '%s' freigegeben" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Administratoren" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Code für Kanal '%s' gesperrt" +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2308 +msgid "Blocks" +msgstr "Blöcke" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 -msgid "Channels" -msgstr "Kanäle" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titel des Blocks" -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Sperren" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2310 +msgid "Layouts" +msgstr "Layouts" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "Freigeben" +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:164 ../../include/help.php:44 +#: ../../include/help.php:49 +msgid "Help" +msgstr "Hilfe" -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Code erlauben" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "Code sperren" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Layout-Beschreibung" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 -msgid "Channel" -msgstr "Kanal" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "PDL-Datei herunterladen" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Profilfotos" -#: ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Profile_photo.php:186 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Berechtigung verweigert." -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-In %s aktiviert." +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 +msgid "Import" +msgstr "Import" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Deaktivieren" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Kein Kanal." -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Aktivieren" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 -msgid "Plugins" -msgstr "Plug-Ins" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Umschalten" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "Netzwerk" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 -msgid "Settings" -msgstr "Einstellungen" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Autor: " +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Betreuer:" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Minimale Version des Projekts:" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Maximale Version des Projekts:" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Zugriffstyp" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Minimale PHP Version:" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Benötigt:" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiken" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Abgeschaltet - Versionsinkompatibilität" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Gib die öffentliche Git-Repository-URL des Plugin-Repository an." +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" +msgstr "Bewerten" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "Plugin-Repository Git URL" +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Layout aktualisiert." -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "Benutzerdefinierter Repository-Name" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funktion deaktiviert." -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "(optional)" +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" +msgstr "Systemseitenbeschreibung bearbeiten" -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "Plugin-Repository herunterladen" +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." +msgstr "Layout nicht gefunden." -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "Neues Repository installieren" +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" +msgstr "Modulname:" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 -msgid "Install" -msgstr "Installieren" +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" +msgstr "Layout-Hilfe" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "Repositorien verwalten" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Konnte nicht auf den Kontakteintrag zugreifen." -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "Installierte Plugin-Repositorien" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Gewähltes Profil nicht gefunden." -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "Ein neues Plugin-Repository installieren" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Verbindung aktualisiert." -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 -msgid "Update" -msgstr "Aktualisieren" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Konnte den Verbindungseintrag nicht aktualisieren." -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "Zweig/Branch wechseln" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "ist jetzt verbunden mit" -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "Keine Theme gefunden." +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Bildschirmfoto" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 -msgid "Themes" -msgstr "Themes" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "Konnte die Adressbuch-Parameter nicht setzen." -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Experimentell]" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "Verbindung wurde gelöscht." -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:89 ../../include/conversation.php:955 +msgid "View Profile" +msgstr "Profil ansehen" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Protokoll-Einstellungen aktualisiert." +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "%ss Profil ansehen" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 -msgid "Logs" -msgstr "Protokolle" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Zugriffsrechte neu laden" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Leeren" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Debugging" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Kürzliche Aktivitäten" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "Protokolldatei" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis." +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Protokollstufe" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "Die Verbindung ist geblockt!" -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Neues Profilfeld" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Nicht ignorieren" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Kurzname für das Feld" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Systemname des Feldes" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "Die Verbindung wird ignoriert!" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Art des Inhalts" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Feldname" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archivieren" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Bezeichnung auf Profilseiten" +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Hilfetext" +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "Die Verbindung ist archiviert!" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Zusätzliche Informationen (optional)" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "Wieder sichtbar machen" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Feld-Definition nicht gefunden" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Verstecken" -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Profilfeld bearbeiten" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 -msgid "Profile Fields" -msgstr "Profil Felder" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "Die Verbindung ist versteckt!" -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "Notwendige Profil Felder" +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Verbindung löschen" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "Erweiterte Profil Felder" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 +msgid "Me" +msgstr "Ich" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "(zusätzlich zu notwendige Felder)" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 +msgid "Family" +msgstr "Familie" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "Alle verfügbaren Felder" +#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Settings/Channel.php:61 +#: ../../Zotlabs/Module/Settings/Channel.php:65 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:80 +#: ../../include/selectors.php:123 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/widgets.php:531 +msgid "Friends" +msgstr "Freunde" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "Benutzerdefinierte Felder" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 +msgid "Acquaintances" +msgstr "Bekannte" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "Erstelle benutzerdefiniertes Feld" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Verbindung genehmigen" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installiert." +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Fehlerhafte App." +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Beziehung festlegen" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Code einbetten" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Profil festlegen" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bearbeiten" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Beziehung und Profile festlegen" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App erstellen" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "Keine" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Name der App" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 +msgid "Connection Default Permissions" +msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 +#, php-format +msgid "Connection: %s" +msgstr "Verbindung: %s" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL zum Icon" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist." -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "Die Hauptadresse der Verbindung ist" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versions-ID" +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Verfügbare Klone:" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Preis der App" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet." -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Verbindungswerkzeuge" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Lesezeichenordner wählen" +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Lesezeichen speichern" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Verschieben, um Deine Bewertung einzustellen" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL des Lesezeichens" +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Optional kannst Du Deine Bewertung begründen" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Benutzerdefinierter Filter" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Nur Beiträge mit diesem Text importieren" -#: ../../Zotlabs/Module/Register.php:55 +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren." -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "Beiträge mit diesem Text nicht importieren" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "Diese Information ist öffentlich!" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Verbindung wartet auf Bestätigung" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Die Registrierung auf diesem Hub ist nicht möglich." +#: ../../Zotlabs/Module/Connedit.php:778 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" +msgstr "geerbt" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator." +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registriere Dich auf einem der anderen verbundenen Hubs." +#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Their Settings" +msgstr "Deren Einstellungen" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." +#: ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "My Settings" +msgstr "Meine Einstellungen" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" +#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 +msgid "Individual Permissions" +msgstr "Individuelle Zugriffsrechte" -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" +#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden." -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Letzte Aktualisierung:" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Passwort" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Lesezeichenordner wählen" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Lesezeichen speichern" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL des Lesezeichens" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "nein" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "ja" +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "Diese Webseite ist kein Verzeichnisserver" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 -msgid "Register" -msgstr "Registrieren" +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" + +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Fortfahren und Deinen ersten Kanal anlegen" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Authentifizieren" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Bitte melde dich an." -#: ../../Zotlabs/Module/Removeaccount.php:34 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." -#: ../../Zotlabs/Module/Removeaccount.php:56 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" msgstr "Dieses Konto löschen" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "WARNING: " msgstr "WARNUNG: " -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This action is permanent and can not be undone!" msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 msgid "Please enter your password for verification:" msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Standardmäßig werden nur die Kanalklone auf diesem $Projectname-Hub aus dem Netzwerk entfernt" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:128 msgid "Remove Account" msgstr "Konto entfernen" -#: ../../Zotlabs/Module/Removeme.php:33 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." -#: ../../Zotlabs/Module/Removeme.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This channel will be completely removed from the network. " msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "Remove this channel and all its clones from the network" msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:544 msgid "Remove Channel" msgstr "Kanal löschen" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanal exportieren" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Kanal und Inhalte exportieren" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exportiert die Beiträge des angegebenen Jahres." -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authentifizieren" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." + +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." + +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." + +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -4890,1479 +5237,1390 @@ msgstr "Beiträge mit Schlagwort: %s" msgid "Search results for: %s" msgstr "Suchergebnisse für: %s" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Keine Dienstklassenbeschränkungen gefunden." - -#: ../../Zotlabs/Module/Settings.php:69 -msgid "Name is required" -msgstr "Name ist erforderlich" - -#: ../../Zotlabs/Module/Settings.php:73 -msgid "Key and Secret are required" -msgstr "Schlüssel und Geheimnis werden benötigt" - -#: ../../Zotlabs/Module/Settings.php:225 -msgid "Not valid email." -msgstr "Keine gültige E-Mail Adresse." - -#: ../../Zotlabs/Module/Settings.php:228 -msgid "Protected email address. Cannot change to that email." -msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." - -#: ../../Zotlabs/Module/Settings.php:237 -msgid "System failure storing new email. Please try again." -msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." - -#: ../../Zotlabs/Module/Settings.php:254 -msgid "Password verification failed." -msgstr "Passwortüberprüfung fehlgeschlagen." - -#: ../../Zotlabs/Module/Settings.php:261 -msgid "Passwords do not match. Password unchanged." -msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." - -#: ../../Zotlabs/Module/Settings.php:265 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." - -#: ../../Zotlabs/Module/Settings.php:279 -msgid "Password changed." -msgstr "Kennwort geändert." - -#: ../../Zotlabs/Module/Settings.php:281 -msgid "Password update failed. Please try again." -msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." - -#: ../../Zotlabs/Module/Settings.php:525 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 -msgid "Add application" -msgstr "Anwendung hinzufügen" - -#: ../../Zotlabs/Module/Settings.php:592 -msgid "Name of application" -msgstr "Name der Anwendung" - -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Beiträge und Kommentare" -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Nur Beiträge" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 -msgid "Redirect" -msgstr "Umleitung" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." -#: ../../Zotlabs/Module/Settings.php:595 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Keine Dienstklassenbeschränkungen gefunden." -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 -msgid "Icon url" -msgstr "Symbol-URL" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Sache aktualisiert" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Optional" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" -#: ../../Zotlabs/Module/Settings.php:607 -msgid "Application not found." -msgstr "Die Anwendung wurde nicht gefunden." +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Sache hinzugefügt" -#: ../../Zotlabs/Module/Settings.php:650 -msgid "Connected Apps" -msgstr "Verbundene Apps" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Settings.php:654 -msgid "Client key starts with" -msgstr "Client Key beginnt mit" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Sache anzeigen" -#: ../../Zotlabs/Module/Settings.php:655 -msgid "No name" -msgstr "Kein Name" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Eintrag nicht gefunden" -#: ../../Zotlabs/Module/Settings.php:656 -msgid "Remove authorization" -msgstr "Authorisierung aufheben" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Sache bearbeiten" -#: ../../Zotlabs/Module/Settings.php:669 -msgid "No feature settings configured" -msgstr "Keine Funktions-Einstellungen konfiguriert" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" +msgstr "Wähle ein Profil" -#: ../../Zotlabs/Module/Settings.php:676 -msgid "Feature/Addon Settings" -msgstr "Funktions-/Addon-Einstellungen" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Account Settings" -msgstr "Konto-Einstellungen" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" -#: ../../Zotlabs/Module/Settings.php:700 -msgid "Current Password" -msgstr "Aktuelles Passwort" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" -#: ../../Zotlabs/Module/Settings.php:701 -msgid "Enter New Password" -msgstr "Gib ein neues Passwort ein" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Confirm New Password" -msgstr "Bestätige das neue Passwort" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Leave password fields blank unless changing" -msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 -msgid "Email Address:" -msgstr "Email Adresse:" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" -#: ../../Zotlabs/Module/Settings.php:706 -msgid "Remove this account including all its channels" -msgstr "Dieses Konto inklusive all seiner Kanäle löschen" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Dateien, die mit mir geteilt wurden" -#: ../../Zotlabs/Module/Settings.php:729 -msgid "Additional Features" -msgstr "Zusätzliche Funktionen" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NEU" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Connector Settings" -msgstr "Connector-Einstellungen" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Alle Dateien löschen" -#: ../../Zotlabs/Module/Settings.php:792 -msgid "No special theme for mobile devices" -msgstr "Keine spezielle Theme für mobile Geräte" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Diese Datei löschen" -#: ../../Zotlabs/Module/Settings.php:795 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s – (experimentell)" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Nicht gefunden" -#: ../../Zotlabs/Module/Settings.php:837 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:111 ../../include/conversation.php:1734 +#: ../../include/conversation.php:1737 ../../include/features.php:57 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Settings.php:838 -msgid "Theme Settings" -msgstr "Theme-Einstellungen" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Sandbox" -#: ../../Zotlabs/Module/Settings.php:839 -msgid "Custom Theme Settings" -msgstr "Benutzerdefinierte Theme-Einstellungen" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\"" -#: ../../Zotlabs/Module/Settings.php:840 -msgid "Content Settings" -msgstr "Inhaltseinstellungen" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Revisionsvergleich" -#: ../../Zotlabs/Module/Settings.php:846 -msgid "Display Theme:" -msgstr "Anzeige-Theme:" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Rückgängig machen" -#: ../../Zotlabs/Module/Settings.php:847 -msgid "Mobile Theme:" -msgstr "Mobile Theme:" +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Gib einen Namen für Dein neues Wiki ein:" -#: ../../Zotlabs/Module/Settings.php:848 -msgid "Preload images before rendering the page" -msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Geben Sie den Namen der neuen Seite ein:" -#: ../../Zotlabs/Module/Settings.php:848 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird" +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Geben Sie den neuen Namen ein:" -#: ../../Zotlabs/Module/Settings.php:849 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom auf Mobilgeräten aktivieren" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" +msgstr "Bild aus Fotoalben einbetten" -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1246 +msgid "Embed an image from your albums" +msgstr "Betten Sie ein Bild aus Ihren Alben ein" -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 Sekunden, kein Maximum" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1248 +#: ../../include/conversation.php:1295 +msgid "OK" +msgstr "Ok" -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" +msgstr "Wählen Sie Bilder zum Einbetten aus" -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum of 100 items" -msgstr "Maximum: 100 Beiträge" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" +msgstr "Wählen Sie ein Album aus" -#: ../../Zotlabs/Module/Settings.php:852 -msgid "Show emoticons (smilies) as images" -msgstr "Emoticons (Smilies) als Bilder anzeigen" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." +msgstr "Wählen Sie ein anderes Album aus..." -#: ../../Zotlabs/Module/Settings.php:853 -msgid "Link post titles to source" -msgstr "Beitragstitel zum Originalbeitrag verlinken" +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" +msgstr "Fehler beim Holen der Albenliste" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "System Page Layout Editor - (advanced)" -msgstr "System-Seitenlayout-Editor (für Experten)" +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" +msgstr "Fehler beim Holen des Fotolinks" -#: ../../Zotlabs/Module/Settings.php:857 -msgid "Use blog/list mode on channel page" -msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" +msgstr "Fehler beim Holen des Albums" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 -msgid "(comments displayed separately)" -msgstr "(Kommentare werden separat angezeigt)" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." -#: ../../Zotlabs/Module/Settings.php:858 -msgid "Use blog/list mode on grid page" -msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Quelle erstellt." -#: ../../Zotlabs/Module/Settings.php:859 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Quelle aktualisiert." -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 -msgid "click to expand content exceeding this height" -msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Module/Settings.php:860 -msgid "Grid page max height of content (in pixels)" -msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:672 +#: ../../include/features.php:70 +msgid "Channel Sources" +msgstr "Kanal-Quellen" -#: ../../Zotlabs/Module/Settings.php:894 -msgid "Nobody except yourself" -msgstr "Niemand außer Dir selbst" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." -#: ../../Zotlabs/Module/Settings.php:895 -msgid "Only those you specifically allow" -msgstr "Nur die, denen Du es explizit erlaubst" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Neue Quelle" -#: ../../Zotlabs/Module/Settings.php:896 -msgid "Approved connections" -msgstr "Angenommene Verbindungen" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." -#: ../../Zotlabs/Module/Settings.php:897 -msgid "Any connections" -msgstr "Beliebige Verbindungen" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" -#: ../../Zotlabs/Module/Settings.php:898 -msgid "Anybody on this website" -msgstr "Jeder auf dieser Website" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" -#: ../../Zotlabs/Module/Settings.php:899 -msgid "Anybody in this network" -msgstr "Alle $Projectname-Mitglieder" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Name des Kanals" -#: ../../Zotlabs/Module/Settings.php:900 -msgid "Anybody authenticated" -msgstr "Jeder authentifizierte" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)" -#: ../../Zotlabs/Module/Settings.php:901 -msgid "Anybody on the internet" -msgstr "Jeder im Internet" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +msgid "Optional" +msgstr "Optional" -#: ../../Zotlabs/Module/Settings.php:976 -msgid "Publish your default profile in the network directory" -msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Quelle nicht gefunden." -#: ../../Zotlabs/Module/Settings.php:981 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Quelle bearbeiten" -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Your channel address is" -msgstr "Deine Kanal-Adresse lautet" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Quelle löschen" -#: ../../Zotlabs/Module/Settings.php:1032 -msgid "Channel Settings" -msgstr "Kanal-Einstellungen" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Quelle gelöscht" -#: ../../Zotlabs/Module/Settings.php:1039 -msgid "Basic Settings" -msgstr "Grundeinstellungen" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Konnte die Quelle nicht löschen." -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 -msgid "Full Name:" -msgstr "Voller Name:" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt nun %2$ss %3$s" -#: ../../Zotlabs/Module/Settings.php:1042 -msgid "Your Timezone:" -msgstr "Ihre Zeitzone:" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s folgt %2$ss %3$s nicht mehr" -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Default Post Location:" -msgstr "Standardstandort:" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Geographical location to display on your posts" -msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" -#: ../../Zotlabs/Module/Settings.php:1044 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "Beitrag" -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "Adult Content" -msgstr "Nicht jugendfreie Inhalte" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1999 +msgid "comment" +msgstr "Kommentar" -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Datenschutz-Einstellungen" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Schlagwort entfernt" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Hide my online presence" -msgstr "Meine Online-Präsenz verbergen" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Prevents displaying in your profile that you are online" -msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Simple Privacy Settings:" -msgstr "Einfache Privatsphäre-Einstellungen" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 +msgid "Album not found." +msgstr "Album nicht gefunden." -#: ../../Zotlabs/Module/Settings.php:1056 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" +#: ../../Zotlabs/Module/Photos.php:112 +msgid "Delete Album" +msgstr "Album löschen" -#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Photos.php:133 msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Private - default private, never open or public" -msgstr "Privat – Standard privat, nie offen oder öffentlich" +#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Foto löschen" -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockiert – Alle standardmäßig blockiert" +#: ../../Zotlabs/Module/Photos.php:520 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" -#: ../../Zotlabs/Module/Settings.php:1061 -msgid "Allow others to tag your posts" -msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" +#: ../../Zotlabs/Module/Photos.php:569 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." -#: ../../Zotlabs/Module/Settings.php:1061 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" +#: ../../Zotlabs/Module/Photos.php:608 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." -#: ../../Zotlabs/Module/Settings.php:1063 -msgid "Advanced Privacy Settings" -msgstr "Fortgeschrittene Privatsphäre-Einstellungen" +#: ../../Zotlabs/Module/Photos.php:611 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "Expire other channel content after this many days" -msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" +#: ../../Zotlabs/Module/Photos.php:647 +msgid "Upload Photos" +msgstr "Fotos hochladen" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "0 or blank to use the website limit." -msgstr "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden." +#: ../../Zotlabs/Module/Photos.php:651 +msgid "Enter an album name" +msgstr "Namen für ein neues Album eingeben" -#: ../../Zotlabs/Module/Settings.php:1065 -#, php-format -msgid "This website expires after %d days." -msgstr "Diese Webseite läuft nach %d Tagen ab." +#: ../../Zotlabs/Module/Photos.php:652 +msgid "or select an existing album (doubleclick)" +msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "This website does not expire imported content." -msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." +#: ../../Zotlabs/Module/Photos.php:653 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist." +#: ../../Zotlabs/Module/Photos.php:654 +msgid "Caption (optional):" +msgstr "Beschriftung (optional):" -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Kontaktanfragen pro Tag:" +#: ../../Zotlabs/Module/Photos.php:655 +msgid "Description (optional):" +msgstr "Beschreibung (optional):" -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "May reduce spam activity" -msgstr "Kann die Spam-Aktivität verringern" +#: ../../Zotlabs/Module/Photos.php:686 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" -#: ../../Zotlabs/Module/Settings.php:1067 -msgid "Default Post and Publish Permissions" -msgstr "Standard-Berechtigungen für Beiträge und andere Inhalte" +#: ../../Zotlabs/Module/Photos.php:734 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" -#: ../../Zotlabs/Module/Settings.php:1069 -msgid "Use my default audience setting for the type of object published" -msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" +#: ../../Zotlabs/Module/Photos.php:757 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" -#: ../../Zotlabs/Module/Settings.php:1072 -msgid "Channel permissions category:" -msgstr "Zugriffsrechte-Kategorie des Kanals:" +#: ../../Zotlabs/Module/Photos.php:759 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" +#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 +msgid "View Photo" +msgstr "Foto ansehen" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Useful to reduce spamming" -msgstr "Nützlich, um Spam zu verringern" +#: ../../Zotlabs/Module/Photos.php:814 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 +msgid "Edit Album" +msgstr "Album bearbeiten" -#: ../../Zotlabs/Module/Settings.php:1081 -msgid "Notification Settings" -msgstr "Benachrichtigungs-Einstellungen" +#: ../../Zotlabs/Module/Photos.php:861 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." -#: ../../Zotlabs/Module/Settings.php:1082 -msgid "By default post a status message when:" -msgstr "Sende standardmäßig Status-Nachrichten, wenn:" +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" -#: ../../Zotlabs/Module/Settings.php:1083 -msgid "accepting a friend request" -msgstr "Du eine Verbindungsanfrage annimmst" +#: ../../Zotlabs/Module/Photos.php:921 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" -#: ../../Zotlabs/Module/Settings.php:1084 -msgid "joining a forum/community" -msgstr "Du einem Forum beitrittst" +#: ../../Zotlabs/Module/Photos.php:922 +msgid "Use as cover photo" +msgstr "Als Titelbild verwenden" -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "making an interesting profile change" -msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Private Photo" +msgstr "Privates Foto" -#: ../../Zotlabs/Module/Settings.php:1086 -msgid "Send a notification email when:" -msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" +#: ../../Zotlabs/Module/Photos.php:944 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" -#: ../../Zotlabs/Module/Settings.php:1087 -msgid "You receive a connection request" -msgstr "Du eine Verbindungsanfrage erhältst" +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" +msgstr "Foto bearbeiten" -#: ../../Zotlabs/Module/Settings.php:1088 -msgid "Your connections are confirmed" -msgstr "Eine Verbindung bestätigt wurde" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" -#: ../../Zotlabs/Module/Settings.php:1089 -msgid "Someone writes on your profile wall" -msgstr "Jemand auf Deine Pinnwand schreibt" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Someone writes a followup comment" -msgstr "Jemand einen Beitrag kommentiert" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Move photo to album" +msgstr "Foto in Album verschieben" -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "You receive a private message" -msgstr "Du eine private Nachricht erhältst" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "You receive a friend suggestion" -msgstr "Du einen Kontaktvorschlag erhältst" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "You are tagged in a post" -msgstr "Du in einem Beitrag erwähnt wurdest" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "Bildunterschrift" -#: ../../Zotlabs/Module/Settings.php:1094 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" -#: ../../Zotlabs/Module/Settings.php:1097 -msgid "Show visual notifications including:" -msgstr "Visuelle Benachrichtigungen anzeigen für:" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" -#: ../../Zotlabs/Module/Settings.php:1099 -msgid "Unseen grid activity" -msgstr "Ungesehene Netzwerk-Aktivität" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" -#: ../../Zotlabs/Module/Settings.php:1100 -msgid "Unseen channel activity" -msgstr "Ungesehene Kanal-Aktivität" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" -#: ../../Zotlabs/Module/Settings.php:1101 -msgid "Unseen private messages" -msgstr "Ungelesene persönliche Nachrichten" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "Recommended" -msgstr "Empfohlen" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Bitte warten" -#: ../../Zotlabs/Module/Settings.php:1102 -msgid "Upcoming events" -msgstr "Baldige Termine" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:709 +msgid "This is you" +msgstr "Das bist Du" -#: ../../Zotlabs/Module/Settings.php:1103 -msgid "Events today" -msgstr "Heutige Termine" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Kommentar" -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Upcoming birthdays" -msgstr "Baldige Geburtstage" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Gefällt mir" -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Not available in all themes" -msgstr "Nicht in allen Themes verfügbar" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" -#: ../../Zotlabs/Module/Settings.php:1105 -msgid "System (personal) notifications" -msgstr "System – (persönliche) Benachrichtigungen" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" -#: ../../Zotlabs/Module/Settings.php:1106 -msgid "System info messages" -msgstr "System – Info-Nachrichten" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" -#: ../../Zotlabs/Module/Settings.php:1107 -msgid "System critical alerts" -msgstr "System – kritische Warnungen" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "New connections" -msgstr "Neue Verbindungen" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" -#: ../../Zotlabs/Module/Settings.php:1109 -msgid "System Registrations" -msgstr "System – Registrierungen" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" -#: ../../Zotlabs/Module/Settings.php:1110 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Notify me of events this many days in advance" -msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1762 +msgid "View all" +msgstr "Alles anzeigen" -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Must be greater than 0" -msgstr "Muss größer als 0 sein" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1786 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" -#: ../../Zotlabs/Module/Settings.php:1114 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Account- und Seitenart-Einstellungen" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Gefällt nicht" +msgstr[1] "Gefällt nicht" -#: ../../Zotlabs/Module/Settings.php:1115 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "Fotowerkzeuge" -#: ../../Zotlabs/Module/Settings.php:1118 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" -#: ../../Zotlabs/Module/Settings.php:1119 -msgid "Miscellaneous Settings" -msgstr "Sonstige Einstellungen" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "Karte" -#: ../../Zotlabs/Module/Settings.php:1120 -msgid "Default photo upload folder" -msgstr "Voreingestellter Ordner für hochgeladene Fotos" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Likes" +msgstr "Gefällt mir" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "%Y - current year, %m - current month" -msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 +msgctxt "noun" +msgid "Dislikes" +msgstr "Gefällt nicht" -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "Default file upload folder" -msgstr "Voreingestellter Ordner für hochgeladene Dateien" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "Schließen" -#: ../../Zotlabs/Module/Settings.php:1123 -msgid "Personal menu to display in your channel pages" -msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "Album ansehen" -#: ../../Zotlabs/Module/Settings.php:1125 -msgid "Remove this channel." -msgstr "Diesen Kanal löschen" +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" +msgstr "Neueste Fotos" -#: ../../Zotlabs/Module/Settings.php:1126 -msgid "Firefox Share $Projectname provider" -msgstr "$Projectname-Provider für Firefox Share" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanal hinzugefügt." -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Start calendar week on monday" -msgstr "Montag als erster Tag der Kalenderwoche" +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Keine Verbindungen." -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "$Projectname Server-Einrichtung" +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "%ss Profil [%s] besuchen" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "Kann nicht mit der Datenbank verbinden." +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" +msgstr "Verbindungen anzeigen" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Quelle des Elements" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "Kann Tabelle nicht erstellen." +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "Die Datenbank Deines Hubs wurde installiert." +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Raum verlassen" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Raum löschen" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Lies die Datei \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Systemprüfung" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ich bin online" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Bitte nochmal prüfen" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Datenbank Verbindung" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Neuer Chatraum" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Chatraumname" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Verfall von Chats (Minuten)" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Datenbank-Servername" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "Keine Chaträume verfügbar" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Standard ist 127.0.0.1" +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Verfall" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Datenbank-Port" +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan-Suche" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Datenbank-Benutzername" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Datenbank-Kennwort" +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# Accounts" +msgstr "Anzahl der Konten" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Datenbank-Name" +#: ../../Zotlabs/Module/Admin.php:98 +msgid "# blocked accounts" +msgstr "Anzahl der blockierten Konten" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Datenbanktyp" +#: ../../Zotlabs/Module/Admin.php:99 +msgid "# expired accounts" +msgstr "Anzahl der abgelaufenen Konten" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "E-Mail Adresse des Seiten-Administrators" +#: ../../Zotlabs/Module/Admin.php:100 +msgid "# expiring accounts" +msgstr "Anzahl der ablaufenden Konten" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." +#: ../../Zotlabs/Module/Admin.php:111 +msgid "# Channels" +msgstr "Anzahl der Kanäle" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "Server-URL" +#: ../../Zotlabs/Module/Admin.php:112 +msgid "# primary" +msgstr "Anzahl der primären Kanäle" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Nutze wenn möglich eine SSL-URL (https)." +#: ../../Zotlabs/Module/Admin.php:113 +msgid "# clones" +msgstr "Anzahl der Klone" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Standard-Zeitzone für Deinen Server" +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Seiteneinstellungen" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" +msgstr "Die installierte Software sollte aktualisiert werden" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Erweiterte Funktionen für $Projectname aktivieren?" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" +msgstr "Zusammenfassung" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Einige erweiterte Funktionen können ungeachtet ihrer Nützlichkeit eher für eine technisch versierte Zielgruppe geeignet sein." +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" +msgstr "Registrierte Konten" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "PHP Version 5.5 oder höher wird benötigt." +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" +msgstr "Ausstehende Registrierungen" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "PHP-Version" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" +msgstr "Registrierte Kanäle" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active plugins" +msgstr "Aktive Plug-Ins" -#: ../../Zotlabs/Module/Setup.php:405 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" +msgstr "Version" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "PHP Pfad zu ausführbarer Datei" +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" +msgstr "Repository-Version (master)" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" +msgstr "Repository-Version (dev)" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "PHP Befehlszeile" +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Keine gültige E-Mail Adresse." -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." +msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." +#: ../../Zotlabs/Module/Settings/Account.php:32 +msgid "System failure storing new email. Please try again." +msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Settings/Account.php:40 +msgid "Technical skill level updated" +msgstr "Technische Qualifikationsstufe aktualisiert" -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "Passwortüberprüfung fehlgeschlagen." -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Du kannst diese Einstellungen in der php.ini des Servers ändern." +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." +msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "PHP-Hochladebeschränkungen" +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." +msgstr "Kennwort geändert." -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." +msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Verschlüsselungsschlüssel generieren" +#: ../../Zotlabs/Module/Settings/Account.php:120 +msgid "Account Settings" +msgstr "Konto-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "libCurl-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Current Password" +msgstr "Aktuelles Passwort" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "GD-Grafik-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:122 +msgid "Enter New Password" +msgstr "Gib ein neues Passwort ein" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "OpenSSL-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Confirm New Password" +msgstr "Bestätige das neue Passwort" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "mysqli oder postgres PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Leave password fields blank unless changing" +msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "mb_string-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Your technical skill level" +msgstr "Deine technische Qualifikationsstufe" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "mcrypt-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Used to provide a member experience matched to your comfort level" +msgstr "Dies wird verwendet, um Dir eine Benutzererfahrung passend zu Deiner technischen Qualifikationsstufe zu bieten." -#: ../../Zotlabs/Module/Setup.php:497 -msgid "xml PHP module" -msgstr "xml-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:127 +#: ../../Zotlabs/Module/Settings/Channel.php:459 +msgid "Email Address:" +msgstr "Email Adresse:" -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 -msgid "Apache mod_rewrite module" -msgstr "Apache-mod_rewrite-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:129 +msgid "Remove this account including all its channels" +msgstr "Dieses Konto inklusive all seiner Kanäle löschen" -#: ../../Zotlabs/Module/Setup.php:501 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:246 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Settings/Channel.php:307 +msgid "Nobody except yourself" +msgstr "Niemand außer Dir selbst" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" +#: ../../Zotlabs/Module/Settings/Channel.php:308 +msgid "Only those you specifically allow" +msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../Zotlabs/Module/Setup.php:515 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:309 +msgid "Approved connections" +msgstr "Angenommene Verbindungen" -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:310 +msgid "Any connections" +msgstr "Beliebige Verbindungen" -#: ../../Zotlabs/Module/Setup.php:523 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:311 +msgid "Anybody on this website" +msgstr "Jeder auf dieser Website" -#: ../../Zotlabs/Module/Setup.php:527 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:312 +msgid "Anybody in this network" +msgstr "Alle $Projectname-Mitglieder" -#: ../../Zotlabs/Module/Setup.php:531 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:313 +msgid "Anybody authenticated" +msgstr "Jeder authentifizierte" -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:314 +msgid "Anybody on the internet" +msgstr "Jeder im Internet" -#: ../../Zotlabs/Module/Setup.php:539 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:390 +msgid "Publish your default profile in the network directory" +msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../Zotlabs/Module/Setup.php:557 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." +#: ../../Zotlabs/Module/Settings/Channel.php:395 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../Zotlabs/Module/Setup.php:558 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." +#: ../../Zotlabs/Module/Settings/Channel.php:404 +msgid "Your channel address is" +msgstr "Deine Kanal-Adresse lautet" -#: ../../Zotlabs/Module/Setup.php:559 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst." +#: ../../Zotlabs/Module/Settings/Channel.php:450 +msgid "Channel Settings" +msgstr "Kanal-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:560 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." +#: ../../Zotlabs/Module/Settings/Channel.php:457 +msgid "Basic Settings" +msgstr "Grundeinstellungen" -#: ../../Zotlabs/Module/Setup.php:563 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php ist beschreibbar" +#: ../../Zotlabs/Module/Settings/Channel.php:458 +#: ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Voller Name:" -#: ../../Zotlabs/Module/Setup.php:577 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." +#: ../../Zotlabs/Module/Settings/Channel.php:460 +msgid "Your Timezone:" +msgstr "Ihre Zeitzone:" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." -msgstr "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses." +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Default Post Location:" +msgstr "Standardstandort:" -#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Geographical location to display on your posts" +msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" -#: ../../Zotlabs/Module/Setup.php:580 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." +#: ../../Zotlabs/Module/Settings/Channel.php:462 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" -#: ../../Zotlabs/Module/Setup.php:583 -#, php-format -msgid "%s is writable" -msgstr "%s ist beschreibbar" +#: ../../Zotlabs/Module/Settings/Channel.php:464 +msgid "Adult Content" +msgstr "Nicht jugendfreie Inhalte" -#: ../../Zotlabs/Module/Setup.php:599 +#: ../../Zotlabs/Module/Settings/Channel.php:464 msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "$Projectname benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" -#: ../../Zotlabs/Module/Setup.php:603 -msgid "store is writable" -msgstr "store ist schreibbar" +#: ../../Zotlabs/Module/Settings/Channel.php:466 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:636 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." +#: ../../Zotlabs/Module/Settings/Channel.php:469 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" -#: ../../Zotlabs/Module/Setup.php:637 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Hide my online presence" +msgstr "Meine Online-Präsenz verbergen" -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Prevents displaying in your profile that you are online" +msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" -#: ../../Zotlabs/Module/Setup.php:639 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer $Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." +#: ../../Zotlabs/Module/Settings/Channel.php:473 +msgid "Simple Privacy Settings:" +msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:640 +#: ../../Zotlabs/Module/Settings/Channel.php:474 msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." +"Very Public - extremely permissive (should be used with caution)" +msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Settings/Channel.php:475 msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" -#: ../../Zotlabs/Module/Setup.php:643 -msgid "SSL certificate validation" -msgstr "SSL Zertifikatverifizierung" +#: ../../Zotlabs/Module/Settings/Channel.php:476 +msgid "Private - default private, never open or public" +msgstr "Privat – Standard privat, nie offen oder öffentlich" -#: ../../Zotlabs/Module/Setup.php:649 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" +#: ../../Zotlabs/Module/Settings/Channel.php:477 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../Zotlabs/Module/Setup.php:652 -msgid "Url rewrite is working" -msgstr "Url rewrite funktioniert" +#: ../../Zotlabs/Module/Settings/Channel.php:479 +msgid "Allow others to tag your posts" +msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Settings/Channel.php:479 msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" -#: ../../Zotlabs/Module/Setup.php:685 -msgid "Errors encountered creating database tables." -msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." +#: ../../Zotlabs/Module/Settings/Channel.php:481 +msgid "Channel Permission Limits" +msgstr "Kanal-Berechtigungslimits" -#: ../../Zotlabs/Module/Setup.php:719 -msgid "

    What next

    " -msgstr "

    Was als Nächstes

    " +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "Expire other channel content after this many days" +msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../Zotlabs/Module/Setup.php:720 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "0 or blank to use the website limit." +msgstr "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden." -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Dateien, die mit mir geteilt wurden" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +#, php-format +msgid "This website expires after %d days." +msgstr "Diese Webseite läuft nach %d Tagen ab." -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NEU" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "This website does not expire imported content." +msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Alle Dateien löschen" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist." -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Diese Datei löschen" +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Version %s" +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "May reduce spam activity" +msgstr "Kann die Spam-Aktivität verringern" -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "Default Access Control List (ACL)" +msgstr "Standard-Zugriffsberechtigungsliste (ACL)" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" +#: ../../Zotlabs/Module/Settings/Channel.php:487 +msgid "Use my default audience setting for the type of object published" +msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" -#: ../../Zotlabs/Module/Siteinfo.php:66 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." +#: ../../Zotlabs/Module/Settings/Channel.php:494 +msgid "Channel permissions category:" +msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Schlagwort: " +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Letzter Hintergrundabruf:" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Useful to reduce spamming" +msgstr "Nützlich, um Spam zu verringern" -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Aktuelles Load Average:" +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Notification Settings" +msgstr "Benachrichtigungs-Einstellungen" -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "By default post a status message when:" +msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "accepting a friend request" +msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../Zotlabs/Module/Settings/Channel.php:506 +msgid "joining a forum/community" +msgstr "Du einem Forum beitrittst" -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "$projectname-Bugtracker" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "making an interesting profile change" +msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../Zotlabs/Module/Siteinfo.php:80 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "Send a notification email when:" +msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Administratoren" +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "You receive a connection request" +msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "Your connections are confirmed" +msgstr "Eine Verbindung bestätigt wurde" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Quelle erstellt." +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Someone writes on your profile wall" +msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Quelle aktualisiert." +#: ../../Zotlabs/Module/Settings/Channel.php:512 +msgid "Someone writes a followup comment" +msgstr "Jemand einen Beitrag kommentiert" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "You receive a private message" +msgstr "Du eine private Nachricht erhältst" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 -msgid "Channel Sources" -msgstr "Kanal-Quellen" +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "You receive a friend suggestion" +msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "You are tagged in a post" +msgstr "Du in einem Beitrag erwähnt wurdest" + +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Neue Quelle" +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Show visual notifications including:" +msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Unseen grid activity" +msgstr "Ungesehene Netzwerk-Aktivität" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" +#: ../../Zotlabs/Module/Settings/Channel.php:522 +msgid "Unseen channel activity" +msgstr "Ungesehene Kanal-Aktivität" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Unseen private messages" +msgstr "Ungelesene persönliche Nachrichten" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Name des Kanals" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Recommended" +msgstr "Empfohlen" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)" +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Upcoming events" +msgstr "Baldige Termine" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Quelle nicht gefunden." +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Events today" +msgstr "Heutige Termine" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Quelle bearbeiten" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Upcoming birthdays" +msgstr "Baldige Geburtstage" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Quelle löschen" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Not available in all themes" +msgstr "Nicht in allen Themes verfügbar" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Quelle gelöscht" +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "System (personal) notifications" +msgstr "System – (persönliche) Benachrichtigungen" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "System info messages" +msgstr "System – Info-Nachrichten" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt nun %2$ss %3$s" +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "System critical alerts" +msgstr "System – kritische Warnungen" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s folgt %2$ss %3$s nicht mehr" +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "New connections" +msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Suggest.php:39 +#: ../../Zotlabs/Module/Settings/Channel.php:531 +msgid "System Registrations" +msgstr "System – Registrierungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." +"Also show new wall posts, private messages and connections under Notices" +msgstr "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Notify me of events this many days in advance" +msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 -msgid "post" -msgstr "Beitrag" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Must be greater than 0" +msgstr "Muss größer als 0 sein" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "Kommentar" +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Schlagwort entfernt" +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Miscellaneous Settings" +msgstr "Sonstige Einstellungen" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default photo upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Fotos" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "%Y - current year, %m - current month" +msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Sache aktualisiert" +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "Default file upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Dateien" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" +#: ../../Zotlabs/Module/Settings/Channel.php:543 +msgid "Personal menu to display in your channel pages" +msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Sache hinzugefügt" +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "Remove this channel." +msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Firefox Share $Projectname provider" +msgstr "$Projectname-Provider für Firefox Share" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Sache anzeigen" +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "Start calendar week on monday" +msgstr "Montag als erster Tag der Kalenderwoche" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Eintrag nicht gefunden" +#: ../../Zotlabs/Module/Settings/Display.php:135 +msgid "No special theme for mobile devices" +msgstr "Keine spezielle Theme für mobile Geräte" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Sache bearbeiten" +#: ../../Zotlabs/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s – (experimentell)" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Wähle ein Profil" +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Theme Settings" +msgstr "Theme-Einstellungen" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Theme-Einstellungen" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Content Settings" +msgstr "Inhaltseinstellungen" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Display Theme:" +msgstr "Anzeige-Theme:" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Select scheme" +msgstr "Schema wählen" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Mobile Theme:" +msgstr "Mobile Theme:" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanal exportieren" +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Preload images before rendering the page" +msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exportiert die Beiträge des angegebenen Jahres." +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum of 100 items" +msgstr "Maximum: 100 Beiträge" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Show emoticons (smilies) as images" +msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "Link post titles to source" +msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../Zotlabs/Module/Viewconnections.php:62 -msgid "No connections." -msgstr "Keine Verbindungen." +#: ../../Zotlabs/Module/Settings/Display.php:208 +msgid "System Page Layout Editor - (advanced)" +msgstr "System-Seitenlayout-Editor (für Experten)" + +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on channel page" +msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" + +#: ../../Zotlabs/Module/Settings/Display.php:211 +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "(comments displayed separately)" +msgstr "(Kommentare werden separat angezeigt)" -#: ../../Zotlabs/Module/Viewconnections.php:75 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "%ss Profil [%s] besuchen" +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Use blog/list mode on grid page" +msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" -#: ../../Zotlabs/Module/Viewconnections.php:104 -msgid "View Connections" -msgstr "Verbindungen anzeigen" +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Quelle des Elements" +#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "click to expand content exceeding this height" +msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Webseiten" +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "Grid page max height of content (in pixels)" +msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Aktionen" +#: ../../Zotlabs/Module/Settings/Featured.php:24 +msgid "No feature settings configured" +msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../Zotlabs/Module/Settings/Featured.php:31 +msgid "Feature/Addon Settings" +msgstr "Funktions-/Addon-Einstellungen" -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Seitentitel" +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" +msgstr "Zusätzliche Funktionen" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Xchan-Suche" +#: ../../Zotlabs/Module/Settings/Oauth.php:34 +msgid "Name is required" +msgstr "Name ist erforderlich" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" +#: ../../Zotlabs/Module/Settings/Oauth.php:38 +msgid "Key and Secret are required" +msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Hub-Administration" +#: ../../Zotlabs/Module/Settings/Oauth.php:86 +#: ../../Zotlabs/Module/Settings/Oauth.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Add application" +msgstr "Anwendung hinzufügen" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "Fehler-Rückmeldung" +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +msgid "Name of application" +msgstr "Name der Anwendung" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "Lesezeichen ansehen" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "Meine Chaträume" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "Teilen-Knopf für Firefox" +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "Ferndiagnose" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Redirect" +msgstr "Umleitung" -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Anmelden" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Icon url" +msgstr "Symbol-URL" -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Grid" +#: ../../Zotlabs/Module/Settings/Oauth.php:104 +msgid "Application not found." +msgstr "Die Anwendung wurde nicht gefunden." -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Mein Kanal" +#: ../../Zotlabs/Module/Settings/Oauth.php:147 +msgid "Connected Apps" +msgstr "Verbundene Apps" -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Termine" +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +msgid "Client key starts with" +msgstr "Client Key beginnt mit" -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Verzeichnis" +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "No name" +msgstr "Kein Name" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Mail" +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "Remove authorization" +msgstr "Authorisierung aufheben" -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Dieser Kanal ist auf %d Token begrenzt" -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Testen" +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "Name und Passwort sind erforderlich." -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Empfehlen" +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Token gespeichert." -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Zufälliger Kanal" +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." +msgstr "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen." -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Einladen" +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:" -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Funktionen" +#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:647 +msgid "Guest Access Tokens" +msgstr "Gastzugangstoken" -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Beitrag schreiben" +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Anmeldename" -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Kaufen" +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Anmeldepasswort" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Läuft ab (jjjj-mm-tt)" #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" @@ -6384,19 +6642,19 @@ msgstr "Chatraum konnte nicht gefunden werden." msgid "Room is full" msgstr "Der Chatraum ist voll" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 msgid "$Projectname Notification" msgstr "$Projectname-Benachrichtigung" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 msgid "Thank You," msgstr "Danke." -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" @@ -6542,58 +6800,215 @@ msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erha msgid "You may visit their profile at %s" msgstr "Du kannst Dir das Profil unter %s ansehen" -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." + +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Benachrichtigung] Freundschaftsvorschlag erhalten" + +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" + +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." + +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Name:" + +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Foto:" + +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." + +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Benachrichtigung]" + +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "Neuer Beitrag wurde erzeugt" + +#: ../../Zotlabs/Lib/Enotify.php:668 +#, php-format +msgid "commented on %s's post" +msgstr "hat %s's Beitrag kommentiert" + +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:124 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:165 +msgid "Only me" +msgstr "Nur ich" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Öffentlich" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Jeder innerhalb des $Projectname Netzwerks" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Jedes Nutzerkonto auf %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Alle meine Verbindungen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Nur Verbindungen, denen ich es explizit erlaube" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Hub-Administration" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Fehler-Rückmeldung" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Lesezeichen ansehen" + +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Meine Chaträume" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Teilen-Knopf für Firefox" + +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Ferndiagnose" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:88 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" + +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 +#: ../../boot.php:1739 +msgid "Login" +msgstr "Anmelden" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:184 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:187 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 +#: ../../include/conversation.php:1688 ../../include/conversation.php:1691 +msgid "Events" +msgstr "Termine" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:172 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:198 +msgid "Mail" +msgstr "Mail" + +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:99 +msgid "Chat" +msgstr "Chat" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Benachrichtigung] Freundschaftsvorschlag erhalten" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Testen" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Empfehlen" -#: ../../Zotlabs/Lib/Enotify.php:293 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Zufälliger Kanal" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Name:" +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Einladen" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Foto:" +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1560 +msgid "Features" +msgstr "Funktionen" -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Sprache" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Benachrichtigung]" +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Beitrag schreiben" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "Neuer Beitrag wurde erzeugt" +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Profilfoto" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "hat %s's Beitrag kommentiert" +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Kaufen" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 msgid "Private Message" msgstr "Private Nachricht" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 msgid "Select" msgstr "Auswählen" @@ -6641,11 +7056,11 @@ msgstr "Markierungsstatus (Stern) umschalten" msgid "starred" msgstr "markiert" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 msgid "Message signature validated" msgstr "Signatur überprüft" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 msgid "Message signature incorrect" msgstr "Signatur nicht korrekt" @@ -6653,114 +7068,115 @@ msgstr "Signatur nicht korrekt" msgid "Add Tag" msgstr "Tag hinzufügen" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:316 msgid "like" msgstr "mag" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +#: ../../Zotlabs/Lib/ThreadItem.php:264 ../../include/taxonomy.php:317 msgid "dislike" msgstr "verurteile" -#: ../../Zotlabs/Lib/ThreadItem.php:266 +#: ../../Zotlabs/Lib/ThreadItem.php:268 msgid "Share This" msgstr "Teilen" -#: ../../Zotlabs/Lib/ThreadItem.php:266 +#: ../../Zotlabs/Lib/ThreadItem.php:268 msgid "share" msgstr "Teilen" -#: ../../Zotlabs/Lib/ThreadItem.php:275 +#: ../../Zotlabs/Lib/ThreadItem.php:277 msgid "Delivery Report" msgstr "Zustellungsbericht" -#: ../../Zotlabs/Lib/ThreadItem.php:293 +#: ../../Zotlabs/Lib/ThreadItem.php:295 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#: ../../Zotlabs/Lib/ThreadItem.php:324 ../../Zotlabs/Lib/ThreadItem.php:325 #, php-format msgid "View %s's profile - %s" msgstr "Schaue Dir %ss Profil an – %s" -#: ../../Zotlabs/Lib/ThreadItem.php:326 +#: ../../Zotlabs/Lib/ThreadItem.php:328 msgid "to" msgstr "an" -#: ../../Zotlabs/Lib/ThreadItem.php:327 +#: ../../Zotlabs/Lib/ThreadItem.php:329 msgid "via" msgstr "via" -#: ../../Zotlabs/Lib/ThreadItem.php:328 +#: ../../Zotlabs/Lib/ThreadItem.php:330 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: ../../Zotlabs/Lib/ThreadItem.php:329 +#: ../../Zotlabs/Lib/ThreadItem.php:331 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../include/conversation.php:722 #, php-format msgid "from %s" msgstr "via %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:725 #, php-format msgid "last edited: %s" msgstr "zuletzt bearbeitet: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#: ../../Zotlabs/Lib/ThreadItem.php:347 ../../include/conversation.php:726 #, php-format msgid "Expires: %s" msgstr "Verfällt: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:370 +#: ../../Zotlabs/Lib/ThreadItem.php:372 msgid "Save Bookmarks" msgstr "Favoriten speichern" -#: ../../Zotlabs/Lib/ThreadItem.php:371 +#: ../../Zotlabs/Lib/ThreadItem.php:373 msgid "Add to Calendar" msgstr "Zum Kalender hinzufügen" -#: ../../Zotlabs/Lib/ThreadItem.php:380 +#: ../../Zotlabs/Lib/ThreadItem.php:382 msgid "Mark all seen" msgstr "Alle als gelesen markieren" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] Alle anzeigen" +#: ../../Zotlabs/Lib/ThreadItem.php:423 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mehr anzeigen" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1238 msgid "Bold" msgstr "Fett" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1239 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1240 msgid "Underline" msgstr "Unterstrichen" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1241 msgid "Quote" msgstr "Zitat" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +#: ../../Zotlabs/Lib/ThreadItem.php:717 ../../include/conversation.php:1242 msgid "Code" msgstr "Code" -#: ../../Zotlabs/Lib/ThreadItem.php:716 +#: ../../Zotlabs/Lib/ThreadItem.php:718 msgid "Image" msgstr "Bild" -#: ../../Zotlabs/Lib/ThreadItem.php:717 +#: ../../Zotlabs/Lib/ThreadItem.php:719 msgid "Insert Link" msgstr "Link einfügen" -#: ../../Zotlabs/Lib/ThreadItem.php:718 +#: ../../Zotlabs/Lib/ThreadItem.php:720 msgid "Video" msgstr "Video" @@ -6768,3075 +7184,3003 @@ msgstr "Video" msgid "No username found in import file." msgstr "Kein Benutzername in der Importdatei gefunden." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 msgid "Unable to create a unique channel address. Import failed." msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." -#: ../../include/dba/dba_driver.php:171 +#: ../../include/dba/dba_driver.php:173 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Kategorien" - -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Schlagwörter" - -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Schlüsselwörter" - -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "habe" - -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "hat" - -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "will" - -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "will" - -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "gefällt" - -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "missfällt" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Beginnt:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Endet:" - -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" - -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Keine Angabe" - -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Aktion erforderlich" - -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Abgeschlossen" - -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "In Bearbeitung" - -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "gestrichen" +#: ../../include/network.php:704 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" -#: ../../include/import.php:29 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." +#: ../../include/network.php:1935 ../../include/account.php:326 +#: ../../include/account.php:353 ../../include/account.php:413 +msgid "Administrator" +msgstr "Administrator" -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." +#: ../../include/network.php:1949 +msgid "No Subject" +msgstr "Kein Betreff" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Unbekannt)" +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." +#: ../../include/network.php:2205 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." +#: ../../include/network.php:2206 +msgid "GNU-Social" +msgstr "GNU-Social" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Für jedes $Projectname-Mitglied sichtbar." +#: ../../include/network.php:2207 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." +#: ../../include/network.php:2209 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/items.php:1144 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." +#: ../../include/network.php:2210 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/items.php:1146 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." +#: ../../include/network.php:2211 +msgid "Zot" +msgstr "Zot!" -#: ../../include/items.php:1148 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." +#: ../../include/network.php:2212 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/items.php:1150 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." +#: ../../include/network.php:2213 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/items.php:3909 -msgid "Privacy group is empty." -msgstr "Gruppe ist leer." +#: ../../include/network.php:2214 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/items.php:3916 +#: ../../include/photos.php:114 #, php-format -msgid "Privacy group: %s" -msgstr "Gruppe: %s" - -#: ../../include/items.php:3928 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." - -#: ../../include/items.php:4277 -msgid "profile photo" -msgstr "Profilfoto" - -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[no subject]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." - -#: ../../include/text.php:428 -msgid "prev" -msgstr "vorherige" - -#: ../../include/text.php:430 -msgid "first" -msgstr "erste" - -#: ../../include/text.php:459 -msgid "last" -msgstr "letzte" - -#: ../../include/text.php:462 -msgid "next" -msgstr "nächste" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" -#: ../../include/text.php:472 -msgid "older" -msgstr "älter" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." -#: ../../include/text.php:474 -msgid "newer" -msgstr "neuer" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Fotospeicherung fehlgeschlagen." -#: ../../include/text.php:863 -msgid "No connections" -msgstr "Keine Verbindungen" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "ein neues Foto" -#: ../../include/text.php:888 +#: ../../include/photos.php:303 #, php-format -msgid "View all %s connections" -msgstr "Alle Verbindungen von %s anzeigen" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "anstupsen" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s hat %2$s auf %3$s veröffentlicht" -#: ../../include/text.php:1033 ../../include/text.php:1038 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" +#: ../../include/photos.php:506 ../../include/conversation.php:1674 +msgid "Photo Albums" +msgstr "Fotoalben" -#: ../../include/text.php:1039 -msgid "ping" -msgstr "anpingen" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "pingte" +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 +msgid "Logout" +msgstr "Abmelden" -#: ../../include/text.php:1040 -msgid "prod" -msgstr "knuffen" +#: ../../include/nav.php:85 ../../include/nav.php:118 +msgid "End this session" +msgstr "Beende diese Sitzung" -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "knuffte" +#: ../../include/nav.php:88 ../../include/nav.php:149 +msgid "Home" +msgstr "Home" -#: ../../include/text.php:1041 -msgid "slap" -msgstr "ohrfeigen" +#: ../../include/nav.php:88 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "ohrfeigte" +#: ../../include/nav.php:89 +msgid "Your profile page" +msgstr "Deine Profilseite" -#: ../../include/text.php:1042 -msgid "finger" -msgstr "befummeln" +#: ../../include/nav.php:91 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "befummelte" +#: ../../include/nav.php:93 ../../include/channel.php:963 +msgid "Edit Profile" +msgstr "Profile bearbeiten" -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" +#: ../../include/nav.php:93 +msgid "Edit your profile" +msgstr "Profil bearbeiten" -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "zurückgewiesen" +#: ../../include/nav.php:95 +msgid "Your photos" +msgstr "Deine Bilder" -#: ../../include/text.php:1055 -msgid "happy" -msgstr "glücklich" +#: ../../include/nav.php:96 +msgid "Your files" +msgstr "Deine Dateien" -#: ../../include/text.php:1056 -msgid "sad" -msgstr "traurig" +#: ../../include/nav.php:99 +msgid "Your chatrooms" +msgstr "Deine Chaträume" -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "sanft" +#: ../../include/nav.php:105 ../../include/conversation.php:1714 +msgid "Bookmarks" +msgstr "Lesezeichen" -#: ../../include/text.php:1058 -msgid "tired" -msgstr "müde" +#: ../../include/nav.php:105 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" -#: ../../include/text.php:1059 -msgid "perky" -msgstr "frech" +#: ../../include/nav.php:109 +msgid "Your webpages" +msgstr "Deine Webseiten" -#: ../../include/text.php:1060 -msgid "angry" -msgstr "sauer" +#: ../../include/nav.php:111 +msgid "Your wiki" +msgstr "Dein Wiki" -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "verblüfft" +#: ../../include/nav.php:115 +msgid "Sign in" +msgstr "Anmelden" -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "verwirrt" +#: ../../include/nav.php:132 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" -#: ../../include/text.php:1063 -msgid "interested" -msgstr "interessiert" +#: ../../include/nav.php:135 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "verbittert" +#: ../../include/nav.php:135 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "fröhlich" +#: ../../include/nav.php:149 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/text.php:1066 -msgid "alive" -msgstr "lebendig" +#: ../../include/nav.php:152 +msgid "Create an account" +msgstr "Erzeuge ein Konto" -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "verärgert" +#: ../../include/nav.php:164 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "unruhig" +#: ../../include/nav.php:168 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "schrullig" +#: ../../include/nav.php:170 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "verstört" +#: ../../include/nav.php:172 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "frustriert" +#: ../../include/nav.php:184 +msgid "Your grid" +msgstr "Dein Grid" -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "deprimiert" +#: ../../include/nav.php:185 +msgid "Mark all grid notifications seen" +msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "motiviert" +#: ../../include/nav.php:187 +msgid "Channel home" +msgstr "Mein Kanal" -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "entspannt" +#: ../../include/nav.php:188 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "überrascht" +#: ../../include/nav.php:194 +msgid "Notices" +msgstr "Benachrichtigungen" -#: ../../include/text.php:1257 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Montag" +#: ../../include/nav.php:194 +msgid "Notifications" +msgstr "Benachrichtigungen" -#: ../../include/text.php:1257 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Dienstag" +#: ../../include/nav.php:195 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" -#: ../../include/text.php:1257 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Mittwoch" +#: ../../include/nav.php:198 +msgid "Private mail" +msgstr "Persönliche Mail" -#: ../../include/text.php:1257 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Donnerstag" +#: ../../include/nav.php:199 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" -#: ../../include/text.php:1257 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Freitag" +#: ../../include/nav.php:200 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" -#: ../../include/text.php:1257 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Samstag" +#: ../../include/nav.php:201 ../../include/widgets.php:700 +msgid "Inbox" +msgstr "Eingang" -#: ../../include/text.php:1257 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Sonntag" +#: ../../include/nav.php:202 ../../include/widgets.php:705 +msgid "Outbox" +msgstr "Ausgang" -#: ../../include/text.php:1261 ../../include/js_strings.php:45 -msgid "January" -msgstr "Januar" +#: ../../include/nav.php:203 ../../include/widgets.php:710 +msgid "New Message" +msgstr "Neue Nachricht" -#: ../../include/text.php:1261 ../../include/js_strings.php:46 -msgid "February" -msgstr "Februar" +#: ../../include/nav.php:206 +msgid "Event Calendar" +msgstr "Terminkalender" -#: ../../include/text.php:1261 ../../include/js_strings.php:47 -msgid "March" -msgstr "März" +#: ../../include/nav.php:207 +msgid "See all events" +msgstr "Alle Termine ansehen" -#: ../../include/text.php:1261 ../../include/js_strings.php:48 -msgid "April" -msgstr "April" +#: ../../include/nav.php:208 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" -#: ../../include/text.php:1261 -msgid "May" -msgstr "Mai" +#: ../../include/nav.php:211 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" -#: ../../include/text.php:1261 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juni" +#: ../../include/nav.php:213 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" -#: ../../include/text.php:1261 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juli" +#: ../../include/nav.php:221 ../../include/widgets.php:1590 +msgid "Admin" +msgstr "Administration" -#: ../../include/text.php:1261 ../../include/js_strings.php:52 -msgid "August" -msgstr "August" +#: ../../include/nav.php:221 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" -#: ../../include/text.php:1261 ../../include/js_strings.php:53 -msgid "September" -msgstr "September" +#: ../../include/nav.php:252 ../../include/conversation.php:855 +msgid "Loading..." +msgstr "Lädt ..." -#: ../../include/text.php:1261 ../../include/js_strings.php:54 -msgid "October" -msgstr "Oktober" +#: ../../include/nav.php:257 +msgid "@name, #tag, ?doc, content" +msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/text.php:1261 ../../include/js_strings.php:55 -msgid "November" -msgstr "November" +#: ../../include/nav.php:258 +msgid "Please wait..." +msgstr "Bitte warten..." -#: ../../include/text.php:1261 ../../include/js_strings.php:56 -msgid "December" -msgstr "Dezember" +#: ../../include/oembed.php:349 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" -#: ../../include/text.php:1338 ../../include/text.php:1342 -msgid "Unknown Attachment" -msgstr "Unbekannter Anhang" +#: ../../include/oembed.php:358 +msgid "Embedding disabled" +msgstr "Einbetten deaktiviert" -#: ../../include/text.php:1344 -msgid "unknown" -msgstr "unbekannt" +#: ../../include/permissions.php:35 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" -#: ../../include/text.php:1380 -msgid "remove category" -msgstr "Kategorie entfernen" +#: ../../include/permissions.php:39 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" -#: ../../include/text.php:1457 -msgid "remove from file" -msgstr "aus der Datei entfernen" +#: ../../include/permissions.php:43 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" -#: ../../include/text.php:1753 ../../include/text.php:1824 -msgid "default" -msgstr "Standard" +#: ../../include/permissions.php:46 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" -#: ../../include/text.php:1761 -msgid "Page layout" -msgstr "Seiten-Layout" +#: ../../include/permissions.php:46 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" -#: ../../include/text.php:1761 -msgid "You can create your own with the layouts tool" -msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" +#: ../../include/permissions.php:48 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" -#: ../../include/text.php:1803 -msgid "Page content type" -msgstr "Art des Seiteninhalts" +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" -#: ../../include/text.php:1836 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" -#: ../../include/text.php:1953 -msgid "activity" -msgstr "Aktivität" +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner schreiben" -#: ../../include/text.php:2262 -msgid "Design Tools" -msgstr "Gestaltungswerkzeuge" +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" -#: ../../include/text.php:2268 -msgid "Pages" -msgstr "Seiten" +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Neue App" +#: ../../include/permissions.php:55 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Vorschläge" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Mehr anzeigen …" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." +#: ../../include/import.php:1441 +msgid "Unable to import element \"" +msgstr "" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" +#: ../../include/items.php:918 ../../include/items.php:963 +msgid "(Unknown)" +msgstr "(Unbekannt)" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Adresse des Kanals eingeben" +#: ../../include/items.php:1162 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" +#: ../../include/items.php:1164 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notizen" +#: ../../include/items.php:1166 +msgid "Visible to anybody in this network." +msgstr "Für jedes $Projectname-Mitglied sichtbar." -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eintrag löschen" +#: ../../include/items.php:1168 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/widgets.php:281 ../../include/features.php:84 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" +#: ../../include/items.php:1170 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "hinzufügen" +#: ../../include/items.php:1172 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" +#: ../../include/items.php:1176 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archive" +#: ../../include/items.php:3966 +msgid "Privacy group is empty." +msgstr "Gruppe ist leer." -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aktualisieren" +#: ../../include/items.php:3973 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppe: %s" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Konto-Einstellungen" +#: ../../include/items.php:3985 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" +#: ../../include/items.php:4338 +msgid "profile photo" +msgstr "Profilfoto" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Geburtstag" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Alter:" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Klon-Adressen verwalten" +#: ../../include/datetime.php:272 ../../boot.php:2578 +msgid "never" +msgstr "Nie" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanal exportieren" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbundene Apps" +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "Jahr" +msgstr[1] "Jahre" -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "Private Nachrichten" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "Monat" +msgstr[1] "Monate" -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "Kombinierte Anzeige" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "Woche" +msgstr[1] "Wochen" -#: ../../include/widgets.php:658 ../../include/nav.php:196 -msgid "Inbox" -msgstr "Eingang" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "Tag" +msgstr[1] "Tage" -#: ../../include/widgets.php:663 ../../include/nav.php:197 -msgid "Outbox" -msgstr "Ausgang" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "Stunde" +msgstr[1] "Stunden" -#: ../../include/widgets.php:668 ../../include/nav.php:198 -msgid "New Message" -msgstr "Neue Nachricht" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "Minute" +msgstr[1] "Minuten" -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "Konversationen" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "Sekunde" +msgstr[1] "Sekunden" -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "Erhaltene Nachrichten" +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "Gesendete Nachrichten" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "Keine Nachrichten." +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" +msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Kalendermenü" +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." +msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Tagesansicht" +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "Eine Einladung wird benötigt." -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Wochenansicht" +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden." -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Monatsansicht" +#: ../../include/account.php:130 +msgid "Please enter the required information." +msgstr "Bitte gib die benötigten Informationen ein." -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "Kalenderwerkzeuge" +#: ../../include/account.php:198 +msgid "Failed to store account information." +msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "Kalender exportieren" +#: ../../include/account.php:258 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "Kalender importieren" +#: ../../include/account.php:324 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 -msgid "Chatrooms" -msgstr "Chaträume" +#: ../../include/account.php:348 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "Übersicht" +#: ../../include/account.php:351 ../../include/account.php:411 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "Chatmitglieder" +#: ../../include/account.php:423 +msgid "Account approved." +msgstr "Nutzerkonto bestätigt." -#: ../../include/widgets.php:876 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" +#: ../../include/account.php:463 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde widerrufen" -#: ../../include/widgets.php:899 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" +#: ../../include/account.php:748 ../../include/account.php:750 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 -msgid "photo/image" -msgstr "Foto/Bild" +#: ../../include/account.php:756 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../include/widgets.php:1099 -msgid "Click to show more" -msgstr "Klick, um mehr anzuzeigen" +#: ../../include/account.php:761 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." -#: ../../include/widgets.php:1250 -msgid "Rating Tools" -msgstr "Bewertungswerkzeuge" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Häufig" -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 -msgid "Rate Me" -msgstr "Bewerte mich" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Stündlich" -#: ../../include/widgets.php:1259 -msgid "View Ratings" -msgstr "Bewertungen ansehen" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Zwei Mal am Tag" -#: ../../include/widgets.php:1316 -msgid "Forums" -msgstr "Foren" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Täglich" -#: ../../include/widgets.php:1345 -msgid "Tasks" -msgstr "Aufgaben" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Wöchentlich" -#: ../../include/widgets.php:1354 -msgid "Documentation" -msgstr "Dokumentation" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Monatlich" -#: ../../include/widgets.php:1356 -msgid "Project/Site Information" -msgstr "Informationen über das Projekt und diesen Hub" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" +msgstr "Männlich" -#: ../../include/widgets.php:1357 -msgid "For Members" -msgstr "Für Mitglieder" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" +msgstr "Weiblich" -#: ../../include/widgets.php:1358 -msgid "For Administrators" -msgstr "Für Administratoren" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Momentan männlich" -#: ../../include/widgets.php:1359 -msgid "For Developers" -msgstr "Für Entwickler" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Momentan weiblich" -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 -msgid "Member registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Größtenteils männlich" -#: ../../include/widgets.php:1389 -msgid "Inspect queue" -msgstr "Warteschlange kontrollieren" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Größtenteils weiblich" -#: ../../include/widgets.php:1391 -msgid "DB updates" -msgstr "DB-Aktualisierungen" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transsexuell" -#: ../../include/widgets.php:1416 ../../include/nav.php:216 -msgid "Admin" -msgstr "Administration" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Zwischengeschlechtlich" -#: ../../include/widgets.php:1417 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transsexuell" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Zwitter" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Geschlechtslos" -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "unklar" -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Unentschieden" -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Männer" -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Frauen" -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Schwul" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Keine Bevorzugung" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Bild/Foto" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexuell" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexuell" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Element %s installieren: " +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Enthaltsam" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Jungfräulich" -#: ../../include/bbcode.php:254 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schrieb den folgenden %2$s %3$s" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Abweichend" -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetisch" -#: ../../include/bbcode.php:339 -msgid "spoiler" -msgstr "Spoiler" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Unmengen" -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Sexlos" -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 schrieb:" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Single" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Einsam" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Sicherer Modus" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Verfügbar" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Nicht verfügbar" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Nur dieser Hub" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Verguckt" -#: ../../include/security.php:383 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Verknallt" -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Abmelden" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Lerne gerade jemanden kennen" -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Beende diese Sitzung" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Treulos" -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Home" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Sexabhängig" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Freunde/Begünstigte" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Deine Profilseite" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Lose" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Verlobt" -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Profile bearbeiten" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Verheiratet" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Profil bearbeiten" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Gewissermaßen verheiratet" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Deine Bilder" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partner" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Deine Dateien" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Lebensgemeinschaft" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Deine Chaträume" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Informelle Ehe" -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Lesezeichen" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Glücklich" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Nicht Ausschau haltend" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Deine Webseiten" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Swinger" -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Anmelden" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Betrogen" -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Getrennt" -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Labil" -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Geschieden" -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Homepage" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Gewissermaßen geschieden" -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Erzeuge ein Konto" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Verwitwet" -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Ungewiss" -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Es ist kompliziert" -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Interessiert mich nicht" -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Frag mich mal" -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "Dein Grid" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 +msgid "Image/photo" +msgstr "Bild/Foto" -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Mein Kanal" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Element %s installieren: " -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Benachrichtigungen" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Benachrichtigungen" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "Spoiler" -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Persönliche Mail" +#: ../../include/bbcode.php:619 ../../include/wiki.php:525 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" +#: ../../include/bbcode.php:869 +msgid "$1 wrote:" +msgstr "$1 schrieb:" -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y, H:i" -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Terminkalender" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Beginnt:" -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Alle Termine ansehen" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Endet:" -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Keine Angabe" -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Aktion erforderlich" -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Abgeschlossen" -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Lädt ..." +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "In Bearbeitung" -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "gestrichen" -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Bitte warten..." +#: ../../include/security.php:109 +msgid "guest:" +msgstr "Gast:" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Neues Fenster" +#: ../../include/security.php:527 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" +#: ../../include/help.php:25 +msgid "Help:" +msgstr "Hilfe:" -#: ../../include/connections.php:214 +#: ../../include/bookmarks.php:35 #, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen." -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Finde Kanäle" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Neue Verbindung zu dieser Gruppe hinzufügen" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" +#: ../../include/group.php:289 +msgid "edit" +msgstr "Bearbeiten" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" +#: ../../include/group.php:311 ../../include/features.php:83 +msgid "Privacy Groups" +msgstr "Gruppen" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiele: Robert Morgenstein, Angeln" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Gruppe ändern" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Zufallsprofil" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Gruppe hinzufügen" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Lade Freunde ein" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Kanäle, die in keiner Gruppe sind" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" +#: ../../include/group.php:316 ../../include/widgets.php:284 +msgid "add" +msgstr "hinzufügen" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeinsame Verbindung" -msgstr[1] "%d gemeinsame Verbindungen" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mehr zeigen" +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "Keine Quelldatei." -#: ../../include/conversation.php:204 +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" + +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:675 #, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" -#: ../../include/conversation.php:239 +#: ../../include/attach.php:689 #, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." + +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." -#: ../../include/conversation.php:691 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." -#: ../../include/conversation.php:710 -msgid "Categories:" -msgstr "Kategorien:" +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" -#: ../../include/conversation.php:711 -msgid "Filed under:" -msgstr "Gespeichert unter:" +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" -#: ../../include/conversation.php:738 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" +#: ../../include/attach.php:1026 +msgid "Path not found." +msgstr "Pfad nicht gefunden." -#: ../../include/conversation.php:847 -msgid "remove" -msgstr "lösche" +#: ../../include/attach.php:1084 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." -#: ../../include/conversation.php:852 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" +#: ../../include/attach.php:1088 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." -#: ../../include/conversation.php:948 -msgid "View Source" -msgstr "Quelle anzeigen" +#: ../../include/attach.php:1136 +msgid "Empty path" +msgstr "Leere Pfadangabe" -#: ../../include/conversation.php:949 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Neue Seite" -#: ../../include/conversation.php:950 -msgid "Unfollow Thread" -msgstr "Unterhaltung nicht mehr folgen" +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titel" -#: ../../include/conversation.php:955 -msgid "Activity/Posts" -msgstr "Aktivitäten/Beiträge" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Anhänge:" -#: ../../include/conversation.php:957 -msgid "Edit Connection" -msgstr "Verbindung bearbeiten" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "$Projectname-Terminbenachrichtigung:" -#: ../../include/conversation.php:958 -msgid "Message" -msgstr "Nachricht" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dieses Element löschen?" -#: ../../include/conversation.php:1075 +#: ../../include/js_strings.php:8 #, php-format -msgid "%s likes this." -msgstr "%s gefällt das." +msgid "%s show less" +msgstr "%s weniger anzeigen" -#: ../../include/conversation.php:1075 +#: ../../include/js_strings.php:9 #, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." +msgid "%s expand" +msgstr "%s aufklappen" -#: ../../include/conversation.php:1079 +#: ../../include/js_strings.php:10 #, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d Person gefällt das." -msgstr[1] "%2$d Leuten gefällt das." +msgid "%s collapse" +msgstr "%s einklappen" -#: ../../include/conversation.php:1081 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d Person gefällt das nicht." -msgstr[1] "%2$d Leuten gefällt das nicht." +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Kennwort zu kurz" -#: ../../include/conversation.php:1087 -msgid "and" -msgstr "und" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Kennwörter stimmen nicht überein" -#: ../../include/conversation.php:1090 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", und %d andere" +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "alle" -#: ../../include/conversation.php:1091 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "geheime Passphrase" -#: ../../include/conversation.php:1091 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Hinweis zur Passphrase" -#: ../../include/conversation.php:1130 -msgid "Set your location" -msgstr "Standort" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." -#: ../../include/conversation.php:1131 -msgid "Clear browser location" -msgstr "Browser-Standort löschen" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alle schließen" -#: ../../include/conversation.php:1177 -msgid "Tag term:" -msgstr "Schlagwort:" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nichts Neues hier" -#: ../../include/conversation.php:1178 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" -#: ../../include/conversation.php:1210 -msgid "Page link name" -msgstr "Link zur Seite" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Beschreibung (optional)" -#: ../../include/conversation.php:1213 -msgid "Post as" -msgstr "Veröffentlichen als" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Gib eine URL ein:" -#: ../../include/conversation.php:1223 -msgid "Toggle voting" -msgstr "Umfragewerkzeug aktivieren" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?" -#: ../../include/conversation.php:1231 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/conversation.php:1254 -msgid "Set publish date" -msgstr "Veröffentlichungsdatum festlegen" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr " " -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "Ok" +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "her" -#: ../../include/conversation.php:1503 -msgid "Discover" -msgstr "Entdecken" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "von jetzt" -#: ../../include/conversation.php:1506 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "weniger als eine Minute" -#: ../../include/conversation.php:1511 -msgid "Commented Order" -msgstr "Neueste Kommentare" +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "ungefähr eine Minute" -#: ../../include/conversation.php:1514 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d Minuten" -#: ../../include/conversation.php:1518 -msgid "Posted Order" -msgstr "Neueste Beiträge" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "ungefähr eine Stunde" -#: ../../include/conversation.php:1521 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "ungefähr %d Stunden" -#: ../../include/conversation.php:1529 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "ein Tag" -#: ../../include/conversation.php:1538 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d Tage" -#: ../../include/conversation.php:1544 -msgid "Starred" -msgstr "Markiert" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "ungefähr ein Monat" -#: ../../include/conversation.php:1547 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d Monate" -#: ../../include/conversation.php:1554 -msgid "Spam" -msgstr "Spam" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "ungefähr ein Jahr" -#: ../../include/conversation.php:1557 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d Jahre" -#: ../../include/conversation.php:1614 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/conversation.php:1623 -msgid "About" -msgstr "Über" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/conversation.php:1626 -msgid "Profile Details" -msgstr "Profil-Details" +#: ../../include/js_strings.php:45 ../../include/text.php:1289 +msgid "January" +msgstr "Januar" + +#: ../../include/js_strings.php:46 ../../include/text.php:1289 +msgid "February" +msgstr "Februar" + +#: ../../include/js_strings.php:47 ../../include/text.php:1289 +msgid "March" +msgstr "März" + +#: ../../include/js_strings.php:48 ../../include/text.php:1289 +msgid "April" +msgstr "April" + +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "Mai" + +#: ../../include/js_strings.php:50 ../../include/text.php:1289 +msgid "June" +msgstr "Juni" + +#: ../../include/js_strings.php:51 ../../include/text.php:1289 +msgid "July" +msgstr "Juli" + +#: ../../include/js_strings.php:52 ../../include/text.php:1289 +msgid "August" +msgstr "August" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Fotoalben" +#: ../../include/js_strings.php:53 ../../include/text.php:1289 +msgid "September" +msgstr "September" -#: ../../include/conversation.php:1642 -msgid "Files and Storage" -msgstr "Dateien und Speicher" +#: ../../include/js_strings.php:54 ../../include/text.php:1289 +msgid "October" +msgstr "Oktober" -#: ../../include/conversation.php:1678 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" +#: ../../include/js_strings.php:55 ../../include/text.php:1289 +msgid "November" +msgstr "November" -#: ../../include/conversation.php:1688 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" +#: ../../include/js_strings.php:56 ../../include/text.php:1289 +msgid "December" +msgstr "Dezember" -#: ../../include/conversation.php:1747 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Zusage" -msgstr[1] "Zusagen" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "Jan" -#: ../../include/conversation.php:1750 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Absage" -msgstr[1] "Absagen" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "Feb" -#: ../../include/conversation.php:1753 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] " Unentschlossen" -msgstr[1] "Unentschlossene" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "Mär" -#: ../../include/conversation.php:1756 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Zustimmung" -msgstr[1] "Zustimmungen" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "Apr" -#: ../../include/conversation.php:1759 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Ablehnung" -msgstr[1] "Ablehnungen" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "Mai" -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Enthaltung" -msgstr[1] "Enthaltungen" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "Jun" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Häufig" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "Jul" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Stündlich" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "Aug" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Zwei Mal am Tag" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "Sep" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Täglich" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "Okt" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Wöchentlich" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "Nov" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Monatlich" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "Dez" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Momentan männlich" +#: ../../include/js_strings.php:69 ../../include/text.php:1285 +msgid "Sunday" +msgstr "Sonntag" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Momentan weiblich" +#: ../../include/js_strings.php:70 ../../include/text.php:1285 +msgid "Monday" +msgstr "Montag" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Größtenteils männlich" +#: ../../include/js_strings.php:71 ../../include/text.php:1285 +msgid "Tuesday" +msgstr "Dienstag" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Größtenteils weiblich" +#: ../../include/js_strings.php:72 ../../include/text.php:1285 +msgid "Wednesday" +msgstr "Mittwoch" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transsexuell" +#: ../../include/js_strings.php:73 ../../include/text.php:1285 +msgid "Thursday" +msgstr "Donnerstag" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Zwischengeschlechtlich" +#: ../../include/js_strings.php:74 ../../include/text.php:1285 +msgid "Friday" +msgstr "Freitag" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transsexuell" +#: ../../include/js_strings.php:75 ../../include/text.php:1285 +msgid "Saturday" +msgstr "Samstag" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Zwitter" +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "So" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Geschlechtslos" +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "Mo" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "unklar" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "Di" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Andere" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "Mi" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Unentschieden" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "Do" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Männer" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "Fr" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Frauen" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "Sa" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Schwul" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "heute" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "Monat" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Keine Bevorzugung" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "Woche" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexuell" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "Tag" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexuell" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Ganztägig" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Enthaltsam" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Jungfräulich" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Abweichend" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetisch" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Unmengen" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Sexlos" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Single" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Einsam" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "Wer kann das sehen?" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Verfügbar" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Benutzerdefinierte Auswahl" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Nicht verfügbar" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Verguckt" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Anzeigen" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Verknallt" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "Nicht anzeigen" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Lerne gerade jemanden kennen" +#: ../../include/acl_selectors.php:207 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
    Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Treulos" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sexabhängig" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Namensfeld leer" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Freunde/Begünstigte" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Name ist zu lang" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Lose" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Keine Account-Kennung" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Verlobt" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Verheiratet" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Gewissermaßen verheiratet" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partner" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Lebensgemeinschaft" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Standard-Profil" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Informelle Ehe" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Glücklich" +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Nicht Ausschau haltend" +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Swinger" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "Geschlecht:" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Betrogen" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "Status:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Getrennt" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "Homepage:" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Labil" +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "gerade online" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Geschieden" +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Gewissermaßen geschieden" +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "j. F Y" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Verwitwet" +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "j. F" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Ungewiss" +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "Geburtstag:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Es ist kompliziert" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Interessiert mich nicht" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Frag mich mal" +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "Schlagworte:" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "Politische Ansichten:" -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "Nur ich" +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Öffentlich" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "Jeder innerhalb des $Projectname Netzwerks" +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "Gefällt:" -#: ../../include/PermissionDescription.php:118 -#, php-format -msgid "Any account on %s" -msgstr "Jedes Nutzerkonto auf %s" +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "Gefällt nicht:" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "Alle meine Verbindungen" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "Nur Verbindungen, denen ich es explizit erlaube" +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" -#: ../../include/PermissionDescription.php:161 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "Fernsehen:" -#: ../../include/PermissionDescription.php:162 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "Schule/Ausbildung:" -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "Gefällt mir" -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Neues Fenster" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt." +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden." +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finde Kanäle" -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiele: Robert Morgenstein, Angeln" -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Administrator" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Zufallsprofil" -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Lade Freunde ein" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Nutzerkonto bestätigt." +#: ../../include/contact_widgets.php:53 ../../include/widgets.php:346 +#: ../../include/features.php:97 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde widerrufen" +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +msgid "Everything" +msgstr "Alles" -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Nutzerkonto wurde bestätigt. Bitte melde Dich an!" +#: ../../include/contact_widgets.php:91 ../../include/taxonomy.php:188 +#: ../../include/taxonomy.php:270 ../../include/widgets.php:46 +#: ../../include/widgets.php:465 +msgid "Categories" +msgstr "Kategorien" -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeinsame Verbindung" +msgstr[1] "%d gemeinsame Verbindungen" -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mehr zeigen" -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Ausgeloggt." -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "Keine Quelldatei." +#: ../../include/auth.php:286 +msgid "Login failed." +msgstr "Login fehlgeschlagen." -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" +#: ../../include/activities.php:41 +msgid " and " +msgstr "und" -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "öffentliches Profil" -#: ../../include/attach.php:672 +#: ../../include/activities.php:58 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s auf “%3$s” geändert" -#: ../../include/attach.php:686 +#: ../../include/activities.php:59 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." - -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ist jetzt mit %2$s verbunden" -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Pfad nicht gefunden." +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s an" -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." +#: ../../include/conversation.php:243 ../../include/text.php:1059 +#: ../../include/text.php:1064 +msgid "poked" +msgstr "stupste" -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Leere Pfadangabe" +#: ../../include/conversation.php:713 +msgid "Categories:" +msgstr "Kategorien:" -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" +#: ../../include/conversation.php:714 +msgid "Filed under:" +msgstr "Gespeichert unter:" -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" +#: ../../include/conversation.php:741 +msgid "View in context" +msgstr "Im Zusammenhang anschauen" -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Name ist zu lang" +#: ../../include/conversation.php:851 +msgid "remove" +msgstr "lösche" -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Keine Account-Kennung" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" +msgstr "Lösche die ausgewählten Elemente" -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." +#: ../../include/conversation.php:949 +msgid "View Source" +msgstr "Quelle anzeigen" -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." +#: ../../include/conversation.php:950 +msgid "Follow Thread" +msgstr "Unterhaltung folgen" -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Unterhaltung nicht mehr folgen" -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" +#: ../../include/conversation.php:956 +msgid "Activity/Posts" +msgstr "Aktivitäten/Beiträge" -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Standard-Profil" +#: ../../include/conversation.php:958 +msgid "Edit Connection" +msgstr "Verbindung bearbeiten" -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +#: ../../include/conversation.php:959 +msgid "Message" +msgstr "Nachricht" -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s likes this." +msgstr "%s gefällt das." -#: ../../include/channel.php:958 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gefällt das nicht." -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Geschlecht:" +#: ../../include/conversation.php:1080 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d Person gefällt das." +msgstr[1] "%2$d Leuten gefällt das." -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "Status:" +#: ../../include/conversation.php:1082 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d Person gefällt das nicht." +msgstr[1] "%2$d Leuten gefällt das nicht." -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../include/conversation.php:1088 +msgid "and" +msgstr "und" -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "gerade online" +#: ../../include/conversation.php:1091 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] ", und %d andere" -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s like this." +msgstr "%s gefällt das." -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "j. F Y" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s don't like this." +msgstr "%s gefällt das nicht." -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "j. F" +#: ../../include/conversation.php:1135 +msgid "Set your location" +msgstr "Standort" -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Geburtstag:" +#: ../../include/conversation.php:1136 +msgid "Clear browser location" +msgstr "Browser-Standort löschen" -#: ../../include/channel.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +#: ../../include/conversation.php:1184 +msgid "Tag term:" +msgstr "Schlagwort:" -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/conversation.php:1185 +msgid "Where are you right now?" +msgstr "Wo bist Du jetzt grade?" -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../include/conversation.php:1194 +msgid "Comments enabled" +msgstr "Kommentare aktiviert" -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/conversation.php:1195 +msgid "Comments disabled" +msgstr "Kommentare deaktiviert" -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/conversation.php:1233 +msgid "Page link name" +msgstr "Link zur Seite" -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../include/conversation.php:1236 +msgid "Post as" +msgstr "Veröffentlichen als" -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../include/conversation.php:1250 +msgid "Toggle voting" +msgstr "Umfragewerkzeug aktivieren" -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../include/conversation.php:1253 +msgid "Disable comments" +msgstr "Kommentare deaktivieren" -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../include/conversation.php:1254 +msgid "Toggle comments" +msgstr "Kommentare umschalten" -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../include/conversation.php:1262 +msgid "Categories (optional, comma-separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../include/conversation.php:1285 +msgid "Other networks and post services" +msgstr "Andere Netzwerke und Platformen" -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../include/conversation.php:1291 +msgid "Set publish date" +msgstr "Veröffentlichungsdatum festlegen" -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../include/conversation.php:1540 +msgid "Discover" +msgstr "Entdecken" -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../include/conversation.php:1543 +msgid "Imported public streams" +msgstr "Importierte öffentliche Beiträge" -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../include/conversation.php:1548 +msgid "Commented Order" +msgstr "Neueste Kommentare" -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../include/conversation.php:1551 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../include/conversation.php:1555 +msgid "Posted Order" +msgstr "Neueste Beiträge" -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "Gefällt mir" +#: ../../include/conversation.php:1558 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Allgemeine Funktionen" +#: ../../include/conversation.php:1566 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Verfall von Inhalten" +#: ../../include/conversation.php:1575 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." +#: ../../include/conversation.php:1581 +msgid "Starred" +msgstr "Markiert" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Mehrfachprofile" +#: ../../include/conversation.php:1584 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" +#: ../../include/conversation.php:1591 +msgid "Spam" +msgstr "Spam" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Erweiterte Profile" +#: ../../include/conversation.php:1594 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" +#: ../../include/conversation.php:1653 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Profil-Import/Export" +#: ../../include/conversation.php:1662 +msgid "About" +msgstr "Über" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren" +#: ../../include/conversation.php:1665 +msgid "Profile Details" +msgstr "Profil-Details" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Webseiten" +#: ../../include/conversation.php:1681 +msgid "Files and Storage" +msgstr "Dateien und Speicher" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" +#: ../../include/conversation.php:1701 ../../include/conversation.php:1704 +#: ../../include/widgets.php:883 +msgid "Chatrooms" +msgstr "Chaträume" -#: ../../include/features.php:55 -msgid "Hide Rating" -msgstr "Bewertung verbergen" +#: ../../include/conversation.php:1717 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" -#: ../../include/features.php:55 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten." +#: ../../include/conversation.php:1727 +msgid "Manage Webpages" +msgstr "Webseiten verwalten" -#: ../../include/features.php:56 -msgid "Private Notes" -msgstr "Private Notizen" +#: ../../include/conversation.php:1792 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Zusage" +msgstr[1] "Zusagen" -#: ../../include/features.php:56 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" +#: ../../include/conversation.php:1795 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Absage" +msgstr[1] "Absagen" -#: ../../include/features.php:57 -msgid "Navigation Channel Select" -msgstr "Kanal-Auswahl in der Navigationsleiste" +#: ../../include/conversation.php:1798 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] " Unentschlossen" +msgstr[1] "Unentschlossene" -#: ../../include/features.php:57 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" +#: ../../include/conversation.php:1801 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Zustimmung" +msgstr[1] "Zustimmungen" -#: ../../include/features.php:58 -msgid "Photo Location" -msgstr "Aufnahmeort" +#: ../../include/conversation.php:1804 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Ablehnung" +msgstr[1] "Ablehnungen" -#: ../../include/features.php:58 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" +#: ../../include/conversation.php:1807 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Enthaltung" +msgstr[1] "Enthaltungen" -#: ../../include/features.php:59 -msgid "Access Controlled Chatrooms" -msgstr "Zugriffskontrollierte Chaträume" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Schlagwörter" -#: ../../include/features.php:59 -msgid "Provide chatrooms and chat services with access control." -msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Schlüsselwörter" -#: ../../include/features.php:60 -msgid "Smart Birthdays" -msgstr "Smarte Geburtstage" +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "habe" -#: ../../include/features.php:60 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "hat" -#: ../../include/features.php:61 -msgid "Expert Mode" -msgstr "Expertenmodus" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "will" -#: ../../include/features.php:61 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Aktiviert den Expertenmodus, der fortgeschrittene Konfigurationsoptionen zur Verfügung stellt" +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "will" -#: ../../include/features.php:62 -msgid "Premium Channel" -msgstr "Premium-Kanal" +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "gefällt" -#: ../../include/features.php:62 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "missfällt" -#: ../../include/features.php:67 -msgid "Post Composition Features" -msgstr "Nachbearbeitungsfunktionen" +#: ../../include/text.php:450 +msgid "prev" +msgstr "vorherige" -#: ../../include/features.php:70 -msgid "Large Photos" -msgstr "Große Fotos" +#: ../../include/text.php:452 +msgid "first" +msgstr "erste" -#: ../../include/features.php:70 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." +#: ../../include/text.php:481 +msgid "last" +msgstr "letzte" -#: ../../include/features.php:71 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" +#: ../../include/text.php:484 +msgid "next" +msgstr "nächste" -#: ../../include/features.php:72 -msgid "Even More Encryption" -msgstr "Noch mehr Verschlüsselung" +#: ../../include/text.php:494 +msgid "older" +msgstr "älter" -#: ../../include/features.php:72 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" +#: ../../include/text.php:496 +msgid "newer" +msgstr "neuer" -#: ../../include/features.php:73 -msgid "Enable Voting Tools" -msgstr "Umfragewerkzeuge aktivieren" +#: ../../include/text.php:889 +msgid "No connections" +msgstr "Keine Verbindungen" -#: ../../include/features.php:73 -msgid "Provide a class of post which others can vote on" -msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" +#: ../../include/text.php:914 +#, php-format +msgid "View all %s connections" +msgstr "Alle Verbindungen von %s anzeigen" -#: ../../include/features.php:74 -msgid "Delayed Posting" -msgstr "Verzögertes Senden" +#: ../../include/text.php:1059 ../../include/text.php:1064 +msgid "poke" +msgstr "anstupsen" -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" -msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" +#: ../../include/text.php:1065 +msgid "ping" +msgstr "anpingen" -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Doppelte Beiträge unterdrücken" +#: ../../include/text.php:1065 +msgid "pinged" +msgstr "pingte" -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." +#: ../../include/text.php:1066 +msgid "prod" +msgstr "knuffen" -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" -msgstr "Netzwerk- und Stream-Filter" +#: ../../include/text.php:1066 +msgid "prodded" +msgstr "knuffte" -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "Suche nach Datum" +#: ../../include/text.php:1067 +msgid "slap" +msgstr "ohrfeigen" -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" +#: ../../include/text.php:1067 +msgid "slapped" +msgstr "ohrfeigte" -#: ../../include/features.php:83 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Gruppen" +#: ../../include/text.php:1068 +msgid "finger" +msgstr "befummeln" -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" +#: ../../include/text.php:1068 +msgid "fingered" +msgstr "befummelte" -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" +#: ../../include/text.php:1069 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "Persönlicher Netzwerkreiter" +#: ../../include/text.php:1069 +msgid "rebuffed" +msgstr "zurückgewiesen" -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" +#: ../../include/text.php:1081 +msgid "happy" +msgstr "glücklich" -#: ../../include/features.php:86 -msgid "Network New Tab" -msgstr "Netzwerkreiter Neu" +#: ../../include/text.php:1082 +msgid "sad" +msgstr "traurig" -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" -msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" +#: ../../include/text.php:1083 +msgid "mellow" +msgstr "sanft" -#: ../../include/features.php:87 -msgid "Affinity Tool" -msgstr "Beziehungs-Tool" +#: ../../include/text.php:1084 +msgid "tired" +msgstr "müde" -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" +#: ../../include/text.php:1085 +msgid "perky" +msgstr "frech" -#: ../../include/features.php:88 -msgid "Connection Filtering" -msgstr "Filter für Verbindungen" +#: ../../include/text.php:1086 +msgid "angry" +msgstr "sauer" -#: ../../include/features.php:88 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" +#: ../../include/text.php:1087 +msgid "stupefied" +msgstr "verblüfft" -#: ../../include/features.php:89 -msgid "Show channel suggestions" -msgstr "Kanalvorschläge anzeigen" +#: ../../include/text.php:1088 +msgid "puzzled" +msgstr "verwirrt" -#: ../../include/features.php:94 -msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentar-Tools" +#: ../../include/text.php:1089 +msgid "interested" +msgstr "interessiert" -#: ../../include/features.php:95 -msgid "Community Tagging" -msgstr "Gemeinschaftliches Verschlagworten" +#: ../../include/text.php:1090 +msgid "bitter" +msgstr "verbittert" -#: ../../include/features.php:95 -msgid "Ability to tag existing posts" -msgstr "Ermöglicht das Verschlagworten existierender Beiträge" +#: ../../include/text.php:1091 +msgid "cheerful" +msgstr "fröhlich" -#: ../../include/features.php:96 -msgid "Post Categories" -msgstr "Beitrags-Kategorien" +#: ../../include/text.php:1092 +msgid "alive" +msgstr "lebendig" -#: ../../include/features.php:96 -msgid "Add categories to your posts" -msgstr "Aktiviert Kategorien für Beiträge" +#: ../../include/text.php:1093 +msgid "annoyed" +msgstr "verärgert" -#: ../../include/features.php:97 -msgid "Emoji Reactions" -msgstr "Emoji Reaktionen" +#: ../../include/text.php:1094 +msgid "anxious" +msgstr "unruhig" -#: ../../include/features.php:97 -msgid "Add emoji reaction ability to posts" -msgstr "Aktiviert Emoji-Reaktionen für Beiträge" +#: ../../include/text.php:1095 +msgid "cranky" +msgstr "schrullig" -#: ../../include/features.php:98 -msgid "Ability to file posts under folders" -msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" +#: ../../include/text.php:1096 +msgid "disturbed" +msgstr "verstört" -#: ../../include/features.php:99 -msgid "Dislike Posts" -msgstr "Gefällt-mir-nicht-Beiträge" +#: ../../include/text.php:1097 +msgid "frustrated" +msgstr "frustriert" -#: ../../include/features.php:99 -msgid "Ability to dislike posts/comments" -msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" +#: ../../include/text.php:1098 +msgid "depressed" +msgstr "deprimiert" -#: ../../include/features.php:100 -msgid "Star Posts" -msgstr "Beiträge mit Sternchen versehen" +#: ../../include/text.php:1099 +msgid "motivated" +msgstr "motiviert" -#: ../../include/features.php:100 -msgid "Ability to mark special posts with a star indicator" -msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" +#: ../../include/text.php:1100 +msgid "relaxed" +msgstr "entspannt" -#: ../../include/features.php:101 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" +#: ../../include/text.php:1101 +msgid "surprised" +msgstr "überrascht" -#: ../../include/features.php:101 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" +#: ../../include/text.php:1289 +msgid "May" +msgstr "Mai" -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" +#: ../../include/text.php:1366 ../../include/text.php:1370 +msgid "Unknown Attachment" +msgstr "Unbekannter Anhang" -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" +#: ../../include/text.php:1372 +msgid "unknown" +msgstr "unbekannt" -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" -msgstr "Wer kann das sehen?" +#: ../../include/text.php:1408 +msgid "remove category" +msgstr "Kategorie entfernen" -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" -msgstr "Benutzerdefinierte Auswahl" +#: ../../include/text.php:1485 +msgid "remove from file" +msgstr "aus der Datei entfernen" -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." +#: ../../include/text.php:1784 ../../include/text.php:1855 +msgid "default" +msgstr "Standard" -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Anzeigen" +#: ../../include/text.php:1792 +msgid "Page layout" +msgstr "Seiten-Layout" -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "Nicht anzeigen" +#: ../../include/text.php:1792 +msgid "You can create your own with the layouts tool" +msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Andere Netzwerke und Platformen" +#: ../../include/text.php:1834 +msgid "Page content type" +msgstr "Art des Seiteninhalts" -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These" -" permissions set who is allowed to view the post." -msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
    Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." +#: ../../include/text.php:1867 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Ausgeloggt." +#: ../../include/text.php:2004 +msgid "activity" +msgstr "Aktivität" -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" +#: ../../include/text.php:2305 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Geburtstag" +#: ../../include/text.php:2311 +msgid "Pages" +msgstr "Seiten" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alter:" +#: ../../include/text.php:2333 +msgid "Import website..." +msgstr "Webseite importieren..." -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" +#: ../../include/text.php:2334 +msgid "Select folder to import" +msgstr "Ordner zum Importieren auswählen" -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "Nie" +#: ../../include/text.php:2335 +msgid "Import from a zipped folder:" +msgstr "Aus einem gezippten Ordner importieren:" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" +#: ../../include/text.php:2336 +msgid "Import from cloud files:" +msgstr "Aus Cloud-Dateien importieren:" -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" +#: ../../include/text.php:2337 +msgid "/cloud/channel/path/to/folder" +msgstr "/Cloud/Kanal/Pfad/zum/Ordner" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "Jahr" -msgstr[1] "Jahre" +#: ../../include/text.php:2338 +msgid "Enter path to website files" +msgstr "Pfad zu Webseitendateien eingeben" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "Monat" -msgstr[1] "Monate" +#: ../../include/text.php:2339 +msgid "Select folder" +msgstr "Ordner auswählen" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "Woche" -msgstr[1] "Wochen" +#: ../../include/text.php:2340 +msgid "Export website..." +msgstr "Webseite exportieren..." -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "Tag" -msgstr[1] "Tage" +#: ../../include/text.php:2341 +msgid "Export to a zip file" +msgstr "In eine ZIP-Datei exportieren" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "Stunde" -msgstr[1] "Stunden" +#: ../../include/text.php:2342 +msgid "website.zip" +msgstr "website.zip" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "Minute" -msgstr[1] "Minuten" +#: ../../include/text.php:2343 +msgid "Enter a name for the zip file." +msgstr "Geben Sie einen für die ZIP-Datei ein." -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "Sekunde" -msgstr[1] "Sekunden" +#: ../../include/text.php:2344 +msgid "Export to cloud files" +msgstr "In Cloud-Dateien exportieren" -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" +#: ../../include/text.php:2345 +msgid "/path/to/export/folder" +msgstr "/Pfad/zum/exportierenden/Ordner" -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" +#: ../../include/text.php:2346 +msgid "Enter a path to a cloud files destination." +msgstr "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein." -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen." +#: ../../include/text.php:2347 +msgid "Specify folder" +msgstr "Ordner angeben" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Neue Verbindung zu dieser Gruppe hinzufügen" +#: ../../include/api.php:1330 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" -#: ../../include/group.php:289 -msgid "edit" -msgstr "Bearbeiten" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Gruppe ändern" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Sicherer Modus" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Gruppe hinzufügen" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Kanäle, die in keiner Gruppe sind" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Nur dieser Hub" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dieses Element löschen?" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Weniger anzeigen" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[no subject]" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] aufklappen" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] einklappen" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Kennwort zu kurz" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "System" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Kennwörter stimmen nicht überein" +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Neue App" -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "alle" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Vorschläge" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "geheime Passphrase" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Mehr anzeigen …" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hinweis zur Passphrase" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alle schließen" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Adresse des Kanals eingeben" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nichts Neues hier" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notizen" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Beschreibung (optional)" +#: ../../include/widgets.php:275 +msgid "Remove term" +msgstr "Eintrag löschen" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Gib eine URL ein:" +#: ../../include/widgets.php:283 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?" +#: ../../include/widgets.php:390 +msgid "Archives" +msgstr "Archive" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/widgets.php:552 +msgid "Refresh" +msgstr "Aktualisieren" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr " " +#: ../../include/widgets.php:592 +msgid "Account settings" +msgstr "Konto-Einstellungen" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "her" +#: ../../include/widgets.php:598 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "von jetzt" +#: ../../include/widgets.php:607 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "weniger als eine Minute" +#: ../../include/widgets.php:614 +msgid "Feature/Addon settings" +msgstr "Plugin-Einstellungen" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "ungefähr eine Minute" +#: ../../include/widgets.php:620 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d Minuten" +#: ../../include/widgets.php:627 +msgid "Manage locations" +msgstr "Klon-Adressen verwalten" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "ungefähr eine Stunde" +#: ../../include/widgets.php:634 +msgid "Export channel" +msgstr "Kanal exportieren" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "ungefähr %d Stunden" +#: ../../include/widgets.php:640 +msgid "Connected apps" +msgstr "Verbundene Apps" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "ein Tag" +#: ../../include/widgets.php:664 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d Tage" +#: ../../include/widgets.php:693 +msgid "Private Mail Menu" +msgstr "Private Nachrichten" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "ungefähr ein Monat" +#: ../../include/widgets.php:695 +msgid "Combined View" +msgstr "Kombinierte Anzeige" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d Monate" +#: ../../include/widgets.php:727 ../../include/widgets.php:739 +msgid "Conversations" +msgstr "Konversationen" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "ungefähr ein Jahr" +#: ../../include/widgets.php:731 +msgid "Received Messages" +msgstr "Erhaltene Nachrichten" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d Jahre" +#: ../../include/widgets.php:735 +msgid "Sent Messages" +msgstr "Gesendete Nachrichten" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/widgets.php:749 +msgid "No messages." +msgstr "Keine Nachrichten." -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/widgets.php:767 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "Mai" +#: ../../include/widgets.php:793 +msgid "Events Tools" +msgstr "Kalenderwerkzeuge" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "Jan" +#: ../../include/widgets.php:794 +msgid "Export Calendar" +msgstr "Kalender exportieren" + +#: ../../include/widgets.php:795 +msgid "Import Calendar" +msgstr "Kalender importieren" + +#: ../../include/widgets.php:887 +msgid "Overview" +msgstr "Übersicht" + +#: ../../include/widgets.php:894 +msgid "Chat Members" +msgstr "Chatmitglieder" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "Feb" +#: ../../include/widgets.php:916 +msgid "Wiki List" +msgstr "Wikiliste" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "Mär" +#: ../../include/widgets.php:954 +msgid "Wiki Pages" +msgstr "Wikiseiten" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "Apr" +#: ../../include/widgets.php:989 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "Mai" +#: ../../include/widgets.php:1020 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "Jun" +#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 +msgid "photo/image" +msgstr "Foto/Bild" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "Jul" +#: ../../include/widgets.php:1221 +msgid "Click to show more" +msgstr "Klick, um mehr anzuzeigen" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "Aug" +#: ../../include/widgets.php:1372 +msgid "Rating Tools" +msgstr "Bewertungswerkzeuge" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "Sep" +#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 +msgid "Rate Me" +msgstr "Bewerte mich" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "Okt" +#: ../../include/widgets.php:1381 +msgid "View Ratings" +msgstr "Bewertungen ansehen" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "Nov" +#: ../../include/widgets.php:1465 +msgid "Forums" +msgstr "Foren" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "Dez" +#: ../../include/widgets.php:1494 +msgid "Tasks" +msgstr "Aufgaben" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "So" +#: ../../include/widgets.php:1505 +msgid "Documentation" +msgstr "Dokumentation" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "Mo" +#: ../../include/widgets.php:1557 ../../include/widgets.php:1595 +msgid "Member registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "Di" +#: ../../include/widgets.php:1563 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "Mi" +#: ../../include/widgets.php:1565 +msgid "DB updates" +msgstr "DB-Aktualisierungen" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "Do" +#: ../../include/widgets.php:1591 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "Fr" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "Sa" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "heute" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "Monat" +#: ../../include/zot.php:3711 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "Woche" +#: ../../include/features.php:50 +msgid "General Features" +msgstr "Allgemeine Funktionen" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "Tag" +#: ../../include/features.php:52 +msgid "Content Expiration" +msgstr "Verfall von Inhalten" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Ganztägig" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." -#: ../../include/network.php:657 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" +#: ../../include/features.php:53 +msgid "Multiple Profiles" +msgstr "Mehrfachprofile" -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Kein Betreff" +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" +msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/features.php:54 +msgid "Advanced Profiles" +msgstr "Erweiterte Profile" -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" +msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "GNU-Social" +#: ../../include/features.php:55 +msgid "Profile Import/Export" +msgstr "Profil-Import/Export" -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" +msgstr "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren" -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/features.php:56 +msgid "Web Pages" +msgstr "Webseiten" -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" +msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot!" +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" +msgstr "Stelle ein Wiki in Deinem Kanal zur Verfügung" -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/features.php:59 +msgid "Private Notes" +msgstr "Private Notizen" -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/features.php:60 +msgid "Navigation Channel Select" +msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/photos.php:110 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../include/features.php:61 +msgid "Photo Location" +msgstr "Aufnahmeort" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Fotospeicherung fehlgeschlagen." +#: ../../include/features.php:61 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "ein neues Foto" +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" +msgstr "Zugriffskontrollierte Chaträume" -#: ../../include/photos.php:299 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s hat %2$s auf %3$s veröffentlicht" +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." +msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" +#: ../../include/features.php:63 +msgid "Smart Birthdays" +msgstr "Smarte Geburtstage" -#: ../../include/zot.php:699 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" +#: ../../include/features.php:63 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." -#: ../../include/zot.php:715 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" +#: ../../include/features.php:68 +msgid "Post Composition Features" +msgstr "Nachbearbeitungsfunktionen" -#: ../../include/zot.php:2363 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +#: ../../include/features.php:69 +msgid "Large Photos" +msgstr "Große Fotos" -#: ../../include/zot.php:3712 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" +#: ../../include/features.php:69 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" +#: ../../include/features.php:70 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" +#: ../../include/features.php:71 +msgid "Even More Encryption" +msgstr "Noch mehr Verschlüsselung" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" +#: ../../include/features.php:71 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" +#: ../../include/features.php:72 +msgid "Enable Voting Tools" +msgstr "Umfragewerkzeuge aktivieren" + +#: ../../include/features.php:72 +msgid "Provide a class of post which others can vote on" +msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" +#: ../../include/features.php:73 +msgid "Disable Comments" +msgstr "Kommentare deaktivieren" -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kann meine Datei- und Bilderordner sehen" +#: ../../include/features.php:73 +msgid "Provide the option to disable comments for a post" +msgstr "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Verzögertes Senden" -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Doppelte Beiträge unterdrücken" -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" +#: ../../include/features.php:75 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Netzwerk- und Stream-Filter" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" +#: ../../include/features.php:82 +msgid "Search by Date" +msgstr "Suche nach Datum" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Persönlicher Netzwerkreiter" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kann in meine Datei- und Bilderordner schreiben" +#: ../../include/features.php:85 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Netzwerkreiter Neu" -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Beziehungs-Tool" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" +#: ../../include/features.php:88 +msgid "Show friend and connection suggestions" +msgstr "Freund- und Verbindungsvorschläge anzeigen" -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Soziales Netzwerk" +#: ../../include/features.php:93 +msgid "Post/Comment Tools" +msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Soziales Netzwerk - Weitgehend öffentlich" +#: ../../include/features.php:94 +msgid "Community Tagging" +msgstr "Gemeinschaftliches Verschlagworten" -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Soziales Netzwerk - Beschränkt" +#: ../../include/features.php:94 +msgid "Ability to tag existing posts" +msgstr "Ermöglicht das Verschlagworten existierender Beiträge" -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Soziales Netzwerk - Privat" +#: ../../include/features.php:95 +msgid "Post Categories" +msgstr "Beitrags-Kategorien" -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Forum" +#: ../../include/features.php:95 +msgid "Add categories to your posts" +msgstr "Aktiviert Kategorien für Beiträge" -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Forum - Weitgehend öffentlich" +#: ../../include/features.php:96 +msgid "Emoji Reactions" +msgstr "Emoji Reaktionen" -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Forum - Beschränkt" +#: ../../include/features.php:96 +msgid "Add emoji reaction ability to posts" +msgstr "Aktiviert Emoji-Reaktionen für Beiträge" -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Forum - Privat" +#: ../../include/features.php:97 +msgid "Ability to file posts under folders" +msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Teilen von Feeds" +#: ../../include/features.php:98 +msgid "Dislike Posts" +msgstr "Gefällt-mir-nicht-Beiträge" -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Feeds - Weitgehend öffentlich" +#: ../../include/features.php:98 +msgid "Ability to dislike posts/comments" +msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Feeds - Beschränkt" +#: ../../include/features.php:99 +msgid "Star Posts" +msgstr "Beiträge mit Sternchen versehen" -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" +#: ../../include/features.php:99 +msgid "Ability to mark special posts with a star indicator" +msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" +#: ../../include/features.php:100 +msgid "Tag Cloud" +msgstr "Schlagwort-Wolke" -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Speziell - Gruppenarchiv" +#: ../../include/features.php:100 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" +#: ../../include/features.php:109 +msgid "Connection Filtering" +msgstr "Filter für Verbindungen" -#: ../../include/activities.php:41 -msgid " and " -msgstr "und" +#: ../../include/features.php:110 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "öffentliches Profil" +#: ../../include/features.php:120 +msgid "Premium Channel" +msgstr "Premium-Kanal" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" +#: ../../include/features.php:121 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" +#: ../../include/features.php:128 +msgid "Advanced Directory Search" +msgstr "Erweiterte Verzeichnissuche" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." +#: ../../include/features.php:129 +msgid "Allows creation of complex directory search queries" +msgstr "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Anhänge:" +#: ../../include/features.php:135 +msgid "Advanced Theme and Layout Settings" +msgstr "Erweiterte Design- und Layout-Einstellungen" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname-Terminbenachrichtigung:" +#: ../../include/features.php:136 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Erlaubt die Feineinstellung von Designs und Seitenlayouts" -#: ../../view/theme/redbasic/php/config.php:82 +#: ../../view/theme/redbasic/php/config.php:9 msgid "Focus (Hubzilla default)" msgstr "Focus (Voreinstellung für Hubzilla)" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Theme settings" msgstr "Theme-Einstellungen" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" -msgstr "Schema wählen" - -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Narrow navbar" msgstr "Schmale Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar background color" msgstr "Hintergrundfarbe der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Navigation bar gradient top color" msgstr "Farbverlauf der Navigationsleiste: Farbe oben" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Navigation bar gradient bottom color" msgstr "Farbverlauf der Navigationsleiste: Farbe unten" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Navigation active button gradient top color" msgstr "Navigations-Button aktiv: Farbe für Farbverlauf oben" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Navigation active button gradient bottom color" msgstr "Navigations-Button aktiv: Farbe für Farbverlauf unten" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Navigation bar border color " msgstr "Farbe für den Rand der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Navigation bar icon color " msgstr "Farbe für die Icons der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Navigation bar active icon color " msgstr "Farbe für aktive Icons der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:120 msgid "link color" msgstr "Farbe für Links" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set font-color for banner" msgstr "Farbe der Schrift des Banners" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the background color" msgstr "Hintergrundfarbe" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set the background image" msgstr "Hintergrundbild" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set the background color of items" msgstr "Hintergrundfarbe für Beiträge" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:125 msgid "Set the background color of comments" msgstr "Hintergrundfarbe für Kommentare" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set the border color of comments" msgstr "Farbe des Randes von Kommentaren" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set the indent for comments" msgstr "Einzugsbreite für Kommentare" -#: ../../view/theme/redbasic/php/config.php:122 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set the basic color for item icons" msgstr "Grundfarbe für Beitrags-Icons" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Set the hover color for item icons" msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Set font-size for the entire application" msgstr "Schriftgröße für die gesamte Anwendung" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Example: 14px" msgstr "Beispiel: 14px" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set font-size for posts and comments" msgstr "Schriftgröße für Beiträge und Kommentare" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set font-color for posts and comments" msgstr "Schriftfarbe für Beiträge und Kommentare" -#: ../../view/theme/redbasic/php/config.php:127 +#: ../../view/theme/redbasic/php/config.php:133 msgid "Set radius of corners" msgstr "Ecken-Radius" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:134 msgid "Set shadow depth of photos" msgstr "Schattentiefe von Fotos" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Set maximum width of content region in pixel" msgstr "Maximalbreite des Inhaltsbereichs in Pixel festlegen" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Leave empty for default width" msgstr "Leer lassen für Standardbreite" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:136 msgid "Left align page content" msgstr "Seiteninhalt linksbündig anzeigen" -#: ../../view/theme/redbasic/php/config.php:131 +#: ../../view/theme/redbasic/php/config.php:137 msgid "Set minimum opacity of nav bar - to hide it" msgstr "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)" -#: ../../view/theme/redbasic/php/config.php:132 +#: ../../view/theme/redbasic/php/config.php:138 msgid "Set size of conversation author photo" msgstr "Größe der Avatare von Themenstartern" -#: ../../view/theme/redbasic/php/config.php:133 +#: ../../view/theme/redbasic/php/config.php:139 msgid "Set size of followup author photos" msgstr "Größe der Avatare von Kommentatoren" -#: ../../boot.php:1162 +#: ../../boot.php:1195 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Suche %1$s (%2$s)" -#: ../../boot.php:1162 +#: ../../boot.php:1195 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1480 +#: ../../boot.php:1513 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1483 +#: ../../boot.php:1516 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1684 +#: ../../boot.php:1720 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können." -#: ../../boot.php:1706 +#: ../../boot.php:1741 +msgid "Login/Email" +msgstr "Anmelden/E-Mail" + +#: ../../boot.php:1742 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1707 +#: ../../boot.php:1743 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1710 +#: ../../boot.php:1746 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:2276 +#: ../../boot.php:2315 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" -#: ../../boot.php:2425 +#: ../../boot.php:2470 msgid "Website SSL certificate is not valid. Please correct." msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." -#: ../../boot.php:2428 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Website-SSL-Fehler für %s" -#: ../../boot.php:2469 +#: ../../boot.php:2577 msgid "Cron/Scheduled tasks not running." msgstr "Cron-Aufgaben laufen nicht." -#: ../../boot.php:2473 +#: ../../boot.php:2581 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-Aufgaben für %s laufen nicht" diff --git a/view/de/hstrings.php b/view/de/hstrings.php index eea433fac..5b37c256d 100644 --- a/view/de/hstrings.php +++ b/view/de/hstrings.php @@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_de")) { function string_plural_select_de($n){ return ($n != 1);; }} -; +App::$rtl = 0; +App::$strings["Social Networking"] = "Soziales Netzwerk"; +App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; +App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; +App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; +App::$strings["Community Forum"] = "Forum"; +App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; +App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; +App::$strings["Forum - Private"] = "Forum - Privat"; +App::$strings["Feed Republish"] = "Teilen von Feeds"; +App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; +App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; +App::$strings["Special Purpose"] = "Für besondere Zwecke"; +App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; +App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; +App::$strings["Other"] = "Andere"; +App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +App::$strings["Can view my channel stream and posts"] = "Kann meinen Kanal-Stream und meine Beiträge sehen"; +App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; +App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; +App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; +App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; +App::$strings["Can upload/modify my file storage and photos"] = "Kann in meine Datei- und Bilderordner hochladen/ändern"; +App::$strings["Can view my channel webpages"] = "Kann die Webseiten meines Kanals sehen"; +App::$strings["Can create/edit my channel webpages"] = "Kann Webseiten in meinem Kanal erstellen/ändern"; +App::$strings["Can post on my channel (wall) page"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; +App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; +App::$strings["Can like/dislike profiles and profile things"] = "Kann Profile und Profilsachen mögen/nicht mögen"; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten"; +App::$strings["Can chat with me"] = "Kann mit mir chatten"; +App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; +App::$strings["Can administer my channel"] = "Kann meinen Kanal administrieren"; App::$strings["parent"] = "Übergeordnetes Verzeichnis"; App::$strings["Collection"] = "Sammlung"; App::$strings["Principal"] = "Prinzipal"; @@ -29,500 +61,439 @@ App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%) App::$strings["WARNING:"] = "WARNUNG:"; App::$strings["Create new folder"] = "Neuen Ordner anlegen"; App::$strings["Upload file"] = "Datei hochladen"; -App::$strings["Permission denied"] = "Keine Berechtigung"; +App::$strings["Drop files here to immediately upload"] = "Dateien zum sofortigen Hochladen hier fallen lassen"; App::$strings["Permission denied."] = "Berechtigung verweigert."; App::$strings["Not Found"] = "Nicht gefunden"; App::$strings["Page not found."] = "Seite nicht gefunden."; +App::$strings["Permission denied"] = "Keine Berechtigung"; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; App::$strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -App::$strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; +App::$strings["Requested profile is not available."] = "Das angefragte Profil ist nicht verfügbar."; App::$strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; -App::$strings["Block Name"] = "Block-Name"; -App::$strings["Blocks"] = "Blöcke"; -App::$strings["Block Title"] = "Titel des Blocks"; -App::$strings["Created"] = "Erstellt"; -App::$strings["Edited"] = "Geändert"; -App::$strings["Share"] = "Teilen"; -App::$strings["View"] = "Ansicht"; -App::$strings["Channel not found."] = "Kanal nicht gefunden."; -App::$strings["Permissions denied."] = "Berechtigung verweigert."; -App::$strings["l, F j"] = "l, j. F"; -App::$strings["Link to Source"] = "Link zur Quelle"; -App::$strings["Edit Event"] = "Termin bearbeiten"; -App::$strings["Create Event"] = "Termin anlegen"; -App::$strings["Previous"] = "Voriges"; -App::$strings["Next"] = "Nächste"; -App::$strings["Export"] = "Exportieren"; -App::$strings["Import"] = "Import"; -App::$strings["Submit"] = "Bestätigen"; -App::$strings["Today"] = "Heute"; -App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; -App::$strings["Posts and comments"] = "Beiträge und Kommentare"; -App::$strings["Only posts"] = "Nur Beiträge"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; -App::$strings["Room not found"] = "Chatraum nicht gefunden"; -App::$strings["Leave Room"] = "Raum verlassen"; -App::$strings["Delete Room"] = "Raum löschen"; -App::$strings["I am away right now"] = "Ich bin gerade nicht da"; -App::$strings["I am online"] = "Ich bin online"; -App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; -App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; -App::$strings["Encrypt text"] = "Text verschlüsseln"; -App::$strings["Insert web link"] = "Link einfügen"; -App::$strings["Feature disabled."] = "Funktion deaktiviert."; -App::$strings["New Chatroom"] = "Neuer Chatraum"; -App::$strings["Chatroom name"] = "Chatraumname"; -App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; -App::$strings["Permissions"] = "Berechtigungen"; -App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; -App::$strings["Create New"] = "Neu anlegen"; -App::$strings["Expiration"] = "Verfall"; -App::$strings["min"] = "min"; App::$strings["Away"] = "Abwesend"; App::$strings["Online"] = "Online"; -App::$strings["Invalid item."] = "Ungültiges Element."; -App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -App::$strings["My Bookmarks"] = "Meine Lesezeichen"; -App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; -App::$strings["Continue"] = "Fortfahren"; -App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; -App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; -App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; -App::$strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; -App::$strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; -App::$strings["Connection updated."] = "Verbindung aktualisiert."; -App::$strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; -App::$strings["is now connected to"] = "ist jetzt verbunden mit"; -App::$strings["No"] = "Nein"; -App::$strings["Yes"] = "Ja"; -App::$strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; -App::$strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; -App::$strings["Connection has been removed."] = "Verbindung wurde gelöscht."; -App::$strings["View Profile"] = "Profil ansehen"; -App::$strings["View %s's profile"] = "%ss Profil ansehen"; -App::$strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; -App::$strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; -App::$strings["Recent Activity"] = "Kürzliche Aktivitäten"; -App::$strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; -App::$strings["Unblock"] = "Freigeben"; +App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; +App::$strings["no results"] = "keine Ergebnisse"; +App::$strings["channel sync processed"] = "Kanal-Sync verarbeitet"; +App::$strings["queued"] = "zur Warteschlange hinzugefügt"; +App::$strings["posted"] = "zugestellt"; +App::$strings["accepted for delivery"] = "für Zustellung akzeptiert"; +App::$strings["updated"] = "aktualisiert"; +App::$strings["update ignored"] = "Aktualisierung ignoriert"; +App::$strings["permission denied"] = "Zugriff verweigert"; +App::$strings["recipient not found"] = "Empfänger nicht gefunden."; +App::$strings["mail recalled"] = "Mail widerrufen"; +App::$strings["duplicate mail received"] = "Doppelte Mail erhalten"; +App::$strings["mail delivered"] = "Mail zugestellt"; +App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; +App::$strings["Options"] = "Optionen"; +App::$strings["Redeliver"] = "Erneut zustellen"; +App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; +App::$strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +App::$strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +App::$strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +App::$strings["Registration on this hub is disabled."] = "Die Registrierung auf diesem Hub ist nicht möglich."; +App::$strings["Registration on this hub is by approval only."] = "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator."; +App::$strings["Register at another affiliated hub."] = "Registriere Dich auf einem der anderen verbundenen Hubs."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; +App::$strings["Terms of Service"] = "Nutzungsbedingungen"; +App::$strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; +App::$strings["Your email address"] = "Ihre E-Mail Adresse"; +App::$strings["Choose a password"] = "Passwort"; +App::$strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; +App::$strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; +App::$strings["Name or caption"] = "Name oder Titel"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; +App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; +App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; +App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; +App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; +App::$strings["no"] = "nein"; +App::$strings["yes"] = "ja"; +App::$strings["Registration"] = "Registrierung"; +App::$strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +App::$strings["Register"] = "Registrieren"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen."; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s Konto blockiert/freigegeben", + 1 => "%s Konten blockiert/freigegeben", +); +App::$strings["%s account deleted"] = array( + 0 => "%s Konto gelöscht", + 1 => "%s Konten gelöscht", +); +App::$strings["Account not found"] = "Konto nicht gefunden"; +App::$strings["Account '%s' deleted"] = "Konto '%s' gelöscht"; +App::$strings["Account '%s' blocked"] = "Konto '%s' blockiert"; +App::$strings["Account '%s' unblocked"] = "Konto '%s' freigegeben"; +App::$strings["Administration"] = "Administration"; +App::$strings["Accounts"] = "Konten"; +App::$strings["Submit"] = "Absenden"; +App::$strings["select all"] = "Alle auswählen"; +App::$strings["Registrations waiting for confirm"] = "Registrierungen warten auf Bestätigung"; +App::$strings["Request date"] = "Antragsdatum"; +App::$strings["Email"] = "E-Mail"; +App::$strings["No registrations."] = "Keine Registrierungen."; +App::$strings["Approve"] = "Genehmigen"; +App::$strings["Deny"] = "Verweigern"; App::$strings["Block"] = "Blockieren"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; -App::$strings["This connection is blocked!"] = "Die Verbindung ist geblockt!"; -App::$strings["Unignore"] = "Nicht ignorieren"; -App::$strings["Ignore"] = "Ignorieren"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; -App::$strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!"; -App::$strings["Unarchive"] = "Aus Archiv zurückholen"; -App::$strings["Archive"] = "Archivieren"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; -App::$strings["This connection is archived!"] = "Die Verbindung ist archiviert!"; -App::$strings["Unhide"] = "Wieder sichtbar machen"; -App::$strings["Hide"] = "Verstecken"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; -App::$strings["This connection is hidden!"] = "Die Verbindung ist versteckt!"; -App::$strings["Delete this connection"] = "Verbindung löschen"; -App::$strings["Me"] = "Ich"; -App::$strings["Family"] = "Familie"; -App::$strings["Friends"] = "Freunde"; -App::$strings["Acquaintances"] = "Bekannte"; -App::$strings["All"] = "Alle"; -App::$strings["Approve this connection"] = "Verbindung genehmigen"; -App::$strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; -App::$strings["Set Affinity"] = "Beziehung festlegen"; -App::$strings["Set Profile"] = "Profil festlegen"; -App::$strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen"; -App::$strings["none"] = "Keine"; -App::$strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; -App::$strings["Connection: %s"] = "Verbindung: %s"; -App::$strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; -App::$strings["Connection requests will be approved without your interaction"] = "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist."; -App::$strings["This connection's primary address is"] = "Die Hauptadresse der Verbindung ist"; -App::$strings["Available locations:"] = "Verfügbare Klone:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet."; -App::$strings["Connection Tools"] = "Verbindungswerkzeuge"; -App::$strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; -App::$strings["Rating"] = "Bewertung"; -App::$strings["Slide to adjust your rating"] = "Verschieben, um Deine Bewertung einzustellen"; -App::$strings["Optionally explain your rating"] = "Optional kannst Du Deine Bewertung begründen"; -App::$strings["Custom Filter"] = "Benutzerdefinierter Filter"; -App::$strings["Only import posts with this text"] = "Nur Beiträge mit diesem Text importieren"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren."; -App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text nicht importieren"; -App::$strings["This information is public!"] = "Diese Information ist öffentlich!"; -App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; -App::$strings["inherited"] = "geerbt"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; -App::$strings["Their Settings"] = "Deren Einstellungen"; -App::$strings["My Settings"] = "Meine Einstellungen"; -App::$strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; -App::$strings["Last update:"] = "Letzte Aktualisierung:"; -App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; -App::$strings["%d rating"] = array( - 0 => "%d Bewertung", - 1 => "%d Bewertungen", +App::$strings["Unblock"] = "Freigeben"; +App::$strings["ID"] = "ID"; +App::$strings["All Channels"] = "Alle Kanäle"; +App::$strings["Register date"] = "Registrierungs-Datum"; +App::$strings["Last login"] = "Letzte Anmeldung"; +App::$strings["Expires"] = "Verfällt"; +App::$strings["Service Class"] = "Service-Klasse"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s Kanal gesperrt/freigegeben", + 1 => "%s Kanäle gesperrt/freigegeben", ); -App::$strings["Gender: "] = "Geschlecht:"; -App::$strings["Status: "] = "Status:"; -App::$strings["Homepage: "] = "Webseite:"; -App::$strings["Age:"] = "Alter:"; -App::$strings["Location:"] = "Ort:"; -App::$strings["Description:"] = "Beschreibung:"; -App::$strings["Hometown:"] = "Heimatstadt:"; -App::$strings["About:"] = "Über:"; -App::$strings["Connect"] = "Verbinden"; -App::$strings["Public Forum:"] = "Öffentliches Forum:"; -App::$strings["Keywords: "] = "Schlüsselwörter:"; -App::$strings["Don't suggest"] = "Nicht vorschlagen"; -App::$strings["Common connections:"] = "Gemeinsame Verbindungen:"; -App::$strings["Global Directory"] = "Globales Verzeichnis"; -App::$strings["Local Directory"] = "Lokales Verzeichnis"; -App::$strings["Find"] = "Finde"; -App::$strings["Finding:"] = "Ergebnisse:"; -App::$strings["Channel Suggestions"] = "Kanal-Vorschläge"; -App::$strings["next page"] = "nächste Seite"; -App::$strings["previous page"] = "vorherige Seite"; -App::$strings["Sort options"] = "Sortieroptionen"; -App::$strings["Alphabetic"] = "alphabetisch"; -App::$strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; -App::$strings["Newest to Oldest"] = "Neueste zuerst"; -App::$strings["Oldest to Newest"] = "Älteste zuerst"; -App::$strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "Code für %s Kanal gesperrt/freigegeben", + 1 => "Code für %s Kanäle gesperrt/freigegeben", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s Kanal gelöscht", + 1 => "%s Kanäle gelöscht", +); +App::$strings["Channel not found"] = "Kanal nicht gefunden"; +App::$strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; +App::$strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; +App::$strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; +App::$strings["Channel '%s' code allowed"] = "Code für Kanal '%s' freigegeben"; +App::$strings["Channel '%s' code disallowed"] = "Code für Kanal '%s' gesperrt"; +App::$strings["Channels"] = "Kanäle"; +App::$strings["Censor"] = "Sperren"; +App::$strings["Uncensor"] = "Freigeben"; +App::$strings["Allow Code"] = "Code erlauben"; +App::$strings["Disallow Code"] = "Code sperren"; +App::$strings["Channel"] = "Kanal"; +App::$strings["UID"] = "UID"; +App::$strings["Address"] = "Adresse"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; +App::$strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; +App::$strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; +App::$strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; +App::$strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; +App::$strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; +App::$strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; +App::$strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; +App::$strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; +App::$strings["Off"] = "Aus"; +App::$strings["On"] = "An"; +App::$strings["Lock feature %s"] = "Blockiere die Funktion %s"; +App::$strings["Manage Additional Features"] = "Zusätzliche Funktionen verwalten"; +App::$strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; +App::$strings["Logs"] = "Protokolle"; +App::$strings["Clear"] = "Leeren"; +App::$strings["Debugging"] = "Debugging"; +App::$strings["Log file"] = "Protokolldatei"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis."; +App::$strings["Log level"] = "Protokollstufe"; App::$strings["Item not found."] = "Element nicht gefunden."; -App::$strings["Item not found"] = "Element nicht gefunden"; -App::$strings["Title (optional)"] = "Titel (optional)"; -App::$strings["Edit Block"] = "Block bearbeiten"; -App::$strings["No channel."] = "Kein Kanal."; -App::$strings["Common connections"] = "Gemeinsame Verbindungen"; -App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; -App::$strings["Blocked"] = "Blockiert"; -App::$strings["Ignored"] = "Ignoriert"; -App::$strings["Hidden"] = "Versteckt"; -App::$strings["Archived"] = "Archiviert"; -App::$strings["New"] = "Neu"; -App::$strings["New Connections"] = "Neue Verbindungen"; -App::$strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; -App::$strings["All Connections"] = "Alle Verbindungen"; -App::$strings["Show all connections"] = "Alle Verbindungen anzeigen"; -App::$strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen"; -App::$strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen"; -App::$strings["Only show archived connections"] = "Nur archivierte Verbindungen anzeigen"; -App::$strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen"; -App::$strings["Pending approval"] = "Wartet auf Genehmigung"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Verbindung bearbeiten"; -App::$strings["Delete connection"] = "Verbindung löschen"; -App::$strings["Channel address"] = "Kanaladresse"; -App::$strings["Network"] = "Netzwerk"; -App::$strings["Status"] = "Status"; -App::$strings["Connected"] = "Verbunden"; -App::$strings["Approve connection"] = "Verbindung genehmigen"; -App::$strings["Approve"] = "Genehmigen"; -App::$strings["Ignore connection"] = "Verbindung ignorieren"; -App::$strings["Recent activity"] = "Kürzliche Aktivitäten"; -App::$strings["Connections"] = "Verbindungen"; -App::$strings["Search"] = "Suche"; -App::$strings["Search your connections"] = "Verbindungen durchsuchen"; -App::$strings["Connections search"] = "Verbindung suchen"; -App::$strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; -App::$strings["Cover Photos"] = "Cover Foto"; -App::$strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; -App::$strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; -App::$strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; -App::$strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; -App::$strings["female"] = "weiblich"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s hat ihr %2\$s aktualisiert"; -App::$strings["male"] = "männlich"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s hat sein %2\$s aktualisiert"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s hat sein/ihr %2\$s aktualisiert"; -App::$strings["cover photo"] = "Cover Foto"; -App::$strings["Photo not available."] = "Foto nicht verfügbar."; -App::$strings["Upload File:"] = "Datei hochladen:"; -App::$strings["Select a profile:"] = "Wähle ein Profil:"; -App::$strings["Upload Cover Photo"] = "Cover Foto hochladen"; -App::$strings["or"] = "oder"; -App::$strings["skip this step"] = "diesen Schritt überspringen"; -App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; -App::$strings["Crop Image"] = "Bild zuschneiden"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; -App::$strings["Done Editing"] = "Bearbeitung fertigstellen"; -App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -App::$strings["Edit post"] = "Bearbeite Beitrag"; -App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; -App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; -App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; -App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; -App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; -App::$strings["Event not found."] = "Termin nicht gefunden."; -App::$strings["event"] = "Termin"; -App::$strings["Edit event title"] = "Termintitel bearbeiten"; -App::$strings["Event title"] = "Termintitel"; -App::$strings["Required"] = "Benötigt"; -App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; -App::$strings["Edit Category"] = "Kategorie bearbeiten"; -App::$strings["Category"] = "Kategorie"; -App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; -App::$strings["Start date and time"] = "Startdatum und -zeit"; -App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; -App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; -App::$strings["Finish date and time"] = "Enddatum und -zeit"; -App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; -App::$strings["Edit Description"] = "Beschreibung bearbeiten"; -App::$strings["Description"] = "Beschreibung"; -App::$strings["Edit Location"] = "Ort bearbeiten"; -App::$strings["Location"] = "Ort"; -App::$strings["Share this event"] = "Den Termin teilen"; -App::$strings["Preview"] = "Vorschau"; -App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; -App::$strings["Advanced Options"] = "Weitere Optionen"; -App::$strings["Edit event"] = "Termin bearbeiten"; -App::$strings["Delete event"] = "Termin löschen"; -App::$strings["calendar"] = "Kalender"; -App::$strings["Event removed"] = "Termin gelöscht"; -App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; -App::$strings["Photos"] = "Fotos"; +App::$strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; +App::$strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; +App::$strings["Disable"] = "Deaktivieren"; +App::$strings["Enable"] = "Aktivieren"; +App::$strings["Plugins"] = "Plug-Ins"; +App::$strings["Toggle"] = "Umschalten"; +App::$strings["Settings"] = "Einstellungen"; +App::$strings["Author: "] = "Autor: "; +App::$strings["Maintainer: "] = "Betreuer:"; +App::$strings["Minimum project version: "] = "Minimale Version des Projekts:"; +App::$strings["Maximum project version: "] = "Maximale Version des Projekts:"; +App::$strings["Minimum PHP version: "] = "Minimale PHP Version:"; +App::$strings["Compatible Server Roles: "] = "Kompatible Serverrollen: "; +App::$strings["Requires: "] = "Benötigt:"; +App::$strings["Disabled - version incompatibility"] = "Abgeschaltet - Versionsinkompatibilität"; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Gib die öffentliche Git-Repository-URL des Plugin-Repository an."; +App::$strings["Plugin repo git URL"] = "Plugin-Repository Git URL"; +App::$strings["Custom repo name"] = "Benutzerdefinierter Repository-Name"; +App::$strings["(optional)"] = "(optional)"; +App::$strings["Download Plugin Repo"] = "Plugin-Repository herunterladen"; +App::$strings["Install new repo"] = "Neues Repository installieren"; +App::$strings["Install"] = "Installieren"; App::$strings["Cancel"] = "Abbrechen"; -App::$strings["This site is not a directory server"] = "Diese Webseite ist kein Verzeichnisserver"; -App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; -App::$strings["Save to Folder:"] = "Speichern in Ordner:"; -App::$strings["- select -"] = "– auswählen –"; +App::$strings["Manage Repos"] = "Repositorien verwalten"; +App::$strings["Installed Plugin Repositories"] = "Installierte Plugin-Repositorien"; +App::$strings["Install a New Plugin Repository"] = "Ein neues Plugin-Repository installieren"; +App::$strings["Update"] = "Aktualisieren"; +App::$strings["Switch branch"] = "Zweig/Branch wechseln"; +App::$strings["Remove"] = "Entfernen"; +App::$strings["New Profile Field"] = "Neues Profilfeld"; +App::$strings["Field nickname"] = "Kurzname für das Feld"; +App::$strings["System name of field"] = "Systemname des Feldes"; +App::$strings["Input type"] = "Art des Inhalts"; +App::$strings["Field Name"] = "Feldname"; +App::$strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; +App::$strings["Help text"] = "Hilfetext"; +App::$strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; App::$strings["Save"] = "Speichern"; -App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; -App::$strings["no results"] = "keine Ergebnisse"; -App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; -App::$strings["channel sync processed"] = "Kanal-Sync verarbeitet"; -App::$strings["queued"] = "zur Warteschlange hinzugefügt"; -App::$strings["posted"] = "zugestellt"; -App::$strings["accepted for delivery"] = "für Zustellung akzeptiert"; -App::$strings["updated"] = "aktualisiert"; -App::$strings["update ignored"] = "Aktualisierung ignoriert"; -App::$strings["permission denied"] = "Zugriff verweigert"; -App::$strings["recipient not found"] = "Empfänger nicht gefunden."; -App::$strings["mail recalled"] = "Mail widerrufen"; -App::$strings["duplicate mail received"] = "Doppelte Mail erhalten"; -App::$strings["mail delivered"] = "Mail zugestellt"; -App::$strings["Layout Name"] = "Layout-Name"; -App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; -App::$strings["Edit Layout"] = "Layout bearbeiten"; -App::$strings["Page link"] = "Seiten-Link"; -App::$strings["Edit Webpage"] = "Webseite bearbeiten"; -App::$strings["Channel added."] = "Kanal hinzugefügt."; -App::$strings["network"] = "Netzwerk"; -App::$strings["RSS"] = "RSS"; -App::$strings["Privacy group created."] = "Gruppe wurde erstellt."; -App::$strings["Could not create privacy group."] = "Gruppe konnte nicht erstellt werden."; -App::$strings["Privacy group not found."] = "Gruppe nicht gefunden."; -App::$strings["Privacy group updated."] = "Gruppe wurde aktualisiert."; -App::$strings["Create a group of channels."] = "Erstelle eine Gruppe für Kanäle."; -App::$strings["Privacy group name: "] = "Gruppenname:"; -App::$strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; -App::$strings["Privacy group removed."] = "Gruppe wurde entfernt."; -App::$strings["Unable to remove privacy group."] = "Gruppe konnte nicht entfernt werden."; -App::$strings["Privacy group editor"] = "Gruppeneditor"; -App::$strings["Members"] = "Mitglieder"; -App::$strings["All Connected Channels"] = "Alle verbundenen Kanäle"; -App::$strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; -App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; -App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; -App::$strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; -App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; -App::$strings["Documentation Search"] = "Suche in der Dokumentation"; -App::$strings["Help:"] = "Hilfe:"; -App::$strings["Help"] = "Hilfe"; -App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; -App::$strings["Permission Denied."] = "Zugriff verweigert."; -App::$strings["File not found."] = "Datei nicht gefunden."; -App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; -App::$strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; -App::$strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; -App::$strings["Return to file list"] = "Zurück zur Dateiliste"; -App::$strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; -App::$strings["Share this file"] = "Diese Datei freigeben"; -App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; -App::$strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; -App::$strings["Apps"] = "Apps"; -App::$strings["Item not available."] = "Element nicht verfügbar."; -App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; -App::$strings["Nothing to import."] = "Nichts zu importieren."; -App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; -App::$strings["Imported file is empty."] = "Die importierte Datei ist leer."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; -App::$strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; -App::$strings["Import completed."] = "Import abgeschlossen."; -App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; -App::$strings["Import Channel"] = "Kanal importieren"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; -App::$strings["File to Upload"] = "Hochzuladende Datei:"; -App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen \$Projectname-Hubs ein"; -App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; -App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; -App::$strings["Your old login password"] = "Dein altes Passwort"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige \$Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; -App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; -App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; -App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; -App::$strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; -App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt."; -App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -App::$strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; -App::$strings["Layouts"] = "Layouts"; -App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; -App::$strings["Layout Description"] = "Layout-Beschreibung"; -App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Willkommen auf %s"; -App::$strings["First Name"] = "Vorname"; -App::$strings["Last Name"] = "Nachname"; -App::$strings["Nickname"] = "Spitzname"; -App::$strings["Full Name"] = "Voller Name"; -App::$strings["Email"] = "E-Mail"; -App::$strings["Profile Photo"] = "Profilfoto"; -App::$strings["Profile Photo 16px"] = "Profilfoto 16 px"; -App::$strings["Profile Photo 32px"] = "Profilfoto 32 px"; -App::$strings["Profile Photo 48px"] = "Profilfoto 48 px"; -App::$strings["Profile Photo 64px"] = "Profilfoto 64 px"; -App::$strings["Profile Photo 80px"] = "Profilfoto 80 px"; -App::$strings["Profile Photo 128px"] = "Profilfoto 128 px"; -App::$strings["Timezone"] = "Zeitzone"; -App::$strings["Homepage URL"] = "Homepage-URL"; -App::$strings["Language"] = "Sprache"; -App::$strings["Birth Year"] = "Geburtsjahr"; -App::$strings["Birth Month"] = "Geburtsmonat"; -App::$strings["Birth Day"] = "Geburtstag"; -App::$strings["Birthdate"] = "Geburtsdatum"; -App::$strings["Gender"] = "Geschlecht"; -App::$strings["Male"] = "Männlich"; -App::$strings["Female"] = "Weiblich"; -App::$strings["webpage"] = "Webseite"; -App::$strings["block"] = "Block"; -App::$strings["layout"] = "Layout"; -App::$strings["menu"] = "Menü"; -App::$strings["%s element installed"] = "Element für %s installiert"; -App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; -App::$strings["Like/Dislike"] = "Mögen/Nicht mögen"; -App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; -App::$strings["Invalid request."] = "Ungültige Anfrage."; -App::$strings["channel"] = "Kanal"; -App::$strings["thing"] = "Sache"; -App::$strings["Channel unavailable."] = "Kanal nicht vorhanden."; -App::$strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; -App::$strings["photo"] = "Foto"; -App::$strings["status"] = "Status"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; -App::$strings["Action completed."] = "Aktion durchgeführt."; -App::$strings["Thank you."] = "Vielen Dank."; -App::$strings["Import completed"] = "Import abgeschlossen"; -App::$strings["Import Items"] = "Beiträge importieren"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; -App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; -App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; -App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; -App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; -App::$strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", +App::$strings["Field definition not found"] = "Feld-Definition nicht gefunden"; +App::$strings["Edit Profile Field"] = "Profilfeld bearbeiten"; +App::$strings["Profile Fields"] = "Profil Felder"; +App::$strings["Basic Profile Fields"] = "Notwendige Profil Felder"; +App::$strings["Advanced Profile Fields"] = "Erweiterte Profil Felder"; +App::$strings["(In addition to basic fields)"] = "(zusätzlich zu notwendige Felder)"; +App::$strings["All available fields"] = "Alle verfügbaren Felder"; +App::$strings["Custom Fields"] = "Benutzerdefinierte Felder"; +App::$strings["Create Custom Field"] = "Erstelle benutzerdefiniertes Feld"; +App::$strings["Queue Statistics"] = "Warteschlangenstatistiken"; +App::$strings["Total Entries"] = "Einträge insgesamt"; +App::$strings["Priority"] = "Priorität"; +App::$strings["Destination URL"] = "Ziel-URL"; +App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markieren"; +App::$strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren"; +App::$strings["Last known contact"] = "Letzter Kontakt"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:"; +App::$strings["https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "] = "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert."; +App::$strings["Security"] = "Sicherheit"; +App::$strings["Block public"] = "Öffentlichen Zugriff blockieren"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist."; +App::$strings["Set \"Transport Security\" HTTP header"] = "Setze den \"Transport Security\" HTTP Header"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Setze den \"Content Security Policy\" HTTP Header"; +App::$strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +App::$strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde."; +App::$strings["Allow communications only from these sites"] = "Kommunikation nur von diesen Seiten erlauben"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben."; +App::$strings["Block communications from these sites"] = "Kommunikation von diesen Seiten blockieren"; +App::$strings["Allow communications only from these channels"] = "Kommunikation nur von diesen Kanälen erlauben"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. "; +App::$strings["Block communications from these channels"] = "Kommunikation von folgenden Kanälen blockieren"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains"; +App::$strings["One site per line. By default embedded content is filtered."] = "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert."; +App::$strings["Block embedded HTML from these domains"] = "Eingebettete HTML Inhalte von diesen Seiten blockieren"; +App::$strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; +App::$strings["Default"] = "Standard"; +App::$strings["mobile"] = "mobil"; +App::$strings["experimental"] = "experimentell"; +App::$strings["unsupported"] = "nicht unterstützt"; +App::$strings["No"] = "Nein"; +App::$strings["Yes - with approval"] = "Ja - mit Zustimmung"; +App::$strings["Yes"] = "Ja"; +App::$strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server"; +App::$strings["My site has paid access only"] = "Meine Seite hat nur bezahlten Zugriff"; +App::$strings["My site has free access only"] = "Meine Seite hat nur freien Zugriff"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; +App::$strings["Basic/Minimal Social Networking"] = "Einfaches/minimales soziales Netzwerken"; +App::$strings["Standard Configuration (default)"] = "Standardkonfiguration (Standard)"; +App::$strings["Professional"] = "Professionell"; +App::$strings["Beginner/Basic"] = "Anfänger/Basis"; +App::$strings["Novice - not skilled but willing to learn"] = "Anfänger - unerfahren, aber bereit zu lernen"; +App::$strings["Intermediate - somewhat comfortable"] = "Fortgeschritten - relativ komfortabel"; +App::$strings["Advanced - very comfortable"] = "Fortgeschritten - sehr komfortabel"; +App::$strings["Expert - I can write computer code"] = "Experte - Ich kann Computercode schreiben"; +App::$strings["Wizard - I probably know more than you do"] = "Zauberer - ich kann wahrscheinlich mehr als Du"; +App::$strings["Site"] = "Seite"; +App::$strings["File upload"] = "Dateiupload"; +App::$strings["Policies"] = "Richtlinien"; +App::$strings["Advanced"] = "Fortgeschritten"; +App::$strings["Site name"] = "Seitenname"; +App::$strings["Server Configuration/Role"] = "Serverkonfiguration/Rolle"; +App::$strings["Site default technical skill level"] = "Standard-Qualifikationsstufe der Website"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Dies wird verwendet, um eine Benutzererfahrung passend zur technischen Qualifikationsstufe zu bieten."; +App::$strings["Lock the technical skill level setting"] = "Sperre die technische Qualifikationsstufe"; +App::$strings["Members can set their own technical comfort level by default"] = "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen"; +App::$strings["Banner/Logo"] = "Banner/Logo"; +App::$strings["Administrator Information"] = "Administrator-Informationen"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; +App::$strings["System language"] = "System-Sprache"; +App::$strings["System theme"] = "System-Theme"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; +App::$strings["Mobile system theme"] = "Mobile System-Theme:"; +App::$strings["Theme for mobile devices"] = "Theme für mobile Geräte"; +App::$strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; +App::$strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; +App::$strings["Maximum image size"] = "Maximale Bildgröße"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; +App::$strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; +App::$strings["Invitation only"] = "Nur mit Einladung"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; +App::$strings["Register text"] = "Registrierungstext"; +App::$strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)"; +App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen."; +App::$strings["Preserve site homepage URL"] = "Homepage-URL schützen"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten."; +App::$strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; +App::$strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +App::$strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; +App::$strings["Force publish"] = "Veröffentlichung erzwingen"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; +App::$strings["Import Public Streams"] = "Öffentliche Beiträge importieren"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert."; +App::$strings["Login on Homepage"] = "Log-in auf der Startseite"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden."; +App::$strings["Enable context help"] = "Kontext-Hilfe aktivieren"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird."; +App::$strings["Directory Server URL"] = "Verzeichnisserver-URL"; +App::$strings["Default directory server"] = "Standard-Verzeichnisserver"; +App::$strings["Proxy user"] = "Proxy Benutzer"; +App::$strings["Proxy URL"] = "Proxy URL"; +App::$strings["Network timeout"] = "Netzwerk-Timeout"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; +App::$strings["Delivery interval"] = "Auslieferung Intervall"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; +App::$strings["Deliveries per process"] = "Zustellungen pro Prozess"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5."; +App::$strings["Poll interval"] = "Abfrageintervall"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; +App::$strings["Maximum Load Average"] = "Maximales Load Average"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen"; +App::$strings["0 for no expiration of imported content"] = "0 = keine Löschung importierter Inhalte"; +App::$strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; +App::$strings["No themes found."] = "Keine Theme gefunden."; +App::$strings["Screenshot"] = "Bildschirmfoto"; +App::$strings["Themes"] = "Themes"; +App::$strings["[Experimental]"] = "[Experimentell]"; +App::$strings["[Unsupported]"] = "[Nicht unterstützt]"; +App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; +App::$strings["Nothing to import."] = "Nichts zu importieren."; +App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; +App::$strings["Imported file is empty."] = "Die importierte Datei ist leer."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; +App::$strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; +App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; +App::$strings["Import completed."] = "Import abgeschlossen."; +App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; +App::$strings["Import Channel"] = "Kanal importieren"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; +App::$strings["File to Upload"] = "Hochzuladende Datei:"; +App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen \$Projectname-Hubs ein"; +App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; +App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; +App::$strings["Your old login password"] = "Dein altes Passwort"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige \$Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; +App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; +App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; +App::$strings["%d rating"] = array( + 0 => "%d Bewertung", + 1 => "%d Bewertungen", ); -App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; -App::$strings["Send invitations"] = "Einladungen senden"; -App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; -App::$strings["Your message:"] = "Deine Nachricht:"; -App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; -App::$strings["or visit"] = "oder besuche"; -App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; -App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; -App::$strings["Visible to:"] = "Sichtbar für:"; -App::$strings["Location not found."] = "Klon nicht gefunden."; -App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; -App::$strings["Syncing locations"] = "Synchronisiere Klone"; -App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; -App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; -App::$strings["Address"] = "Adresse"; -App::$strings["Primary"] = "Primär"; -App::$strings["Drop"] = "Löschen"; -App::$strings["Sync Now"] = "Jetzt synchronisieren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; -App::$strings["Hub not found."] = "Server nicht gefunden."; -App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; -App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; -App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; -App::$strings["Messages"] = "Nachrichten"; -App::$strings["Message recalled."] = "Nachricht widerrufen."; -App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; -App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; -App::$strings["Send Private Message"] = "Private Nachricht senden"; -App::$strings["To:"] = "An:"; -App::$strings["Subject:"] = "Betreff:"; -App::$strings["Attach file"] = "Datei anhängen"; -App::$strings["Send"] = "Absenden"; -App::$strings["Set expiration date"] = "Verfallsdatum"; -App::$strings["Delete message"] = "Nachricht löschen"; -App::$strings["Delivery report"] = "Zustellungsbericht"; -App::$strings["Recall message"] = "Nachricht widerrufen"; -App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; -App::$strings["Delete Conversation"] = "Unterhaltung löschen"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -App::$strings["Send Reply"] = "Antwort senden"; -App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; -App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; -App::$strings["Channel Manager"] = "Kanal-Manager"; -App::$strings["Current Channel"] = "Aktueller Kanal"; -App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; -App::$strings["Default Channel"] = "Standard Kanal"; -App::$strings["Make Default"] = "Zum Standard machen"; -App::$strings["%d new messages"] = "%d neue Nachrichten"; -App::$strings["%d new introductions"] = "%d neue Vorstellungen"; -App::$strings["Delegated Channel"] = "Delegierte Kanäle"; -App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; -App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; -App::$strings["Site Member (%s)"] = "Nutzer (%s)"; -App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; -App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; -App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; -App::$strings["Your new password is"] = "Dein neues Passwort lautet"; -App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; -App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; -App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; -App::$strings["Email Address"] = "E-Mail Adresse"; -App::$strings["Reset"] = "Zurücksetzen"; +App::$strings["Gender: "] = "Geschlecht:"; +App::$strings["Status: "] = "Status:"; +App::$strings["Homepage: "] = "Webseite:"; +App::$strings["Age:"] = "Alter:"; +App::$strings["Location:"] = "Ort:"; +App::$strings["Description:"] = "Beschreibung:"; +App::$strings["Hometown:"] = "Heimatstadt:"; +App::$strings["About:"] = "Über:"; +App::$strings["Connect"] = "Verbinden"; +App::$strings["Public Forum:"] = "Öffentliches Forum:"; +App::$strings["Keywords: "] = "Schlüsselwörter:"; +App::$strings["Don't suggest"] = "Nicht vorschlagen"; +App::$strings["Common connections:"] = "Gemeinsame Verbindungen:"; +App::$strings["Global Directory"] = "Globales Verzeichnis"; +App::$strings["Local Directory"] = "Lokales Verzeichnis"; +App::$strings["Find"] = "Finde"; +App::$strings["Finding:"] = "Ergebnisse:"; +App::$strings["Channel Suggestions"] = "Kanal-Vorschläge"; +App::$strings["next page"] = "nächste Seite"; +App::$strings["previous page"] = "vorherige Seite"; +App::$strings["Sort options"] = "Sortieroptionen"; +App::$strings["Alphabetic"] = "alphabetisch"; +App::$strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; +App::$strings["Newest to Oldest"] = "Neueste zuerst"; +App::$strings["Oldest to Newest"] = "Älteste zuerst"; +App::$strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; +App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; +App::$strings["My Bookmarks"] = "Meine Lesezeichen"; +App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +App::$strings["Edit post"] = "Bearbeite Beitrag"; +App::$strings["No ratings"] = "Keine Bewertungen"; +App::$strings["Ratings"] = "Bewertungen"; +App::$strings["Rating: "] = "Bewertung: "; +App::$strings["Website: "] = "Webseite: "; +App::$strings["Description: "] = "Beschreibung: "; +App::$strings["Photos"] = "Fotos"; +App::$strings["Invalid item."] = "Ungültiges Element."; +App::$strings["Channel not found."] = "Kanal nicht gefunden."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Speichern in Ordner:"; +App::$strings["- select -"] = "– auswählen –"; +App::$strings["Blocked"] = "Blockiert"; +App::$strings["Ignored"] = "Ignoriert"; +App::$strings["Hidden"] = "Versteckt"; +App::$strings["Archived"] = "Archiviert"; +App::$strings["New"] = "Neu"; +App::$strings["All"] = "Alle"; +App::$strings["New Connections"] = "Neue Verbindungen"; +App::$strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; +App::$strings["All Connections"] = "Alle Verbindungen"; +App::$strings["Show all connections"] = "Alle Verbindungen anzeigen"; +App::$strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen"; +App::$strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen"; +App::$strings["Only show archived connections"] = "Nur archivierte Verbindungen anzeigen"; +App::$strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen"; +App::$strings["Pending approval"] = "Wartet auf Genehmigung"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Verbindung bearbeiten"; +App::$strings["Delete connection"] = "Verbindung löschen"; +App::$strings["Channel address"] = "Kanaladresse"; +App::$strings["Network"] = "Netzwerk"; +App::$strings["Status"] = "Status"; +App::$strings["Connected"] = "Verbunden"; +App::$strings["Approve connection"] = "Verbindung genehmigen"; +App::$strings["Ignore connection"] = "Verbindung ignorieren"; +App::$strings["Ignore"] = "Ignorieren"; +App::$strings["Recent activity"] = "Kürzliche Aktivitäten"; +App::$strings["Connections"] = "Verbindungen"; +App::$strings["Search"] = "Suche"; +App::$strings["Search your connections"] = "Verbindungen durchsuchen"; +App::$strings["Connections search"] = "Verbindung suchen"; +App::$strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; +App::$strings["Cover Photos"] = "Cover Foto"; +App::$strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; +App::$strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; +App::$strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; +App::$strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; +App::$strings["female"] = "weiblich"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s hat ihr %2\$s aktualisiert"; +App::$strings["male"] = "männlich"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s hat sein %2\$s aktualisiert"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s hat sein/ihr %2\$s aktualisiert"; +App::$strings["cover photo"] = "Cover Foto"; +App::$strings["Photo not available."] = "Foto nicht verfügbar."; +App::$strings["Upload File:"] = "Datei hochladen:"; +App::$strings["Select a profile:"] = "Wähle ein Profil:"; +App::$strings["Upload Cover Photo"] = "Cover Foto hochladen"; +App::$strings["or"] = "oder"; +App::$strings["skip this step"] = "diesen Schritt überspringen"; +App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; +App::$strings["Crop Image"] = "Bild zuschneiden"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; +App::$strings["Done Editing"] = "Bearbeitung fertigstellen"; +App::$strings["Item not found"] = "Element nicht gefunden"; +App::$strings["Block Name"] = "Block-Name"; +App::$strings["Insert web link"] = "Link einfügen"; +App::$strings["Title (optional)"] = "Titel (optional)"; +App::$strings["Edit Block"] = "Block bearbeiten"; +App::$strings["Layout Name"] = "Layout-Name"; +App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; +App::$strings["Edit Layout"] = "Layout bearbeiten"; +App::$strings["Page link"] = "Seiten-Link"; +App::$strings["Edit Webpage"] = "Webseite bearbeiten"; App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen."; App::$strings["Menu Name"] = "Name des Menüs"; @@ -533,6 +504,9 @@ App::$strings["Allow Bookmarks"] = "Lesezeichen erlauben"; App::$strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; App::$strings["Submit and proceed"] = "Absenden und fortfahren"; App::$strings["Menus"] = "Menüs"; +App::$strings["Drop"] = "Löschen"; +App::$strings["Created"] = "Erstellt"; +App::$strings["Edited"] = "Geändert"; App::$strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; App::$strings["Delete this menu"] = "Lösche dieses Menü"; App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; @@ -547,13 +521,146 @@ App::$strings["Menu title"] = "Menü Titel"; App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen"; App::$strings["Not found."] = "Nicht gefunden."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; -App::$strings["Mood"] = "Laune"; -App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; -App::$strings["is interested in:"] = "interessiert sich für:"; -App::$strings["No matches"] = "Keine Übereinstimmungen"; +App::$strings["App installed."] = "App installiert."; +App::$strings["Malformed app."] = "Fehlerhafte App."; +App::$strings["Embed code"] = "Code einbetten"; +App::$strings["Edit App"] = "App bearbeiten"; +App::$strings["Create App"] = "App erstellen"; +App::$strings["Name of app"] = "Name der App"; +App::$strings["Required"] = "Benötigt"; +App::$strings["Location (URL) of app"] = "Ort (URL) der App"; +App::$strings["Description"] = "Beschreibung"; +App::$strings["Photo icon URL"] = "URL zum Icon"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; +App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Version ID"] = "Versions-ID"; +App::$strings["Price of app"] = "Preis der App"; +App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; +App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; +App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; +App::$strings["Messages"] = "Nachrichten"; +App::$strings["Message recalled."] = "Nachricht widerrufen."; +App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; +App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; +App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; +App::$strings["Send Private Message"] = "Private Nachricht senden"; +App::$strings["To:"] = "An:"; +App::$strings["Subject:"] = "Betreff:"; +App::$strings["Your message:"] = "Deine Nachricht:"; +App::$strings["Attach file"] = "Datei anhängen"; +App::$strings["Send"] = "Absenden"; +App::$strings["Set expiration date"] = "Verfallsdatum"; +App::$strings["Encrypt text"] = "Text verschlüsseln"; +App::$strings["Delete message"] = "Nachricht löschen"; +App::$strings["Delivery report"] = "Zustellungsbericht"; +App::$strings["Recall message"] = "Nachricht widerrufen"; +App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; +App::$strings["Delete Conversation"] = "Unterhaltung löschen"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +App::$strings["Send Reply"] = "Antwort senden"; +App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; +App::$strings["Item not available."] = "Element nicht verfügbar."; +App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; +App::$strings["Documentation Search"] = "Suche in der Dokumentation"; +App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Willkommen auf %s"; +App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; +App::$strings["Visible to:"] = "Sichtbar für:"; +App::$strings["Permission Denied."] = "Zugriff verweigert."; +App::$strings["File not found."] = "Datei nicht gefunden."; +App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; +App::$strings["Permissions"] = "Berechtigungen"; +App::$strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; +App::$strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; +App::$strings["Return to file list"] = "Zurück zur Dateiliste"; +App::$strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; +App::$strings["Share this file"] = "Diese Datei freigeben"; +App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; +App::$strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; +App::$strings["Hub not found."] = "Server nicht gefunden."; +App::$strings["Continue"] = "Fortfahren"; +App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; +App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; +App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; +App::$strings["Privacy group created."] = "Gruppe wurde erstellt."; +App::$strings["Could not create privacy group."] = "Gruppe konnte nicht erstellt werden."; +App::$strings["Privacy group not found."] = "Gruppe nicht gefunden."; +App::$strings["Privacy group updated."] = "Gruppe wurde aktualisiert."; +App::$strings["Create a group of channels."] = "Erstelle eine Gruppe für Kanäle."; +App::$strings["Privacy group name: "] = "Gruppenname:"; +App::$strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; +App::$strings["Privacy group removed."] = "Gruppe wurde entfernt."; +App::$strings["Unable to remove privacy group."] = "Gruppe konnte nicht entfernt werden."; +App::$strings["Privacy group editor"] = "Gruppeneditor"; +App::$strings["Members"] = "Mitglieder"; +App::$strings["All Connected Channels"] = "Alle verbundenen Kanäle"; +App::$strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; +App::$strings["Import Webpage Elements"] = "Webseitenelemente importieren"; +App::$strings["Import selected"] = "Import ausgewählt"; +App::$strings["Export Webpage Elements"] = "Webseitenelemente exportieren"; +App::$strings["Export selected"] = "Exportieren ausgewählt"; +App::$strings["Webpages"] = "Webseiten"; +App::$strings["Share"] = "Teilen"; +App::$strings["View"] = "Ansicht"; +App::$strings["Preview"] = "Vorschau"; +App::$strings["Actions"] = "Aktionen"; +App::$strings["Page Link"] = "Seiten-Link"; +App::$strings["Page Title"] = "Seitentitel"; +App::$strings["Invalid file type."] = "Ungültiger Dateityp."; +App::$strings["Error opening zip file"] = "Fehler beim Öffnen der ZIP-Datei"; +App::$strings["Invalid folder path."] = "Ungültiger Ordnerpfad."; +App::$strings["No webpage elements detected."] = "Keine Webseitenelemente erkannt."; +App::$strings["Import complete."] = "Import abgeschlossen."; +App::$strings["webpage"] = "Webseite"; +App::$strings["block"] = "Block"; +App::$strings["layout"] = "Layout"; +App::$strings["menu"] = "Menü"; +App::$strings["%s element installed"] = "Element für %s installiert"; +App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; +App::$strings["Import completed"] = "Import abgeschlossen"; +App::$strings["Import Items"] = "Beiträge importieren"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; +App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; +App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; +App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; +App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; +App::$strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; +App::$strings["Send invitations"] = "Einladungen senden"; +App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; +App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; +App::$strings["or visit"] = "oder besuche"; +App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; +App::$strings["Location not found."] = "Klon nicht gefunden."; +App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; +App::$strings["Syncing locations"] = "Synchronisiere Klone"; +App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; +App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; +App::$strings["Location"] = "Ort"; +App::$strings["Primary"] = "Primär"; +App::$strings["Sync Now"] = "Jetzt synchronisieren"; +App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; App::$strings["No such group"] = "Gruppe nicht gefunden"; App::$strings["No such channel"] = "Kanal nicht gefunden"; App::$strings["forum"] = "Forum"; @@ -561,8 +668,38 @@ App::$strings["Search Results For:"] = "Suchergebnisse für:"; App::$strings["Privacy group is empty"] = "Gruppe ist leer"; App::$strings["Privacy group: "] = "Gruppe:"; App::$strings["Invalid connection."] = "Ungültige Verbindung."; -App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; -App::$strings["System Notifications"] = "System-Benachrichtigungen"; +App::$strings["Like/Dislike"] = "Mögen/Nicht mögen"; +App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; +App::$strings["Invalid request."] = "Ungültige Anfrage."; +App::$strings["channel"] = "Kanal"; +App::$strings["thing"] = "Sache"; +App::$strings["Channel unavailable."] = "Kanal nicht vorhanden."; +App::$strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; +App::$strings["photo"] = "Foto"; +App::$strings["status"] = "Status"; +App::$strings["event"] = "Termin"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; +App::$strings["Action completed."] = "Aktion durchgeführt."; +App::$strings["Thank you."] = "Vielen Dank."; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; +App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; +App::$strings["Create New"] = "Neu anlegen"; +App::$strings["Channel Manager"] = "Kanal-Manager"; +App::$strings["Current Channel"] = "Aktueller Kanal"; +App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; +App::$strings["Default Channel"] = "Standard Kanal"; +App::$strings["Make Default"] = "Zum Standard machen"; +App::$strings["%d new messages"] = "%d neue Nachrichten"; +App::$strings["%d new introductions"] = "%d neue Vorstellungen"; +App::$strings["Delegated Channel"] = "Delegierte Kanäle"; App::$strings["Unable to create element."] = "Element konnte nicht erstellt werden."; App::$strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; App::$strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; @@ -592,113 +729,30 @@ App::$strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; App::$strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; App::$strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; App::$strings["Link text"] = "Link Text"; -App::$strings["Name or caption"] = "Name oder Titel"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; -App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; -App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; -App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; -App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; -App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; -App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; -App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; -App::$strings["Discard"] = "Verwerfen"; -App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; -App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; -App::$strings["Profile Photos"] = "Profilfotos"; -App::$strings["Album not found."] = "Album nicht gefunden."; -App::$strings["Delete Album"] = "Album löschen"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager"; -App::$strings["Delete Photo"] = "Foto löschen"; -App::$strings["No photos selected"] = "Keine Fotos ausgewählt"; -App::$strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; -App::$strings["Upload Photos"] = "Fotos hochladen"; -App::$strings["Enter an album name"] = "Namen für ein neues Album eingeben"; -App::$strings["or select an existing album (doubleclick)"] = "oder ein bereits vorhandenes auswählen (Doppelklick)"; -App::$strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; -App::$strings["Caption (optional):"] = "Beschriftung (optional):"; -App::$strings["Description (optional):"] = "Beschreibung (optional):"; -App::$strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; -App::$strings["Contact Photos"] = "Kontakt-Bilder"; -App::$strings["Show Newest First"] = "Neueste zuerst anzeigen"; -App::$strings["Show Oldest First"] = "Älteste zuerst anzeigen"; -App::$strings["View Photo"] = "Foto ansehen"; -App::$strings["Edit Album"] = "Album bearbeiten"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; -App::$strings["Photo not available"] = "Foto nicht verfügbar"; -App::$strings["Use as profile photo"] = "Als Profilfoto verwenden"; -App::$strings["Use as cover photo"] = "Als Titelbild verwenden"; -App::$strings["Private Photo"] = "Privates Foto"; -App::$strings["View Full Size"] = "In voller Größe anzeigen"; -App::$strings["Remove"] = "Entfernen"; -App::$strings["Edit photo"] = "Foto bearbeiten"; -App::$strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; -App::$strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; -App::$strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; -App::$strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; -App::$strings["Caption"] = "Bildunterschrift"; -App::$strings["Add a Tag"] = "Schlagwort hinzufügen"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; -App::$strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; -App::$strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; -App::$strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; -App::$strings["Please wait"] = "Bitte warten"; -App::$strings["This is you"] = "Das bist Du"; -App::$strings["Comment"] = "Kommentar"; -App::$strings["__ctx:title__ Likes"] = "Gefällt mir"; -App::$strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; -App::$strings["__ctx:title__ Agree"] = "Zustimmungen"; -App::$strings["__ctx:title__ Disagree"] = "Ablehnungen"; -App::$strings["__ctx:title__ Abstain"] = "Enthaltungen"; -App::$strings["__ctx:title__ Attending"] = "Zusagen"; -App::$strings["__ctx:title__ Not attending"] = "Absagen"; -App::$strings["__ctx:title__ Might attend"] = "Vielleicht"; -App::$strings["View all"] = "Alles anzeigen"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Gefällt mir", - 1 => "Gefällt mir", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Gefällt nicht", - 1 => "Gefällt nicht", -); -App::$strings["Photo Tools"] = "Fotowerkzeuge"; -App::$strings["In This Photo:"] = "Auf diesem Foto:"; -App::$strings["Map"] = "Karte"; -App::$strings["__ctx:noun__ Likes"] = "Gefällt mir"; -App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; -App::$strings["Close"] = "Schließen"; -App::$strings["View Album"] = "Album ansehen"; -App::$strings["Recent Photos"] = "Neueste Fotos"; -App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; -App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; -App::$strings["[today]"] = "[Heute]"; -App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; -App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -App::$strings["Login failed."] = "Login fehlgeschlagen."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; -App::$strings["Configuration Editor"] = "Konfigurationseditor"; -App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; -App::$strings["Layout updated."] = "Layout aktualisiert."; -App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -App::$strings["Layout not found."] = "Layout nicht gefunden."; -App::$strings["Module Name:"] = "Modulname:"; -App::$strings["Layout Help"] = "Layout-Hilfe"; -App::$strings["Poke"] = "Anstupsen"; -App::$strings["Poke somebody"] = "Jemanden anstupsen"; -App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; -App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; -App::$strings["Recipient"] = "Empfänger"; -App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; -App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; -App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; +App::$strings["Rating"] = "Bewertung"; +App::$strings["Website:"] = "Webseite:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; +App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; +App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; +App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; +App::$strings["Site Member (%s)"] = "Nutzer (%s)"; +App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; +App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; +App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; +App::$strings["Your new password is"] = "Dein neues Passwort lautet"; +App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; +App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; +App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; +App::$strings["Email Address"] = "E-Mail Adresse"; +App::$strings["Reset"] = "Zurücksetzen"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; +App::$strings["Mood"] = "Laune"; +App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; App::$strings["Profile not found."] = "Profil nicht gefunden."; App::$strings["Profile deleted."] = "Profil gelöscht."; App::$strings["Profile-"] = "Profil-"; @@ -713,6 +767,7 @@ App::$strings["Dislikes"] = "Gefällt nicht"; App::$strings["Work/Employment"] = "Arbeit/Anstellung"; App::$strings["Religion"] = "Religion"; App::$strings["Political Views"] = "Politische Ansichten"; +App::$strings["Gender"] = "Geschlecht"; App::$strings["Sexual Preference"] = "Sexuelle Orientierung"; App::$strings["Homepage"] = "Webseite"; App::$strings["Interests"] = "Hobbys/Interessen"; @@ -749,6 +804,7 @@ App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)"; App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; App::$strings["Since (date)"] = "Seit (Datum)"; App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir"; +App::$strings["Homepage URL"] = "Homepage-URL"; App::$strings["Hometown"] = "Heimatort"; App::$strings["Political views"] = "Politische Ansichten"; App::$strings["Religious views"] = "Religiöse Ansichten"; @@ -765,311 +821,294 @@ App::$strings["Contact information and social networks"] = "Kontaktinformation u App::$strings["My other channels"] = "Meine anderen Kanäle"; App::$strings["Profile Image"] = "Profilfoto:"; App::$strings["Edit Profiles"] = "Profile bearbeiten"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; -App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; -App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; -App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; -App::$strings["Visible To"] = "Sichtbar für"; -App::$strings["Public Hubs"] = "Öffentliche Hubs"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Zugriffstyp"; -App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; -App::$strings["Stats"] = "Statistiken"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Bewertungen"; -App::$strings["Rate"] = "Bewerten"; -App::$strings["Website:"] = "Webseite:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; -App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; -App::$strings["No ratings"] = "Keine Bewertungen"; -App::$strings["Rating: "] = "Bewertung: "; -App::$strings["Website: "] = "Webseite: "; -App::$strings["Description: "] = "Beschreibung: "; -App::$strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; -App::$strings["# Accounts"] = "Anzahl der Konten"; -App::$strings["# blocked accounts"] = "Anzahl der blockierten Konten"; -App::$strings["# expired accounts"] = "Anzahl der abgelaufenen Konten"; -App::$strings["# expiring accounts"] = "Anzahl der ablaufenden Konten"; -App::$strings["# Channels"] = "Anzahl der Kanäle"; -App::$strings["# primary"] = "Anzahl der primären Kanäle"; -App::$strings["# clones"] = "Anzahl der Klone"; -App::$strings["Message queues"] = "Nachrichten-Warteschlangen"; -App::$strings["Your software should be updated"] = "Die installierte Software sollte aktualisiert werden"; -App::$strings["Administration"] = "Administration"; -App::$strings["Summary"] = "Zusammenfassung"; -App::$strings["Registered accounts"] = "Registrierte Konten"; -App::$strings["Pending registrations"] = "Ausstehende Registrierungen"; -App::$strings["Registered channels"] = "Registrierte Kanäle"; -App::$strings["Active plugins"] = "Aktive Plug-Ins"; -App::$strings["Version"] = "Version"; -App::$strings["Repository version (master)"] = "Repository-Version (master)"; -App::$strings["Repository version (dev)"] = "Repository-Version (dev)"; -App::$strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; -App::$strings["Default"] = "Standard"; -App::$strings["mobile"] = "mobil"; -App::$strings["experimental"] = "experimentell"; -App::$strings["unsupported"] = "nicht unterstützt"; -App::$strings["Yes - with approval"] = "Ja - mit Zustimmung"; -App::$strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server"; -App::$strings["My site has paid access only"] = "Meine Seite hat nur bezahlten Zugriff"; -App::$strings["My site has free access only"] = "Meine Seite hat nur freien Zugriff"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; -App::$strings["Site"] = "Seite"; -App::$strings["Registration"] = "Registrierung"; -App::$strings["File upload"] = "Dateiupload"; -App::$strings["Policies"] = "Richtlinien"; -App::$strings["Advanced"] = "Fortgeschritten"; -App::$strings["Site name"] = "Seitenname"; -App::$strings["Banner/Logo"] = "Banner/Logo"; -App::$strings["Administrator Information"] = "Administrator-Informationen"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; -App::$strings["System language"] = "System-Sprache"; -App::$strings["System theme"] = "System-Theme"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; -App::$strings["Mobile system theme"] = "Mobile System-Theme:"; -App::$strings["Theme for mobile devices"] = "Theme für mobile Geräte"; -App::$strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; -App::$strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; -App::$strings["Maximum image size"] = "Maximale Bildgröße"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; -App::$strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; -App::$strings["Invitation only"] = "Nur mit Einladung"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; -App::$strings["Register text"] = "Registrierungstext"; -App::$strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)"; -App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen."; -App::$strings["Preserve site homepage URL"] = "Homepage-URL schützen"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten."; -App::$strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; -App::$strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -App::$strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -App::$strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde."; -App::$strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; -App::$strings["Force publish"] = "Veröffentlichung erzwingen"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; -App::$strings["Import Public Streams"] = "Öffentliche Beiträge importieren"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert."; -App::$strings["Login on Homepage"] = "Log-in auf der Startseite"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden."; -App::$strings["Enable context help"] = "Kontext-Hilfe aktivieren"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird."; -App::$strings["Directory Server URL"] = "Verzeichnisserver-URL"; -App::$strings["Default directory server"] = "Standard-Verzeichnisserver"; -App::$strings["Proxy user"] = "Proxy Benutzer"; -App::$strings["Proxy URL"] = "Proxy URL"; -App::$strings["Network timeout"] = "Netzwerk-Timeout"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; -App::$strings["Delivery interval"] = "Auslieferung Intervall"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; -App::$strings["Deliveries per process"] = "Zustellungen pro Prozess"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5."; -App::$strings["Poll interval"] = "Abfrageintervall"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; -App::$strings["Maximum Load Average"] = "Maximales Load Average"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen"; -App::$strings["0 for no expiration of imported content"] = "0 = keine Löschung importierter Inhalte"; -App::$strings["Off"] = "Aus"; -App::$strings["On"] = "An"; -App::$strings["Lock feature %s"] = "Blockiere die Funktion %s"; -App::$strings["Manage Additional Features"] = "Zusätzliche Funktionen verwalten"; -App::$strings["No server found"] = "Kein Server gefunden"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "für Kanal"; -App::$strings["on server"] = "auf Server"; -App::$strings["Server"] = "Server"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:"; -App::$strings["https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "] = "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert."; -App::$strings["Security"] = "Sicherheit"; -App::$strings["Block public"] = "Öffentlichen Zugriff blockieren"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Setze den \"Transport Security\" HTTP Header"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Setze den \"Content Security Policy\" HTTP Header"; -App::$strings["Allow communications only from these sites"] = "Kommunikation nur von diesen Seiten erlauben"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben."; -App::$strings["Block communications from these sites"] = "Kommunikation von diesen Seiten blockieren"; -App::$strings["Allow communications only from these channels"] = "Kommunikation nur von diesen Kanälen erlauben"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. "; -App::$strings["Block communications from these channels"] = "Kommunikation von folgenden Kanälen blockieren"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains"; -App::$strings["One site per line. By default embedded content is filtered."] = "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert."; -App::$strings["Block embedded HTML from these domains"] = "Eingebettete HTML Inhalte von diesen Seiten blockieren"; -App::$strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; -App::$strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; -App::$strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; -App::$strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; -App::$strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; -App::$strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; -App::$strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; -App::$strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; -App::$strings["Queue Statistics"] = "Warteschlangenstatistiken"; -App::$strings["Total Entries"] = "Einträge insgesamt"; -App::$strings["Priority"] = "Priorität"; -App::$strings["Destination URL"] = "Ziel-URL"; -App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markieren"; -App::$strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren"; -App::$strings["Last known contact"] = "Letzter Kontakt"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s Konto blockiert/freigegeben", - 1 => "%s Konten blockiert/freigegeben", -); -App::$strings["%s account deleted"] = array( - 0 => "%s Konto gelöscht", - 1 => "%s Konten gelöscht", -); -App::$strings["Account not found"] = "Konto nicht gefunden"; -App::$strings["Account '%s' deleted"] = "Konto '%s' gelöscht"; -App::$strings["Account '%s' blocked"] = "Konto '%s' blockiert"; -App::$strings["Account '%s' unblocked"] = "Konto '%s' freigegeben"; -App::$strings["Accounts"] = "Konten"; -App::$strings["select all"] = "Alle auswählen"; -App::$strings["Registrations waiting for confirm"] = "Registrierungen warten auf Bestätigung"; -App::$strings["Request date"] = "Antragsdatum"; -App::$strings["No registrations."] = "Keine Registrierungen."; -App::$strings["Deny"] = "Verweigern"; -App::$strings["All Channels"] = "Alle Kanäle"; -App::$strings["Register date"] = "Registrierungs-Datum"; -App::$strings["Last login"] = "Letzte Anmeldung"; -App::$strings["Expires"] = "Verfällt"; -App::$strings["Service Class"] = "Service-Klasse"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s Kanal gesperrt/freigegeben", - 1 => "%s Kanäle gesperrt/freigegeben", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "Code für %s Kanal gesperrt/freigegeben", - 1 => "Code für %s Kanäle gesperrt/freigegeben", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s Kanal gelöscht", - 1 => "%s Kanäle gelöscht", -); -App::$strings["Channel not found"] = "Kanal nicht gefunden"; -App::$strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; -App::$strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; -App::$strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; -App::$strings["Channel '%s' code allowed"] = "Code für Kanal '%s' freigegeben"; -App::$strings["Channel '%s' code disallowed"] = "Code für Kanal '%s' gesperrt"; -App::$strings["Channels"] = "Kanäle"; -App::$strings["Censor"] = "Sperren"; -App::$strings["Uncensor"] = "Freigeben"; -App::$strings["Allow Code"] = "Code erlauben"; -App::$strings["Disallow Code"] = "Code sperren"; -App::$strings["Channel"] = "Kanal"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; -App::$strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; -App::$strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; -App::$strings["Disable"] = "Deaktivieren"; -App::$strings["Enable"] = "Aktivieren"; -App::$strings["Plugins"] = "Plug-Ins"; -App::$strings["Toggle"] = "Umschalten"; -App::$strings["Settings"] = "Einstellungen"; -App::$strings["Author: "] = "Autor: "; -App::$strings["Maintainer: "] = "Betreuer:"; -App::$strings["Minimum project version: "] = "Minimale Version des Projekts:"; -App::$strings["Maximum project version: "] = "Maximale Version des Projekts:"; -App::$strings["Minimum PHP version: "] = "Minimale PHP Version:"; -App::$strings["Requires: "] = "Benötigt:"; -App::$strings["Disabled - version incompatibility"] = "Abgeschaltet - Versionsinkompatibilität"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Gib die öffentliche Git-Repository-URL des Plugin-Repository an."; -App::$strings["Plugin repo git URL"] = "Plugin-Repository Git URL"; -App::$strings["Custom repo name"] = "Benutzerdefinierter Repository-Name"; -App::$strings["(optional)"] = "(optional)"; -App::$strings["Download Plugin Repo"] = "Plugin-Repository herunterladen"; -App::$strings["Install new repo"] = "Neues Repository installieren"; -App::$strings["Install"] = "Installieren"; -App::$strings["Manage Repos"] = "Repositorien verwalten"; -App::$strings["Installed Plugin Repositories"] = "Installierte Plugin-Repositorien"; -App::$strings["Install a New Plugin Repository"] = "Ein neues Plugin-Repository installieren"; -App::$strings["Update"] = "Aktualisieren"; -App::$strings["Switch branch"] = "Zweig/Branch wechseln"; -App::$strings["No themes found."] = "Keine Theme gefunden."; -App::$strings["Screenshot"] = "Bildschirmfoto"; -App::$strings["Themes"] = "Themes"; -App::$strings["[Experimental]"] = "[Experimentell]"; -App::$strings["[Unsupported]"] = "[Nicht unterstützt]"; -App::$strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; -App::$strings["Logs"] = "Protokolle"; -App::$strings["Clear"] = "Leeren"; -App::$strings["Debugging"] = "Debugging"; -App::$strings["Log file"] = "Protokolldatei"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis."; -App::$strings["Log level"] = "Protokollstufe"; -App::$strings["New Profile Field"] = "Neues Profilfeld"; -App::$strings["Field nickname"] = "Kurzname für das Feld"; -App::$strings["System name of field"] = "Systemname des Feldes"; -App::$strings["Input type"] = "Art des Inhalts"; -App::$strings["Field Name"] = "Feldname"; -App::$strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; -App::$strings["Help text"] = "Hilfetext"; -App::$strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; -App::$strings["Field definition not found"] = "Feld-Definition nicht gefunden"; -App::$strings["Edit Profile Field"] = "Profilfeld bearbeiten"; -App::$strings["Profile Fields"] = "Profil Felder"; -App::$strings["Basic Profile Fields"] = "Notwendige Profil Felder"; -App::$strings["Advanced Profile Fields"] = "Erweiterte Profil Felder"; -App::$strings["(In addition to basic fields)"] = "(zusätzlich zu notwendige Felder)"; -App::$strings["All available fields"] = "Alle verfügbaren Felder"; -App::$strings["Custom Fields"] = "Benutzerdefinierte Felder"; -App::$strings["Create Custom Field"] = "Erstelle benutzerdefiniertes Feld"; -App::$strings["App installed."] = "App installiert."; -App::$strings["Malformed app."] = "Fehlerhafte App."; -App::$strings["Embed code"] = "Code einbetten"; -App::$strings["Edit App"] = "App bearbeiten"; -App::$strings["Create App"] = "App erstellen"; -App::$strings["Name of app"] = "Name der App"; -App::$strings["Location (URL) of app"] = "Ort (URL) der App"; -App::$strings["Photo icon URL"] = "URL zum Icon"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; -App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Version ID"] = "Versions-ID"; -App::$strings["Price of app"] = "Preis der App"; -App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; +App::$strings["System Notifications"] = "System-Benachrichtigungen"; +App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; +App::$strings["is interested in:"] = "interessiert sich für:"; +App::$strings["No matches"] = "Keine Übereinstimmungen"; +App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; +App::$strings["Return to your app and insert this Security Code:"] = "Gehen Sie zu Ihrer App zurück und tragen Sie diesen Sicherheitscode ein:"; +App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; +App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; +App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; +App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; +App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; +App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; +App::$strings["Event not found."] = "Termin nicht gefunden."; +App::$strings["Edit event title"] = "Termintitel bearbeiten"; +App::$strings["Event title"] = "Termintitel"; +App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; +App::$strings["Edit Category"] = "Kategorie bearbeiten"; +App::$strings["Category"] = "Kategorie"; +App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; +App::$strings["Start date and time"] = "Startdatum und -zeit"; +App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; +App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; +App::$strings["Finish date and time"] = "Enddatum und -zeit"; +App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; +App::$strings["Edit Description"] = "Beschreibung bearbeiten"; +App::$strings["Edit Location"] = "Ort bearbeiten"; +App::$strings["Share this event"] = "Den Termin teilen"; +App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; +App::$strings["Advanced Options"] = "Weitere Optionen"; +App::$strings["l, F j"] = "l, j. F"; +App::$strings["Edit event"] = "Termin bearbeiten"; +App::$strings["Delete event"] = "Termin löschen"; +App::$strings["Link to Source"] = "Link zur Quelle"; +App::$strings["calendar"] = "Kalender"; +App::$strings["Edit Event"] = "Termin bearbeiten"; +App::$strings["Create Event"] = "Termin anlegen"; +App::$strings["Previous"] = "Voriges"; +App::$strings["Next"] = "Nächste"; +App::$strings["Export"] = "Exportieren"; +App::$strings["Month"] = "Monat"; +App::$strings["Week"] = "Woche"; +App::$strings["Day"] = "Tag"; +App::$strings["Today"] = "Heute"; +App::$strings["Event removed"] = "Termin gelöscht"; +App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; +App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; +App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; +App::$strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; +App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt."; +App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; +App::$strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; +App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; +App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; +App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; +App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; +App::$strings["[today]"] = "[Heute]"; +App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; +App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; +App::$strings["Discard"] = "Verwerfen"; +App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; +App::$strings["Poke"] = "Anstupsen"; +App::$strings["Poke somebody"] = "Jemanden anstupsen"; +App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; +App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; +App::$strings["Recipient"] = "Empfänger"; +App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; +App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; +App::$strings["\$Projectname Server - Setup"] = "\$Projectname Server-Einrichtung"; +App::$strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; +App::$strings["Could not create table."] = "Konnte Tabelle nicht erstellen."; +App::$strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Systemprüfung"; +App::$strings["Check again"] = "Nochmal prüfen"; +App::$strings["Database connection"] = "Datenbankverbindung"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; +App::$strings["Database Server Name"] = "Datenbankservername"; +App::$strings["Default is 127.0.0.1"] = "Standard ist 127.0.0.1"; +App::$strings["Database Port"] = "Datenbankport"; +App::$strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; +App::$strings["Database Login Name"] = "Datenbank-Benutzername"; +App::$strings["Database Login Password"] = "Datenbank-Passwort"; +App::$strings["Database Name"] = "Datenbankname"; +App::$strings["Database Type"] = "Datenbanktyp"; +App::$strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; +App::$strings["Website URL"] = "Webseiten-URL"; +App::$strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; +App::$strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; +App::$strings["Site settings"] = "Seiteneinstellungen"; +App::$strings["PHP version 5.5 or greater is required."] = "PHP-Version 5.5 oder höher ist erforderlich."; +App::$strings["PHP version"] = "PHP-Version"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; +App::$strings["PHP executable path"] = "PHP-Pfad zu ausführbarer Datei"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; +App::$strings["Command line PHP"] = "PHP-Befehlszeile"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; +App::$strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden."; +App::$strings["You can adjust these settings in the servers php.ini."] = "Du kannst diese Einstellungen in der php.ini des Servers ändern."; +App::$strings["PHP upload limits"] = "PHP-Hochladebeschränkungen"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; +App::$strings["Generate encryption keys"] = "Verschlüsselungsschlüssel erzeugen"; +App::$strings["libCurl PHP module"] = "libCurl-PHP-Modul"; +App::$strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; +App::$strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; +App::$strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; +App::$strings["mb_string PHP module"] = "mb_string-PHP-Modul"; +App::$strings["xml PHP module"] = "xml-PHP-Modul"; +App::$strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; +App::$strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; +App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; +App::$strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert."; +App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; +App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst."; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "\$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses."; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; +App::$strings["%s is writable"] = "%s ist beschreibbar"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses"; +App::$strings["store is writable"] = "store ist schreibbar"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; +App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; +App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer \$Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern."; +App::$strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; +App::$strings["Url rewrite is working"] = "Url rewrite funktioniert"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; +App::$strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; +App::$strings["

    What next

    "] = "

    Was als Nächstes

    "; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; +App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; +App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; +App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; +App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; +App::$strings["Visible To"] = "Sichtbar für"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; +App::$strings["Configuration Editor"] = "Konfigurationseditor"; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; +App::$strings["Apps"] = "Apps"; +App::$strings["Version %s"] = "Version %s"; +App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; +App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; +App::$strings["Tag: "] = "Schlagwort: "; +App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; +App::$strings["Current load average: "] = "Aktuelles Load Average:"; +App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; +App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; +App::$strings["Site Administrators"] = "Administratoren"; +App::$strings["Blocks"] = "Blöcke"; +App::$strings["Block Title"] = "Titel des Blocks"; +App::$strings["Layouts"] = "Layouts"; +App::$strings["Help"] = "Hilfe"; +App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; +App::$strings["Layout Description"] = "Layout-Beschreibung"; +App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; +App::$strings["Profile Photos"] = "Profilfotos"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; +App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +App::$strings["Permissions denied."] = "Berechtigung verweigert."; +App::$strings["Import"] = "Import"; +App::$strings["No channel."] = "Kein Kanal."; +App::$strings["Common connections"] = "Gemeinsame Verbindungen"; +App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +App::$strings["network"] = "Netzwerk"; +App::$strings["RSS"] = "RSS"; +App::$strings["Public Hubs"] = "Öffentliche Hubs"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Zugriffstyp"; +App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; +App::$strings["Stats"] = "Statistiken"; +App::$strings["Software"] = "Software"; +App::$strings["Rate"] = "Bewerten"; +App::$strings["Layout updated."] = "Layout aktualisiert."; +App::$strings["Feature disabled."] = "Funktion deaktiviert."; +App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +App::$strings["Layout not found."] = "Layout nicht gefunden."; +App::$strings["Module Name:"] = "Modulname:"; +App::$strings["Layout Help"] = "Layout-Hilfe"; +App::$strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; +App::$strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; +App::$strings["Connection updated."] = "Verbindung aktualisiert."; +App::$strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; +App::$strings["is now connected to"] = "ist jetzt verbunden mit"; +App::$strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; +App::$strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; +App::$strings["Connection has been removed."] = "Verbindung wurde gelöscht."; +App::$strings["View Profile"] = "Profil ansehen"; +App::$strings["View %s's profile"] = "%ss Profil ansehen"; +App::$strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; +App::$strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; +App::$strings["Recent Activity"] = "Kürzliche Aktivitäten"; +App::$strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; +App::$strings["This connection is blocked!"] = "Die Verbindung ist geblockt!"; +App::$strings["Unignore"] = "Nicht ignorieren"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; +App::$strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!"; +App::$strings["Unarchive"] = "Aus Archiv zurückholen"; +App::$strings["Archive"] = "Archivieren"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; +App::$strings["This connection is archived!"] = "Die Verbindung ist archiviert!"; +App::$strings["Unhide"] = "Wieder sichtbar machen"; +App::$strings["Hide"] = "Verstecken"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; +App::$strings["This connection is hidden!"] = "Die Verbindung ist versteckt!"; +App::$strings["Delete this connection"] = "Verbindung löschen"; +App::$strings["Me"] = "Ich"; +App::$strings["Family"] = "Familie"; +App::$strings["Friends"] = "Freunde"; +App::$strings["Acquaintances"] = "Bekannte"; +App::$strings["Approve this connection"] = "Verbindung genehmigen"; +App::$strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; +App::$strings["Set Affinity"] = "Beziehung festlegen"; +App::$strings["Set Profile"] = "Profil festlegen"; +App::$strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen"; +App::$strings["none"] = "Keine"; +App::$strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; +App::$strings["Connection: %s"] = "Verbindung: %s"; +App::$strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; +App::$strings["Connection requests will be approved without your interaction"] = "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist."; +App::$strings["This connection's primary address is"] = "Die Hauptadresse der Verbindung ist"; +App::$strings["Available locations:"] = "Verfügbare Klone:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet."; +App::$strings["Connection Tools"] = "Verbindungswerkzeuge"; +App::$strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; +App::$strings["Slide to adjust your rating"] = "Verschieben, um Deine Bewertung einzustellen"; +App::$strings["Optionally explain your rating"] = "Optional kannst Du Deine Bewertung begründen"; +App::$strings["Custom Filter"] = "Benutzerdefinierter Filter"; +App::$strings["Only import posts with this text"] = "Nur Beiträge mit diesem Text importieren"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren."; +App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text nicht importieren"; +App::$strings["This information is public!"] = "Diese Information ist öffentlich!"; +App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; +App::$strings["inherited"] = "geerbt"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; +App::$strings["Their Settings"] = "Deren Einstellungen"; +App::$strings["My Settings"] = "Meine Einstellungen"; +App::$strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; +App::$strings["Last update:"] = "Letzte Aktualisierung:"; App::$strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; App::$strings["Save Bookmark"] = "Lesezeichen speichern"; App::$strings["URL of bookmark"] = "URL des Lesezeichens"; App::$strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; -App::$strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -App::$strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -App::$strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -App::$strings["Registration on this hub is disabled."] = "Die Registrierung auf diesem Hub ist nicht möglich."; -App::$strings["Registration on this hub is by approval only."] = "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator."; -App::$strings["Register at another affiliated hub."] = "Registriere Dich auf einem der anderen verbundenen Hubs."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; -App::$strings["Terms of Service"] = "Nutzungsbedingungen"; -App::$strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; -App::$strings["Your email address"] = "Ihre E-Mail Adresse"; -App::$strings["Choose a password"] = "Passwort"; -App::$strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; -App::$strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; -App::$strings["no"] = "nein"; -App::$strings["yes"] = "ja"; -App::$strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -App::$strings["Register"] = "Registrieren"; -App::$strings["Proceed to create your first channel"] = "Fortfahren und Deinen ersten Kanal anlegen"; +App::$strings["This site is not a directory server"] = "Diese Webseite ist kein Verzeichnisserver"; +App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; +App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; +App::$strings["Authenticate"] = "Authentifizieren"; App::$strings["Please login."] = "Bitte melde dich an."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; App::$strings["Remove This Account"] = "Dieses Konto löschen"; @@ -1086,75 +1125,211 @@ App::$strings["This channel will be completely removed from the network. "] = "D App::$strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; App::$strings["Remove Channel"] = "Kanal löschen"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; -App::$strings["The error message was:"] = "Die Fehlermeldung war:"; -App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; -App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; -App::$strings["Authenticate"] = "Authentifizieren"; +App::$strings["Export Channel"] = "Kanal exportieren"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; +App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; +App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; +App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; App::$strings["Search results for: %s"] = "Suchergebnisse für: %s"; +App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; +App::$strings["Posts and comments"] = "Beiträge und Kommentare"; +App::$strings["Only posts"] = "Nur Beiträge"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; App::$strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; -App::$strings["Name is required"] = "Name ist erforderlich"; -App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; +App::$strings["Thing updated"] = "Sache aktualisiert"; +App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; +App::$strings["Thing added"] = "Sache hinzugefügt"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Sache anzeigen"; +App::$strings["item not found."] = "Eintrag nicht gefunden"; +App::$strings["Edit Thing"] = "Sache bearbeiten"; +App::$strings["Select a profile"] = "Wähle ein Profil"; +App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; +App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; +App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; +App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; +App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; +App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; +App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; +App::$strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; +App::$strings["NEW"] = "NEU"; +App::$strings["Remove all files"] = "Alle Dateien löschen"; +App::$strings["Remove this file"] = "Diese Datei löschen"; +App::$strings["Not found"] = "Nicht gefunden"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Sandbox"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\""; +App::$strings["Revision Comparison"] = "Revisionsvergleich"; +App::$strings["Revert"] = "Rückgängig machen"; +App::$strings["Enter the name of your new wiki:"] = "Gib einen Namen für Dein neues Wiki ein:"; +App::$strings["Enter the name of the new page:"] = "Geben Sie den Namen der neuen Seite ein:"; +App::$strings["Enter the new name:"] = "Geben Sie den neuen Namen ein:"; +App::$strings["Embed image from photo albums"] = "Bild aus Fotoalben einbetten"; +App::$strings["Embed an image from your albums"] = "Betten Sie ein Bild aus Ihren Alben ein"; +App::$strings["OK"] = "Ok"; +App::$strings["Choose images to embed"] = "Wählen Sie Bilder zum Einbetten aus"; +App::$strings["Choose an album"] = "Wählen Sie ein Album aus"; +App::$strings["Choose a different album..."] = "Wählen Sie ein anderes Album aus..."; +App::$strings["Error getting album list"] = "Fehler beim Holen der Albenliste"; +App::$strings["Error getting photo link"] = "Fehler beim Holen des Fotolinks"; +App::$strings["Error getting album"] = "Fehler beim Holen des Albums"; +App::$strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; +App::$strings["Source created."] = "Quelle erstellt."; +App::$strings["Source updated."] = "Quelle aktualisiert."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Kanal-Quellen"; +App::$strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; +App::$strings["New Source"] = "Neue Quelle"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; +App::$strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; +App::$strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; +App::$strings["Channel Name"] = "Name des Kanals"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)"; +App::$strings["Optional"] = "Optional"; +App::$strings["Source not found."] = "Quelle nicht gefunden."; +App::$strings["Edit Source"] = "Quelle bearbeiten"; +App::$strings["Delete Source"] = "Quelle löschen"; +App::$strings["Source removed"] = "Quelle gelöscht"; +App::$strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s folgt %2\$ss %3\$s nicht mehr"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; +App::$strings["Ignore/Hide"] = "Ignorieren/Verstecken"; +App::$strings["post"] = "Beitrag"; +App::$strings["comment"] = "Kommentar"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; +App::$strings["Tag removed"] = "Schlagwort entfernt"; +App::$strings["Remove Item Tag"] = "Schlagwort entfernen"; +App::$strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; +App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; +App::$strings["Album not found."] = "Album nicht gefunden."; +App::$strings["Delete Album"] = "Album löschen"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager"; +App::$strings["Delete Photo"] = "Foto löschen"; +App::$strings["No photos selected"] = "Keine Fotos ausgewählt"; +App::$strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; +App::$strings["Upload Photos"] = "Fotos hochladen"; +App::$strings["Enter an album name"] = "Namen für ein neues Album eingeben"; +App::$strings["or select an existing album (doubleclick)"] = "oder ein bereits vorhandenes auswählen (Doppelklick)"; +App::$strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; +App::$strings["Caption (optional):"] = "Beschriftung (optional):"; +App::$strings["Description (optional):"] = "Beschreibung (optional):"; +App::$strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; +App::$strings["Contact Photos"] = "Kontakt-Bilder"; +App::$strings["Show Newest First"] = "Neueste zuerst anzeigen"; +App::$strings["Show Oldest First"] = "Älteste zuerst anzeigen"; +App::$strings["View Photo"] = "Foto ansehen"; +App::$strings["Edit Album"] = "Album bearbeiten"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; +App::$strings["Photo not available"] = "Foto nicht verfügbar"; +App::$strings["Use as profile photo"] = "Als Profilfoto verwenden"; +App::$strings["Use as cover photo"] = "Als Titelbild verwenden"; +App::$strings["Private Photo"] = "Privates Foto"; +App::$strings["View Full Size"] = "In voller Größe anzeigen"; +App::$strings["Edit photo"] = "Foto bearbeiten"; +App::$strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; +App::$strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; +App::$strings["Move photo to album"] = "Foto in Album verschieben"; +App::$strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; +App::$strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; +App::$strings["Caption"] = "Bildunterschrift"; +App::$strings["Add a Tag"] = "Schlagwort hinzufügen"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; +App::$strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; +App::$strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; +App::$strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; +App::$strings["Please wait"] = "Bitte warten"; +App::$strings["This is you"] = "Das bist Du"; +App::$strings["Comment"] = "Kommentar"; +App::$strings["__ctx:title__ Likes"] = "Gefällt mir"; +App::$strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; +App::$strings["__ctx:title__ Agree"] = "Zustimmungen"; +App::$strings["__ctx:title__ Disagree"] = "Ablehnungen"; +App::$strings["__ctx:title__ Abstain"] = "Enthaltungen"; +App::$strings["__ctx:title__ Attending"] = "Zusagen"; +App::$strings["__ctx:title__ Not attending"] = "Absagen"; +App::$strings["__ctx:title__ Might attend"] = "Vielleicht"; +App::$strings["View all"] = "Alles anzeigen"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Gefällt mir", + 1 => "Gefällt mir", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Gefällt nicht", + 1 => "Gefällt nicht", +); +App::$strings["Photo Tools"] = "Fotowerkzeuge"; +App::$strings["In This Photo:"] = "Auf diesem Foto:"; +App::$strings["Map"] = "Karte"; +App::$strings["__ctx:noun__ Likes"] = "Gefällt mir"; +App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; +App::$strings["Close"] = "Schließen"; +App::$strings["View Album"] = "Album ansehen"; +App::$strings["Recent Photos"] = "Neueste Fotos"; +App::$strings["Channel added."] = "Kanal hinzugefügt."; +App::$strings["No connections."] = "Keine Verbindungen."; +App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; +App::$strings["View Connections"] = "Verbindungen anzeigen"; +App::$strings["Source of Item"] = "Quelle des Elements"; +App::$strings["Room not found"] = "Chatraum nicht gefunden"; +App::$strings["Leave Room"] = "Raum verlassen"; +App::$strings["Delete Room"] = "Raum löschen"; +App::$strings["I am away right now"] = "Ich bin gerade nicht da"; +App::$strings["I am online"] = "Ich bin online"; +App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; +App::$strings["New Chatroom"] = "Neuer Chatraum"; +App::$strings["Chatroom name"] = "Chatraumname"; +App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; +App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; +App::$strings["Expiration"] = "Verfall"; +App::$strings["min"] = "min"; +App::$strings["Xchan Lookup"] = "Xchan-Suche"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; +App::$strings["# Accounts"] = "Anzahl der Konten"; +App::$strings["# blocked accounts"] = "Anzahl der blockierten Konten"; +App::$strings["# expired accounts"] = "Anzahl der abgelaufenen Konten"; +App::$strings["# expiring accounts"] = "Anzahl der ablaufenden Konten"; +App::$strings["# Channels"] = "Anzahl der Kanäle"; +App::$strings["# primary"] = "Anzahl der primären Kanäle"; +App::$strings["# clones"] = "Anzahl der Klone"; +App::$strings["Message queues"] = "Nachrichten-Warteschlangen"; +App::$strings["Your software should be updated"] = "Die installierte Software sollte aktualisiert werden"; +App::$strings["Summary"] = "Zusammenfassung"; +App::$strings["Registered accounts"] = "Registrierte Konten"; +App::$strings["Pending registrations"] = "Ausstehende Registrierungen"; +App::$strings["Registered channels"] = "Registrierte Kanäle"; +App::$strings["Active plugins"] = "Aktive Plug-Ins"; +App::$strings["Version"] = "Version"; +App::$strings["Repository version (master)"] = "Repository-Version (master)"; +App::$strings["Repository version (dev)"] = "Repository-Version (dev)"; App::$strings["Not valid email."] = "Keine gültige E-Mail Adresse."; App::$strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."; -App::$strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; -App::$strings["Password verification failed."] = "Passwortüberprüfung fehlgeschlagen."; -App::$strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; -App::$strings["Password changed."] = "Kennwort geändert."; -App::$strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."; -App::$strings["Settings updated."] = "Einstellungen aktualisiert."; -App::$strings["Add application"] = "Anwendung hinzufügen"; -App::$strings["Name of application"] = "Name der Anwendung"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Umleitung"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; -App::$strings["Icon url"] = "Symbol-URL"; -App::$strings["Optional"] = "Optional"; -App::$strings["Application not found."] = "Die Anwendung wurde nicht gefunden."; -App::$strings["Connected Apps"] = "Verbundene Apps"; -App::$strings["Client key starts with"] = "Client Key beginnt mit"; -App::$strings["No name"] = "Kein Name"; -App::$strings["Remove authorization"] = "Authorisierung aufheben"; -App::$strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; -App::$strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; -App::$strings["Account Settings"] = "Konto-Einstellungen"; -App::$strings["Current Password"] = "Aktuelles Passwort"; -App::$strings["Enter New Password"] = "Gib ein neues Passwort ein"; -App::$strings["Confirm New Password"] = "Bestätige das neue Passwort"; -App::$strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; -App::$strings["Email Address:"] = "Email Adresse:"; -App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; -App::$strings["Additional Features"] = "Zusätzliche Funktionen"; -App::$strings["Connector Settings"] = "Connector-Einstellungen"; -App::$strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; -App::$strings["%s - (Experimental)"] = "%s – (experimentell)"; -App::$strings["Display Settings"] = "Anzeige-Einstellungen"; -App::$strings["Theme Settings"] = "Theme-Einstellungen"; -App::$strings["Custom Theme Settings"] = "Benutzerdefinierte Theme-Einstellungen"; -App::$strings["Content Settings"] = "Inhaltseinstellungen"; -App::$strings["Display Theme:"] = "Anzeige-Theme:"; -App::$strings["Mobile Theme:"] = "Mobile Theme:"; -App::$strings["Preload images before rendering the page"] = "Bilder im voraus laden, bevor die Seite angezeigt wird"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird"; -App::$strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; -App::$strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; -App::$strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; -App::$strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen"; -App::$strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; -App::$strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)"; -App::$strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; -App::$strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; -App::$strings["Use blog/list mode on grid page"] = "Blog-/Listenmodus auf der Netzwerkseite verwenden"; -App::$strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; -App::$strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; -App::$strings["Grid page max height of content (in pixels)"] = "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite"; +App::$strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; +App::$strings["Technical skill level updated"] = "Technische Qualifikationsstufe aktualisiert"; +App::$strings["Password verification failed."] = "Passwortüberprüfung fehlgeschlagen."; +App::$strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; +App::$strings["Password changed."] = "Kennwort geändert."; +App::$strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."; +App::$strings["Account Settings"] = "Konto-Einstellungen"; +App::$strings["Current Password"] = "Aktuelles Passwort"; +App::$strings["Enter New Password"] = "Gib ein neues Passwort ein"; +App::$strings["Confirm New Password"] = "Bestätige das neue Passwort"; +App::$strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; +App::$strings["Your technical skill level"] = "Deine technische Qualifikationsstufe"; +App::$strings["Used to provide a member experience matched to your comfort level"] = "Dies wird verwendet, um Dir eine Benutzererfahrung passend zu Deiner technischen Qualifikationsstufe zu bieten."; +App::$strings["Email Address:"] = "Email Adresse:"; +App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; +App::$strings["Settings updated."] = "Einstellungen aktualisiert."; App::$strings["Nobody except yourself"] = "Niemand außer Dir selbst"; App::$strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst"; App::$strings["Approved connections"] = "Angenommene Verbindungen"; @@ -1186,7 +1361,7 @@ App::$strings["Private - default private, never open or public"] = "Pri App::$strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle standardmäßig blockiert"; App::$strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten"; App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren"; -App::$strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen"; +App::$strings["Channel Permission Limits"] = "Kanal-Berechtigungslimits"; App::$strings["Expire other channel content after this many days"] = "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen"; App::$strings["0 or blank to use the website limit."] = "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden."; App::$strings["This website expires after %d days."] = "Diese Webseite läuft nach %d Tagen ab."; @@ -1194,7 +1369,7 @@ App::$strings["This website does not expire imported content."] = "Diese Webseit App::$strings["The website limit takes precedence if lower than your limit."] = "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist."; App::$strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; App::$strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; -App::$strings["Default Post and Publish Permissions"] = "Standard-Berechtigungen für Beiträge und andere Inhalte"; +App::$strings["Default Access Control List (ACL)"] = "Standard-Zugriffsberechtigungsliste (ACL)"; App::$strings["Use my default audience setting for the type of object published"] = "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps"; App::$strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:"; App::$strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; @@ -1232,7 +1407,6 @@ App::$strings["Notify me of events this many days in advance"] = "Benachrichtige App::$strings["Must be greater than 0"] = "Muss größer als 0 sein"; App::$strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen"; App::$strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!"; App::$strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; App::$strings["Default photo upload folder"] = "Voreingestellter Ordner für hochgeladene Fotos"; App::$strings["%Y - current year, %m - current month"] = "%Y - aktuelles Jahr, %m - aktueller Monat"; @@ -1241,192 +1415,58 @@ App::$strings["Personal menu to display in your channel pages"] = "Eigenes Menü App::$strings["Remove this channel."] = "Diesen Kanal löschen"; App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-Provider für Firefox Share"; App::$strings["Start calendar week on monday"] = "Montag als erster Tag der Kalenderwoche"; -App::$strings["\$Projectname Server - Setup"] = "\$Projectname Server-Einrichtung"; -App::$strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; -App::$strings["Could not create table."] = "Kann Tabelle nicht erstellen."; -App::$strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Systemprüfung"; -App::$strings["Check again"] = "Bitte nochmal prüfen"; -App::$strings["Database connection"] = "Datenbank Verbindung"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; -App::$strings["Database Server Name"] = "Datenbank-Servername"; -App::$strings["Default is 127.0.0.1"] = "Standard ist 127.0.0.1"; -App::$strings["Database Port"] = "Datenbank-Port"; -App::$strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; -App::$strings["Database Login Name"] = "Datenbank-Benutzername"; -App::$strings["Database Login Password"] = "Datenbank-Kennwort"; -App::$strings["Database Name"] = "Datenbank-Name"; -App::$strings["Database Type"] = "Datenbanktyp"; -App::$strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; -App::$strings["Website URL"] = "Server-URL"; -App::$strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; -App::$strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; -App::$strings["Site settings"] = "Seiteneinstellungen"; -App::$strings["Enable \$Projectname advanced features?"] = "Erweiterte Funktionen für \$Projectname aktivieren?"; -App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Einige erweiterte Funktionen können ungeachtet ihrer Nützlichkeit eher für eine technisch versierte Zielgruppe geeignet sein."; -App::$strings["PHP version 5.5 or greater is required."] = "PHP Version 5.5 oder höher wird benötigt."; -App::$strings["PHP version"] = "PHP-Version"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; -App::$strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; -App::$strings["Command line PHP"] = "PHP Befehlszeile"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; -App::$strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Du kannst diese Einstellungen in der php.ini des Servers ändern."; -App::$strings["PHP upload limits"] = "PHP-Hochladebeschränkungen"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; -App::$strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; -App::$strings["libCurl PHP module"] = "libCurl-PHP-Modul"; -App::$strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; -App::$strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; -App::$strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; -App::$strings["mb_string PHP module"] = "mb_string-PHP-Modul"; -App::$strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; -App::$strings["xml PHP module"] = "xml-PHP-Modul"; -App::$strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; -App::$strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert."; -App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; -App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "\$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses."; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; -App::$strings["%s is writable"] = "%s ist beschreibbar"; -App::$strings["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"] = "\$Projectname benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; -App::$strings["store is writable"] = "store ist schreibbar"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; -App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; -App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer \$Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; -App::$strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; -App::$strings["Url rewrite is working"] = "Url rewrite funktioniert"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; -App::$strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; -App::$strings["

    What next

    "] = "

    Was als Nächstes

    "; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; -App::$strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; -App::$strings["NEW"] = "NEU"; -App::$strings["Remove all files"] = "Alle Dateien löschen"; -App::$strings["Remove this file"] = "Diese Datei löschen"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; -App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; -App::$strings["Tag: "] = "Schlagwort: "; -App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; -App::$strings["Current load average: "] = "Aktuelles Load Average:"; -App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; -App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; -App::$strings["Site Administrators"] = "Administratoren"; -App::$strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; -App::$strings["Source created."] = "Quelle erstellt."; -App::$strings["Source updated."] = "Quelle aktualisiert."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Kanal-Quellen"; -App::$strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; -App::$strings["New Source"] = "Neue Quelle"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; -App::$strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; -App::$strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; -App::$strings["Channel Name"] = "Name des Kanals"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)"; -App::$strings["Source not found."] = "Quelle nicht gefunden."; -App::$strings["Edit Source"] = "Quelle bearbeiten"; -App::$strings["Delete Source"] = "Quelle löschen"; -App::$strings["Source removed"] = "Quelle gelöscht"; -App::$strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s folgt %2\$ss %3\$s nicht mehr"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; -App::$strings["Ignore/Hide"] = "Ignorieren/Verstecken"; -App::$strings["post"] = "Beitrag"; -App::$strings["comment"] = "Kommentar"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; -App::$strings["Tag removed"] = "Schlagwort entfernt"; -App::$strings["Remove Item Tag"] = "Schlagwort entfernen"; -App::$strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; -App::$strings["Thing updated"] = "Sache aktualisiert"; -App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; -App::$strings["Thing added"] = "Sache hinzugefügt"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Sache anzeigen"; -App::$strings["item not found."] = "Eintrag nicht gefunden"; -App::$strings["Edit Thing"] = "Sache bearbeiten"; -App::$strings["Select a profile"] = "Wähle ein Profil"; -App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; -App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; -App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; -App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; -App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; -App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; -App::$strings["Export Channel"] = "Kanal exportieren"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; -App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; -App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; -App::$strings["No connections."] = "Keine Verbindungen."; -App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; -App::$strings["View Connections"] = "Verbindungen anzeigen"; -App::$strings["Source of Item"] = "Quelle des Elements"; -App::$strings["Webpages"] = "Webseiten"; -App::$strings["Actions"] = "Aktionen"; -App::$strings["Page Link"] = "Seiten-Link"; -App::$strings["Page Title"] = "Seitentitel"; -App::$strings["Xchan Lookup"] = "Xchan-Suche"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; -App::$strings["Site Admin"] = "Hub-Administration"; -App::$strings["Bug Report"] = "Fehler-Rückmeldung"; -App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; -App::$strings["My Chatrooms"] = "Meine Chaträume"; -App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; -App::$strings["Remote Diagnostics"] = "Ferndiagnose"; -App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; -App::$strings["Login"] = "Anmelden"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Mein Kanal"; -App::$strings["Events"] = "Termine"; -App::$strings["Directory"] = "Verzeichnis"; -App::$strings["Mail"] = "Mail"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Testen"; -App::$strings["Suggest"] = "Empfehlen"; -App::$strings["Random Channel"] = "Zufälliger Kanal"; -App::$strings["Invite"] = "Einladen"; -App::$strings["Features"] = "Funktionen"; -App::$strings["Post"] = "Beitrag schreiben"; -App::$strings["Purchase"] = "Kaufen"; +App::$strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; +App::$strings["%s - (Experimental)"] = "%s – (experimentell)"; +App::$strings["Display Settings"] = "Anzeige-Einstellungen"; +App::$strings["Theme Settings"] = "Theme-Einstellungen"; +App::$strings["Custom Theme Settings"] = "Benutzerdefinierte Theme-Einstellungen"; +App::$strings["Content Settings"] = "Inhaltseinstellungen"; +App::$strings["Display Theme:"] = "Anzeige-Theme:"; +App::$strings["Select scheme"] = "Schema wählen"; +App::$strings["Mobile Theme:"] = "Mobile Theme:"; +App::$strings["Preload images before rendering the page"] = "Bilder im voraus laden, bevor die Seite angezeigt wird"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird"; +App::$strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; +App::$strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; +App::$strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; +App::$strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; +App::$strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen"; +App::$strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; +App::$strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)"; +App::$strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; +App::$strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; +App::$strings["Use blog/list mode on grid page"] = "Blog-/Listenmodus auf der Netzwerkseite verwenden"; +App::$strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; +App::$strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; +App::$strings["Grid page max height of content (in pixels)"] = "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite"; +App::$strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; +App::$strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; +App::$strings["Additional Features"] = "Zusätzliche Funktionen"; +App::$strings["Name is required"] = "Name ist erforderlich"; +App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; +App::$strings["Add application"] = "Anwendung hinzufügen"; +App::$strings["Name of application"] = "Name der Anwendung"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Redirect"] = "Umleitung"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; +App::$strings["Icon url"] = "Symbol-URL"; +App::$strings["Application not found."] = "Die Anwendung wurde nicht gefunden."; +App::$strings["Connected Apps"] = "Verbundene Apps"; +App::$strings["Client key starts with"] = "Client Key beginnt mit"; +App::$strings["No name"] = "Kein Name"; +App::$strings["Remove authorization"] = "Authorisierung aufheben"; +App::$strings["This channel is limited to %d tokens"] = "Dieser Kanal ist auf %d Token begrenzt"; +App::$strings["Name and Password are required."] = "Name und Passwort sind erforderlich."; +App::$strings["Token saved."] = "Token gespeichert."; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:"; +App::$strings["Guest Access Tokens"] = "Gastzugangstoken"; +App::$strings["Login Name"] = "Anmeldename"; +App::$strings["Login Password"] = "Anmeldepasswort"; +App::$strings["Expires (yyyy-mm-dd)"] = "Läuft ab (jjjj-mm-tt)"; App::$strings["Missing room name"] = "Der Chatraum hat keinen Namen"; App::$strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; App::$strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; @@ -1474,6 +1514,43 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte b App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Benachrichtigung]"; App::$strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; +App::$strings["Only me"] = "Nur ich"; +App::$strings["Public"] = "Öffentlich"; +App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; +App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; +App::$strings["Any of my connections"] = "Alle meine Verbindungen"; +App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; +App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; +App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; +App::$strings["Site Admin"] = "Hub-Administration"; +App::$strings["Bug Report"] = "Fehler-Rückmeldung"; +App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; +App::$strings["My Chatrooms"] = "Meine Chaträume"; +App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; +App::$strings["Remote Diagnostics"] = "Ferndiagnose"; +App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; +App::$strings["Login"] = "Anmelden"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Mein Kanal"; +App::$strings["Events"] = "Termine"; +App::$strings["Directory"] = "Verzeichnis"; +App::$strings["Mail"] = "Mail"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Testen"; +App::$strings["Suggest"] = "Empfehlen"; +App::$strings["Random Channel"] = "Zufälliger Kanal"; +App::$strings["Invite"] = "Einladen"; +App::$strings["Features"] = "Funktionen"; +App::$strings["Language"] = "Sprache"; +App::$strings["Post"] = "Beitrag schreiben"; +App::$strings["Profile Photo"] = "Profilfoto"; +App::$strings["Purchase"] = "Kaufen"; App::$strings["Private Message"] = "Private Nachricht"; App::$strings["Select"] = "Auswählen"; App::$strings["Save to Folder"] = "In Ordner speichern"; @@ -1510,7 +1587,7 @@ App::$strings["Expires: %s"] = "Verfällt: %s"; App::$strings["Save Bookmarks"] = "Favoriten speichern"; App::$strings["Add to Calendar"] = "Zum Kalender hinzufügen"; App::$strings["Mark all seen"] = "Alle als gelesen markieren"; -App::$strings["[+] show all"] = "[+] Alle anzeigen"; +App::$strings["%s show all"] = "%s mehr anzeigen"; App::$strings["Bold"] = "Fett"; App::$strings["Italic"] = "Kursiv"; App::$strings["Underline"] = "Unterstrichen"; @@ -1522,26 +1599,92 @@ App::$strings["Video"] = "Video"; App::$strings["No username found in import file."] = "Kein Benutzername in der Importdatei gefunden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; -App::$strings["Categories"] = "Kategorien"; -App::$strings["Tags"] = "Schlagwörter"; -App::$strings["Keywords"] = "Schlüsselwörter"; -App::$strings["have"] = "habe"; -App::$strings["has"] = "hat"; -App::$strings["want"] = "will"; -App::$strings["wants"] = "will"; -App::$strings["likes"] = "gefällt"; -App::$strings["dislikes"] = "missfällt"; -App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; -App::$strings["Starts:"] = "Beginnt:"; -App::$strings["Finishes:"] = "Endet:"; -App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; -App::$strings["Not specified"] = "Keine Angabe"; -App::$strings["Needs Action"] = "Aktion erforderlich"; -App::$strings["Completed"] = "Abgeschlossen"; -App::$strings["In Process"] = "In Bearbeitung"; -App::$strings["Cancelled"] = "gestrichen"; +App::$strings["view full size"] = "In Vollbildansicht anschauen"; +App::$strings["Administrator"] = "Administrator"; +App::$strings["No Subject"] = "Kein Betreff"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot!"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; +App::$strings["Image file is empty."] = "Bilddatei ist leer."; +App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; +App::$strings["a new photo"] = "ein neues Foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; +App::$strings["Photo Albums"] = "Fotoalben"; +App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; +App::$strings["Logout"] = "Abmelden"; +App::$strings["End this session"] = "Beende diese Sitzung"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +App::$strings["Your profile page"] = "Deine Profilseite"; +App::$strings["Manage/Edit profiles"] = "Profile verwalten"; +App::$strings["Edit Profile"] = "Profile bearbeiten"; +App::$strings["Edit your profile"] = "Profil bearbeiten"; +App::$strings["Your photos"] = "Deine Bilder"; +App::$strings["Your files"] = "Deine Dateien"; +App::$strings["Your chatrooms"] = "Deine Chaträume"; +App::$strings["Bookmarks"] = "Lesezeichen"; +App::$strings["Your bookmarks"] = "Deine Lesezeichen"; +App::$strings["Your webpages"] = "Deine Webseiten"; +App::$strings["Your wiki"] = "Dein Wiki"; +App::$strings["Sign in"] = "Anmelden"; +App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; +App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; +App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Erzeuge ein Konto"; +App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; +App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; +App::$strings["Your grid"] = "Dein Grid"; +App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; +App::$strings["Channel home"] = "Mein Kanal"; +App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; +App::$strings["Notices"] = "Benachrichtigungen"; +App::$strings["Notifications"] = "Benachrichtigungen"; +App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; +App::$strings["Private mail"] = "Persönliche Mail"; +App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; +App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; +App::$strings["Inbox"] = "Eingang"; +App::$strings["Outbox"] = "Ausgang"; +App::$strings["New Message"] = "Neue Nachricht"; +App::$strings["Event Calendar"] = "Terminkalender"; +App::$strings["See all events"] = "Alle Termine ansehen"; +App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; +App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; +App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; +App::$strings["Admin"] = "Administration"; +App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; +App::$strings["Loading..."] = "Lädt ..."; +App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Please wait..."] = "Bitte warten..."; +App::$strings["Embedded content"] = "Eingebetteter Inhalt"; +App::$strings["Embedding disabled"] = "Einbetten deaktiviert"; +App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; +App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; +App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; +App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; +App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; +App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; +App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; +App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; App::$strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; +App::$strings["Unable to import element \""] = ""; App::$strings["(Unknown)"] = "(Unbekannt)"; App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; App::$strings["Visible to you only."] = "Nur für Dich sichtbar."; @@ -1555,63 +1698,207 @@ App::$strings["Privacy group is empty."] = "Gruppe ist leer."; App::$strings["Privacy group: %s"] = "Gruppe: %s"; App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; App::$strings["profile photo"] = "Profilfoto"; -App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; -App::$strings["[no subject]"] = "[no subject]"; -App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; -App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; -App::$strings["prev"] = "vorherige"; -App::$strings["first"] = "erste"; -App::$strings["last"] = "letzte"; -App::$strings["next"] = "nächste"; -App::$strings["older"] = "älter"; -App::$strings["newer"] = "neuer"; -App::$strings["No connections"] = "Keine Verbindungen"; -App::$strings["View all %s connections"] = "Alle Verbindungen von %s anzeigen"; -App::$strings["poke"] = "anstupsen"; -App::$strings["poked"] = "stupste"; -App::$strings["ping"] = "anpingen"; -App::$strings["pinged"] = "pingte"; -App::$strings["prod"] = "knuffen"; -App::$strings["prodded"] = "knuffte"; -App::$strings["slap"] = "ohrfeigen"; -App::$strings["slapped"] = "ohrfeigte"; -App::$strings["finger"] = "befummeln"; -App::$strings["fingered"] = "befummelte"; -App::$strings["rebuff"] = "eine Abfuhr erteilen"; -App::$strings["rebuffed"] = "zurückgewiesen"; -App::$strings["happy"] = "glücklich"; -App::$strings["sad"] = "traurig"; -App::$strings["mellow"] = "sanft"; -App::$strings["tired"] = "müde"; -App::$strings["perky"] = "frech"; -App::$strings["angry"] = "sauer"; -App::$strings["stupefied"] = "verblüfft"; -App::$strings["puzzled"] = "verwirrt"; -App::$strings["interested"] = "interessiert"; -App::$strings["bitter"] = "verbittert"; -App::$strings["cheerful"] = "fröhlich"; -App::$strings["alive"] = "lebendig"; -App::$strings["annoyed"] = "verärgert"; -App::$strings["anxious"] = "unruhig"; -App::$strings["cranky"] = "schrullig"; -App::$strings["disturbed"] = "verstört"; -App::$strings["frustrated"] = "frustriert"; -App::$strings["depressed"] = "deprimiert"; -App::$strings["motivated"] = "motiviert"; -App::$strings["relaxed"] = "entspannt"; -App::$strings["surprised"] = "überrascht"; -App::$strings["Monday"] = "Montag"; -App::$strings["Tuesday"] = "Dienstag"; -App::$strings["Wednesday"] = "Mittwoch"; -App::$strings["Thursday"] = "Donnerstag"; -App::$strings["Friday"] = "Freitag"; -App::$strings["Saturday"] = "Samstag"; -App::$strings["Sunday"] = "Sonntag"; +App::$strings["Birthday"] = "Geburtstag"; +App::$strings["Age: "] = "Alter:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; +App::$strings["never"] = "Nie"; +App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "Jahr", + 1 => "Jahre", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "Monat", + 1 => "Monate", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "Woche", + 1 => "Wochen", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "Tag", + 1 => "Tage", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "Stunde", + 1 => "Stunden", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "Minute", + 1 => "Minuten", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "Sekunde", + 1 => "Sekunden", +); +App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; +App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; +App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; +App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; +App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; +App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; +App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; +App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; +App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; +App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; +App::$strings["your registration password"] = "Dein Registrierungspasswort"; +App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; +App::$strings["Account approved."] = "Nutzerkonto bestätigt."; +App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; +App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; +App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; +App::$strings["Frequently"] = "Häufig"; +App::$strings["Hourly"] = "Stündlich"; +App::$strings["Twice daily"] = "Zwei Mal am Tag"; +App::$strings["Daily"] = "Täglich"; +App::$strings["Weekly"] = "Wöchentlich"; +App::$strings["Monthly"] = "Monatlich"; +App::$strings["Male"] = "Männlich"; +App::$strings["Female"] = "Weiblich"; +App::$strings["Currently Male"] = "Momentan männlich"; +App::$strings["Currently Female"] = "Momentan weiblich"; +App::$strings["Mostly Male"] = "Größtenteils männlich"; +App::$strings["Mostly Female"] = "Größtenteils weiblich"; +App::$strings["Transgender"] = "Transsexuell"; +App::$strings["Intersex"] = "Zwischengeschlechtlich"; +App::$strings["Transsexual"] = "Transsexuell"; +App::$strings["Hermaphrodite"] = "Zwitter"; +App::$strings["Neuter"] = "Geschlechtslos"; +App::$strings["Non-specific"] = "unklar"; +App::$strings["Undecided"] = "Unentschieden"; +App::$strings["Males"] = "Männer"; +App::$strings["Females"] = "Frauen"; +App::$strings["Gay"] = "Schwul"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Keine Bevorzugung"; +App::$strings["Bisexual"] = "Bisexuell"; +App::$strings["Autosexual"] = "Autosexuell"; +App::$strings["Abstinent"] = "Enthaltsam"; +App::$strings["Virgin"] = "Jungfräulich"; +App::$strings["Deviant"] = "Abweichend"; +App::$strings["Fetish"] = "Fetisch"; +App::$strings["Oodles"] = "Unmengen"; +App::$strings["Nonsexual"] = "Sexlos"; +App::$strings["Single"] = "Single"; +App::$strings["Lonely"] = "Einsam"; +App::$strings["Available"] = "Verfügbar"; +App::$strings["Unavailable"] = "Nicht verfügbar"; +App::$strings["Has crush"] = "Verguckt"; +App::$strings["Infatuated"] = "Verknallt"; +App::$strings["Dating"] = "Lerne gerade jemanden kennen"; +App::$strings["Unfaithful"] = "Treulos"; +App::$strings["Sex Addict"] = "Sexabhängig"; +App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; +App::$strings["Casual"] = "Lose"; +App::$strings["Engaged"] = "Verlobt"; +App::$strings["Married"] = "Verheiratet"; +App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; +App::$strings["Partners"] = "Partner"; +App::$strings["Cohabiting"] = "Lebensgemeinschaft"; +App::$strings["Common law"] = "Informelle Ehe"; +App::$strings["Happy"] = "Glücklich"; +App::$strings["Not looking"] = "Nicht Ausschau haltend"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Betrogen"; +App::$strings["Separated"] = "Getrennt"; +App::$strings["Unstable"] = "Labil"; +App::$strings["Divorced"] = "Geschieden"; +App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; +App::$strings["Widowed"] = "Verwitwet"; +App::$strings["Uncertain"] = "Ungewiss"; +App::$strings["It's complicated"] = "Es ist kompliziert"; +App::$strings["Don't care"] = "Interessiert mich nicht"; +App::$strings["Ask me"] = "Frag mich mal"; +App::$strings["Image/photo"] = "Bild/Foto"; +App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; +App::$strings["Install %s element: "] = "Element %s installieren: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; +App::$strings["spoiler"] = "Spoiler"; +App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; +App::$strings["$1 wrote:"] = "$1 schrieb:"; +App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; +App::$strings["Starts:"] = "Beginnt:"; +App::$strings["Finishes:"] = "Endet:"; +App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; +App::$strings["Not specified"] = "Keine Angabe"; +App::$strings["Needs Action"] = "Aktion erforderlich"; +App::$strings["Completed"] = "Abgeschlossen"; +App::$strings["In Process"] = "In Bearbeitung"; +App::$strings["Cancelled"] = "gestrichen"; +App::$strings["guest:"] = "Gast:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; +App::$strings["Help:"] = "Hilfe:"; +App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; +App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; +App::$strings["edit"] = "Bearbeiten"; +App::$strings["Privacy Groups"] = "Gruppen"; +App::$strings["Edit group"] = "Gruppe ändern"; +App::$strings["Add privacy group"] = "Gruppe hinzufügen"; +App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind"; +App::$strings["add"] = "hinzufügen"; +App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; +App::$strings["No source file."] = "Keine Quelldatei."; +App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; +App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; +App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; +App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; +App::$strings["Path not available."] = "Pfad nicht verfügbar."; +App::$strings["Empty pathname"] = "Leere Pfadangabe"; +App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; +App::$strings["Path not found."] = "Pfad nicht gefunden."; +App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; +App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; +App::$strings["Empty path"] = "Leere Pfadangabe"; +App::$strings["New Page"] = "Neue Seite"; +App::$strings["Title"] = "Titel"; +App::$strings["Attachments:"] = "Anhänge:"; +App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; +App::$strings["Delete this item?"] = "Dieses Element löschen?"; +App::$strings["%s show less"] = "%s weniger anzeigen"; +App::$strings["%s expand"] = "%s aufklappen"; +App::$strings["%s collapse"] = "%s einklappen"; +App::$strings["Password too short"] = "Kennwort zu kurz"; +App::$strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; +App::$strings["everybody"] = "alle"; +App::$strings["Secret Passphrase"] = "geheime Passphrase"; +App::$strings["Passphrase hint"] = "Hinweis zur Passphrase"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; +App::$strings["close all"] = "Alle schließen"; +App::$strings["Nothing new here"] = "Nichts Neues hier"; +App::$strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; +App::$strings["Describe (optional)"] = "Beschreibung (optional)"; +App::$strings["Please enter a link URL"] = "Gib eine URL ein:"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?"; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = " "; +App::$strings["ago"] = "her"; +App::$strings["from now"] = "von jetzt"; +App::$strings["less than a minute"] = "weniger als eine Minute"; +App::$strings["about a minute"] = "ungefähr eine Minute"; +App::$strings["%d minutes"] = "%d Minuten"; +App::$strings["about an hour"] = "ungefähr eine Stunde"; +App::$strings["about %d hours"] = "ungefähr %d Stunden"; +App::$strings["a day"] = "ein Tag"; +App::$strings["%d days"] = "%d Tage"; +App::$strings["about a month"] = "ungefähr ein Monat"; +App::$strings["%d months"] = "%d Monate"; +App::$strings["about a year"] = "ungefähr ein Jahr"; +App::$strings["%d years"] = "%d Jahre"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; App::$strings["January"] = "Januar"; App::$strings["February"] = "Februar"; App::$strings["March"] = "März"; App::$strings["April"] = "April"; -App::$strings["May"] = "Mai"; +App::$strings["__ctx:long__ May"] = "Mai"; App::$strings["June"] = "Juni"; App::$strings["July"] = "Juli"; App::$strings["August"] = "August"; @@ -1619,148 +1906,88 @@ App::$strings["September"] = "September"; App::$strings["October"] = "Oktober"; App::$strings["November"] = "November"; App::$strings["December"] = "Dezember"; -App::$strings["Unknown Attachment"] = "Unbekannter Anhang"; -App::$strings["unknown"] = "unbekannt"; -App::$strings["remove category"] = "Kategorie entfernen"; -App::$strings["remove from file"] = "aus der Datei entfernen"; -App::$strings["default"] = "Standard"; -App::$strings["Page layout"] = "Seiten-Layout"; -App::$strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen"; -App::$strings["Page content type"] = "Art des Seiteninhalts"; -App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache"; -App::$strings["activity"] = "Aktivität"; -App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; -App::$strings["Pages"] = "Seiten"; -App::$strings["System"] = "System"; -App::$strings["New App"] = "Neue App"; -App::$strings["Suggestions"] = "Vorschläge"; -App::$strings["See more..."] = "Mehr anzeigen …"; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; -App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; -App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; -App::$strings["Notes"] = "Notizen"; -App::$strings["Remove term"] = "Eintrag löschen"; -App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; -App::$strings["add"] = "hinzufügen"; -App::$strings["Saved Folders"] = "Gespeicherte Ordner"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archive"; -App::$strings["Refresh"] = "Aktualisieren"; -App::$strings["Account settings"] = "Konto-Einstellungen"; -App::$strings["Channel settings"] = "Kanal-Einstellungen"; -App::$strings["Additional features"] = "Zusätzliche Funktionen"; -App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; -App::$strings["Display settings"] = "Anzeige-Einstellungen"; -App::$strings["Manage locations"] = "Klon-Adressen verwalten"; -App::$strings["Export channel"] = "Kanal exportieren"; -App::$strings["Connected apps"] = "Verbundene Apps"; -App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -App::$strings["Private Mail Menu"] = "Private Nachrichten"; -App::$strings["Combined View"] = "Kombinierte Anzeige"; -App::$strings["Inbox"] = "Eingang"; -App::$strings["Outbox"] = "Ausgang"; -App::$strings["New Message"] = "Neue Nachricht"; -App::$strings["Conversations"] = "Konversationen"; -App::$strings["Received Messages"] = "Erhaltene Nachrichten"; -App::$strings["Sent Messages"] = "Gesendete Nachrichten"; -App::$strings["No messages."] = "Keine Nachrichten."; -App::$strings["Delete conversation"] = "Unterhaltung löschen"; -App::$strings["Events Menu"] = "Kalendermenü"; -App::$strings["Day View"] = "Tagesansicht"; -App::$strings["Week View"] = "Wochenansicht"; -App::$strings["Month View"] = "Monatsansicht"; -App::$strings["Events Tools"] = "Kalenderwerkzeuge"; -App::$strings["Export Calendar"] = "Kalender exportieren"; -App::$strings["Import Calendar"] = "Kalender importieren"; -App::$strings["Chatrooms"] = "Chaträume"; -App::$strings["Overview"] = "Übersicht"; -App::$strings["Chat Members"] = "Chatmitglieder"; -App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -App::$strings["photo/image"] = "Foto/Bild"; -App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; -App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; -App::$strings["Rate Me"] = "Bewerte mich"; -App::$strings["View Ratings"] = "Bewertungen ansehen"; -App::$strings["Forums"] = "Foren"; -App::$strings["Tasks"] = "Aufgaben"; -App::$strings["Documentation"] = "Dokumentation"; -App::$strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; -App::$strings["For Members"] = "Für Mitglieder"; -App::$strings["For Administrators"] = "Für Administratoren"; -App::$strings["For Developers"] = "Für Entwickler"; -App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; -App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; -App::$strings["DB updates"] = "DB-Aktualisierungen"; -App::$strings["Admin"] = "Administration"; -App::$strings["Plugin Features"] = "Plug-In Funktionen"; +App::$strings["Jan"] = "Jan"; +App::$strings["Feb"] = "Feb"; +App::$strings["Mar"] = "Mär"; +App::$strings["Apr"] = "Apr"; +App::$strings["__ctx:short__ May"] = "Mai"; +App::$strings["Jun"] = "Jun"; +App::$strings["Jul"] = "Jul"; +App::$strings["Aug"] = "Aug"; +App::$strings["Sep"] = "Sep"; +App::$strings["Oct"] = "Okt"; +App::$strings["Nov"] = "Nov"; +App::$strings["Dec"] = "Dez"; +App::$strings["Sunday"] = "Sonntag"; +App::$strings["Monday"] = "Montag"; +App::$strings["Tuesday"] = "Dienstag"; +App::$strings["Wednesday"] = "Mittwoch"; +App::$strings["Thursday"] = "Donnerstag"; +App::$strings["Friday"] = "Freitag"; +App::$strings["Saturday"] = "Samstag"; +App::$strings["Sun"] = "So"; +App::$strings["Mon"] = "Mo"; +App::$strings["Tue"] = "Di"; +App::$strings["Wed"] = "Mi"; +App::$strings["Thu"] = "Do"; +App::$strings["Fri"] = "Fr"; +App::$strings["Sat"] = "Sa"; +App::$strings["__ctx:calendar__ today"] = "heute"; +App::$strings["__ctx:calendar__ month"] = "Monat"; +App::$strings["__ctx:calendar__ week"] = "Woche"; +App::$strings["__ctx:calendar__ day"] = "Tag"; +App::$strings["__ctx:calendar__ All day"] = "Ganztägig"; App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; App::$strings["Channel location missing."] = "Adresse des Kanals fehlt."; App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; -App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; -App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; -App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; -App::$strings["Image/photo"] = "Bild/Foto"; -App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; -App::$strings["Install %s element: "] = "Element %s installieren: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; -App::$strings["spoiler"] = "Spoiler"; -App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; -App::$strings["$1 wrote:"] = "$1 schrieb:"; -App::$strings["Directory Options"] = "Verzeichnisoptionen"; -App::$strings["Safe Mode"] = "Sicherer Modus"; -App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; -App::$strings["This Website Only"] = "Nur dieser Hub"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; -App::$strings["Logout"] = "Abmelden"; -App::$strings["End this session"] = "Beende diese Sitzung"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -App::$strings["Your profile page"] = "Deine Profilseite"; -App::$strings["Manage/Edit profiles"] = "Profile verwalten"; -App::$strings["Edit Profile"] = "Profile bearbeiten"; -App::$strings["Edit your profile"] = "Profil bearbeiten"; -App::$strings["Your photos"] = "Deine Bilder"; -App::$strings["Your files"] = "Deine Dateien"; -App::$strings["Your chatrooms"] = "Deine Chaträume"; -App::$strings["Bookmarks"] = "Lesezeichen"; -App::$strings["Your bookmarks"] = "Deine Lesezeichen"; -App::$strings["Your webpages"] = "Deine Webseiten"; -App::$strings["Sign in"] = "Anmelden"; -App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; -App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; -App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Erzeuge ein Konto"; -App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; -App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; -App::$strings["Your grid"] = "Dein Grid"; -App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; -App::$strings["Channel home"] = "Mein Kanal"; -App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -App::$strings["Notices"] = "Benachrichtigungen"; -App::$strings["Notifications"] = "Benachrichtigungen"; -App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; -App::$strings["Private mail"] = "Persönliche Mail"; -App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; -App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; -App::$strings["Event Calendar"] = "Terminkalender"; -App::$strings["See all events"] = "Alle Termine ansehen"; -App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; -App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; -App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -App::$strings["Loading..."] = "Lädt ..."; -App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Please wait..."] = "Bitte warten..."; +App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; +App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; +App::$strings["Who can see this?"] = "Wer kann das sehen?"; +App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; +App::$strings["Show"] = "Anzeigen"; +App::$strings["Don't show"] = "Nicht anzeigen"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
    Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; +App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; +App::$strings["Empty name"] = "Namensfeld leer"; +App::$strings["Name too long"] = "Name ist zu lang"; +App::$strings["No account identifier"] = "Keine Account-Kennung"; +App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; +App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; +App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; +App::$strings["Default Profile"] = "Standard-Profil"; +App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +App::$strings["Create New Profile"] = "Neues Profil erstellen"; +App::$strings["Visible to everybody"] = "Für jeden sichtbar"; +App::$strings["Gender:"] = "Geschlecht:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Homepage:"; +App::$strings["Online Now"] = "gerade online"; +App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; +App::$strings["j F, Y"] = "j. F Y"; +App::$strings["j F"] = "j. F"; +App::$strings["Birthday:"] = "Geburtstag:"; +App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; +App::$strings["Tags:"] = "Schlagworte:"; +App::$strings["Political Views:"] = "Politische Ansichten:"; +App::$strings["Religion:"] = "Religion:"; +App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; +App::$strings["Likes:"] = "Gefällt:"; +App::$strings["Dislikes:"] = "Gefällt nicht:"; +App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; +App::$strings["My other channels:"] = "Meine anderen Kanäle:"; +App::$strings["Musical interests:"] = "Musikalische Interessen:"; +App::$strings["Books, literature:"] = "Bücher, Literatur:"; +App::$strings["Television:"] = "Fernsehen:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; +App::$strings["Love/Romance:"] = "Liebe/Romantik:"; +App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; +App::$strings["School/education:"] = "Schule/Ausbildung:"; +App::$strings["Like this thing"] = "Gefällt mir"; App::$strings["New window"] = "Neues Fenster"; App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab"; App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; @@ -1775,13 +2002,25 @@ App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morg App::$strings["Random Profile"] = "Zufallsprofil"; App::$strings["Invite Friends"] = "Lade Freunde ein"; App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; +App::$strings["Saved Folders"] = "Gespeicherte Ordner"; +App::$strings["Everything"] = "Alles"; +App::$strings["Categories"] = "Kategorien"; App::$strings["%d connection in common"] = array( 0 => "%d gemeinsame Verbindung", 1 => "%d gemeinsame Verbindungen", ); App::$strings["show more"] = "mehr zeigen"; +App::$strings["Logged out."] = "Ausgeloggt."; +App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +App::$strings["Login failed."] = "Login fehlgeschlagen."; +App::$strings[" and "] = "und"; +App::$strings["public profile"] = "öffentliches Profil"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; +App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; +App::$strings["poked"] = "stupste"; App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; App::$strings["Categories:"] = "Kategorien:"; App::$strings["Filed under:"] = "Gespeichert unter:"; @@ -1815,12 +2054,16 @@ App::$strings["Set your location"] = "Standort"; App::$strings["Clear browser location"] = "Browser-Standort löschen"; App::$strings["Tag term:"] = "Schlagwort:"; App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; +App::$strings["Comments enabled"] = "Kommentare aktiviert"; +App::$strings["Comments disabled"] = "Kommentare deaktiviert"; App::$strings["Page link name"] = "Link zur Seite"; App::$strings["Post as"] = "Veröffentlichen als"; App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; +App::$strings["Disable comments"] = "Kommentare deaktivieren"; +App::$strings["Toggle comments"] = "Kommentare umschalten"; App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; -App::$strings["OK"] = "Ok"; App::$strings["Discover"] = "Entdecken"; App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge"; App::$strings["Commented Order"] = "Neueste Kommentare"; @@ -1836,8 +2079,8 @@ App::$strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wur App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; App::$strings["About"] = "Über"; App::$strings["Profile Details"] = "Profil-Details"; -App::$strings["Photo Albums"] = "Fotoalben"; App::$strings["Files and Storage"] = "Dateien und Speicher"; +App::$strings["Chatrooms"] = "Chaträume"; App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; App::$strings["Manage Webpages"] = "Webseiten verwalten"; App::$strings["__ctx:noun__ Attending"] = array( @@ -1864,152 +2107,145 @@ App::$strings["__ctx:noun__ Abstain"] = array( 0 => "Enthaltung", 1 => "Enthaltungen", ); -App::$strings["Frequently"] = "Häufig"; -App::$strings["Hourly"] = "Stündlich"; -App::$strings["Twice daily"] = "Zwei Mal am Tag"; -App::$strings["Daily"] = "Täglich"; -App::$strings["Weekly"] = "Wöchentlich"; -App::$strings["Monthly"] = "Monatlich"; -App::$strings["Currently Male"] = "Momentan männlich"; -App::$strings["Currently Female"] = "Momentan weiblich"; -App::$strings["Mostly Male"] = "Größtenteils männlich"; -App::$strings["Mostly Female"] = "Größtenteils weiblich"; -App::$strings["Transgender"] = "Transsexuell"; -App::$strings["Intersex"] = "Zwischengeschlechtlich"; -App::$strings["Transsexual"] = "Transsexuell"; -App::$strings["Hermaphrodite"] = "Zwitter"; -App::$strings["Neuter"] = "Geschlechtslos"; -App::$strings["Non-specific"] = "unklar"; -App::$strings["Other"] = "Andere"; -App::$strings["Undecided"] = "Unentschieden"; -App::$strings["Males"] = "Männer"; -App::$strings["Females"] = "Frauen"; -App::$strings["Gay"] = "Schwul"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Keine Bevorzugung"; -App::$strings["Bisexual"] = "Bisexuell"; -App::$strings["Autosexual"] = "Autosexuell"; -App::$strings["Abstinent"] = "Enthaltsam"; -App::$strings["Virgin"] = "Jungfräulich"; -App::$strings["Deviant"] = "Abweichend"; -App::$strings["Fetish"] = "Fetisch"; -App::$strings["Oodles"] = "Unmengen"; -App::$strings["Nonsexual"] = "Sexlos"; -App::$strings["Single"] = "Single"; -App::$strings["Lonely"] = "Einsam"; -App::$strings["Available"] = "Verfügbar"; -App::$strings["Unavailable"] = "Nicht verfügbar"; -App::$strings["Has crush"] = "Verguckt"; -App::$strings["Infatuated"] = "Verknallt"; -App::$strings["Dating"] = "Lerne gerade jemanden kennen"; -App::$strings["Unfaithful"] = "Treulos"; -App::$strings["Sex Addict"] = "Sexabhängig"; -App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; -App::$strings["Casual"] = "Lose"; -App::$strings["Engaged"] = "Verlobt"; -App::$strings["Married"] = "Verheiratet"; -App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; -App::$strings["Partners"] = "Partner"; -App::$strings["Cohabiting"] = "Lebensgemeinschaft"; -App::$strings["Common law"] = "Informelle Ehe"; -App::$strings["Happy"] = "Glücklich"; -App::$strings["Not looking"] = "Nicht Ausschau haltend"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Betrogen"; -App::$strings["Separated"] = "Getrennt"; -App::$strings["Unstable"] = "Labil"; -App::$strings["Divorced"] = "Geschieden"; -App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; -App::$strings["Widowed"] = "Verwitwet"; -App::$strings["Uncertain"] = "Ungewiss"; -App::$strings["It's complicated"] = "Es ist kompliziert"; -App::$strings["Don't care"] = "Interessiert mich nicht"; -App::$strings["Ask me"] = "Frag mich mal"; -App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; -App::$strings["Only me"] = "Nur ich"; -App::$strings["Public"] = "Öffentlich"; -App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; -App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; -App::$strings["Any of my connections"] = "Alle meine Verbindungen"; -App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; -App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; -App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; -App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; -App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; -App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; -App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; -App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; -App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; -App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; -App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; -App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; -App::$strings["Administrator"] = "Administrator"; -App::$strings["your registration password"] = "Dein Registrierungspasswort"; -App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; -App::$strings["Account approved."] = "Nutzerkonto bestätigt."; -App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; -App::$strings["Account verified. Please login."] = "Nutzerkonto wurde bestätigt. Bitte melde Dich an!"; -App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; -App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; -App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; -App::$strings["No source file."] = "Keine Quelldatei."; -App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; -App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; -App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; -App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; -App::$strings["Path not available."] = "Pfad nicht verfügbar."; -App::$strings["Empty pathname"] = "Leere Pfadangabe"; -App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; -App::$strings["Path not found."] = "Pfad nicht gefunden."; -App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; -App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; -App::$strings["Empty path"] = "Leere Pfadangabe"; -App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; -App::$strings["Empty name"] = "Namensfeld leer"; -App::$strings["Name too long"] = "Name ist zu lang"; -App::$strings["No account identifier"] = "Keine Account-Kennung"; -App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; -App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; -App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; -App::$strings["Default Profile"] = "Standard-Profil"; -App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; -App::$strings["Create New Profile"] = "Neues Profil erstellen"; -App::$strings["Visible to everybody"] = "Für jeden sichtbar"; -App::$strings["Gender:"] = "Geschlecht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepage:"; -App::$strings["Online Now"] = "gerade online"; -App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; -App::$strings["j F, Y"] = "j. F Y"; -App::$strings["j F"] = "j. F"; -App::$strings["Birthday:"] = "Geburtstag:"; -App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -App::$strings["Tags:"] = "Schlagworte:"; -App::$strings["Political Views:"] = "Politische Ansichten:"; -App::$strings["Religion:"] = "Religion:"; -App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; -App::$strings["Likes:"] = "Gefällt:"; -App::$strings["Dislikes:"] = "Gefällt nicht:"; -App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; -App::$strings["My other channels:"] = "Meine anderen Kanäle:"; -App::$strings["Musical interests:"] = "Musikalische Interessen:"; -App::$strings["Books, literature:"] = "Bücher, Literatur:"; -App::$strings["Television:"] = "Fernsehen:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; -App::$strings["Love/Romance:"] = "Liebe/Romantik:"; -App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; -App::$strings["School/education:"] = "Schule/Ausbildung:"; -App::$strings["Like this thing"] = "Gefällt mir"; +App::$strings["Tags"] = "Schlagwörter"; +App::$strings["Keywords"] = "Schlüsselwörter"; +App::$strings["have"] = "habe"; +App::$strings["has"] = "hat"; +App::$strings["want"] = "will"; +App::$strings["wants"] = "will"; +App::$strings["likes"] = "gefällt"; +App::$strings["dislikes"] = "missfällt"; +App::$strings["prev"] = "vorherige"; +App::$strings["first"] = "erste"; +App::$strings["last"] = "letzte"; +App::$strings["next"] = "nächste"; +App::$strings["older"] = "älter"; +App::$strings["newer"] = "neuer"; +App::$strings["No connections"] = "Keine Verbindungen"; +App::$strings["View all %s connections"] = "Alle Verbindungen von %s anzeigen"; +App::$strings["poke"] = "anstupsen"; +App::$strings["ping"] = "anpingen"; +App::$strings["pinged"] = "pingte"; +App::$strings["prod"] = "knuffen"; +App::$strings["prodded"] = "knuffte"; +App::$strings["slap"] = "ohrfeigen"; +App::$strings["slapped"] = "ohrfeigte"; +App::$strings["finger"] = "befummeln"; +App::$strings["fingered"] = "befummelte"; +App::$strings["rebuff"] = "eine Abfuhr erteilen"; +App::$strings["rebuffed"] = "zurückgewiesen"; +App::$strings["happy"] = "glücklich"; +App::$strings["sad"] = "traurig"; +App::$strings["mellow"] = "sanft"; +App::$strings["tired"] = "müde"; +App::$strings["perky"] = "frech"; +App::$strings["angry"] = "sauer"; +App::$strings["stupefied"] = "verblüfft"; +App::$strings["puzzled"] = "verwirrt"; +App::$strings["interested"] = "interessiert"; +App::$strings["bitter"] = "verbittert"; +App::$strings["cheerful"] = "fröhlich"; +App::$strings["alive"] = "lebendig"; +App::$strings["annoyed"] = "verärgert"; +App::$strings["anxious"] = "unruhig"; +App::$strings["cranky"] = "schrullig"; +App::$strings["disturbed"] = "verstört"; +App::$strings["frustrated"] = "frustriert"; +App::$strings["depressed"] = "deprimiert"; +App::$strings["motivated"] = "motiviert"; +App::$strings["relaxed"] = "entspannt"; +App::$strings["surprised"] = "überrascht"; +App::$strings["May"] = "Mai"; +App::$strings["Unknown Attachment"] = "Unbekannter Anhang"; +App::$strings["unknown"] = "unbekannt"; +App::$strings["remove category"] = "Kategorie entfernen"; +App::$strings["remove from file"] = "aus der Datei entfernen"; +App::$strings["default"] = "Standard"; +App::$strings["Page layout"] = "Seiten-Layout"; +App::$strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen"; +App::$strings["Page content type"] = "Art des Seiteninhalts"; +App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache"; +App::$strings["activity"] = "Aktivität"; +App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; +App::$strings["Pages"] = "Seiten"; +App::$strings["Import website..."] = "Webseite importieren..."; +App::$strings["Select folder to import"] = "Ordner zum Importieren auswählen"; +App::$strings["Import from a zipped folder:"] = "Aus einem gezippten Ordner importieren:"; +App::$strings["Import from cloud files:"] = "Aus Cloud-Dateien importieren:"; +App::$strings["/cloud/channel/path/to/folder"] = "/Cloud/Kanal/Pfad/zum/Ordner"; +App::$strings["Enter path to website files"] = "Pfad zu Webseitendateien eingeben"; +App::$strings["Select folder"] = "Ordner auswählen"; +App::$strings["Export website..."] = "Webseite exportieren..."; +App::$strings["Export to a zip file"] = "In eine ZIP-Datei exportieren"; +App::$strings["website.zip"] = "website.zip"; +App::$strings["Enter a name for the zip file."] = "Geben Sie einen für die ZIP-Datei ein."; +App::$strings["Export to cloud files"] = "In Cloud-Dateien exportieren"; +App::$strings["/path/to/export/folder"] = "/Pfad/zum/exportierenden/Ordner"; +App::$strings["Enter a path to a cloud files destination."] = "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein."; +App::$strings["Specify folder"] = "Ordner angeben"; +App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; +App::$strings["Directory Options"] = "Verzeichnisoptionen"; +App::$strings["Safe Mode"] = "Sicherer Modus"; +App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; +App::$strings["This Website Only"] = "Nur dieser Hub"; +App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; +App::$strings["[no subject]"] = "[no subject]"; +App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; +App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +App::$strings["System"] = "System"; +App::$strings["New App"] = "Neue App"; +App::$strings["Suggestions"] = "Vorschläge"; +App::$strings["See more..."] = "Mehr anzeigen …"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; +App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; +App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; +App::$strings["Notes"] = "Notizen"; +App::$strings["Remove term"] = "Eintrag löschen"; +App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; +App::$strings["Archives"] = "Archive"; +App::$strings["Refresh"] = "Aktualisieren"; +App::$strings["Account settings"] = "Konto-Einstellungen"; +App::$strings["Channel settings"] = "Kanal-Einstellungen"; +App::$strings["Additional features"] = "Zusätzliche Funktionen"; +App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; +App::$strings["Display settings"] = "Anzeige-Einstellungen"; +App::$strings["Manage locations"] = "Klon-Adressen verwalten"; +App::$strings["Export channel"] = "Kanal exportieren"; +App::$strings["Connected apps"] = "Verbundene Apps"; +App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +App::$strings["Private Mail Menu"] = "Private Nachrichten"; +App::$strings["Combined View"] = "Kombinierte Anzeige"; +App::$strings["Conversations"] = "Konversationen"; +App::$strings["Received Messages"] = "Erhaltene Nachrichten"; +App::$strings["Sent Messages"] = "Gesendete Nachrichten"; +App::$strings["No messages."] = "Keine Nachrichten."; +App::$strings["Delete conversation"] = "Unterhaltung löschen"; +App::$strings["Events Tools"] = "Kalenderwerkzeuge"; +App::$strings["Export Calendar"] = "Kalender exportieren"; +App::$strings["Import Calendar"] = "Kalender importieren"; +App::$strings["Overview"] = "Übersicht"; +App::$strings["Chat Members"] = "Chatmitglieder"; +App::$strings["Wiki List"] = "Wikiliste"; +App::$strings["Wiki Pages"] = "Wikiseiten"; +App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +App::$strings["photo/image"] = "Foto/Bild"; +App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; +App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; +App::$strings["Rate Me"] = "Bewerte mich"; +App::$strings["View Ratings"] = "Bewertungen ansehen"; +App::$strings["Forums"] = "Foren"; +App::$strings["Tasks"] = "Aufgaben"; +App::$strings["Documentation"] = "Dokumentation"; +App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; +App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; +App::$strings["DB updates"] = "DB-Aktualisierungen"; +App::$strings["Plugin Features"] = "Plug-In Funktionen"; +App::$strings["Invalid data packet"] = "Ungültiges Datenpaket"; +App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; +App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; +App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; App::$strings["General Features"] = "Allgemeine Funktionen"; App::$strings["Content Expiration"] = "Verfall von Inhalten"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum."; @@ -2021,8 +2257,7 @@ App::$strings["Profile Import/Export"] = "Profil-Import/Export"; App::$strings["Save and load profile details across sites/channels"] = "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren"; App::$strings["Web Pages"] = "Webseiten"; App::$strings["Provide managed web pages on your channel"] = "Ermöglicht das Erstellen von Webseiten in Deinem Kanal"; -App::$strings["Hide Rating"] = "Bewertung verbergen"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten."; +App::$strings["Provide a wiki for your channel"] = "Stelle ein Wiki in Deinem Kanal zur Verfügung"; App::$strings["Private Notes"] = "Private Notizen"; App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)"; App::$strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; @@ -2033,10 +2268,6 @@ App::$strings["Access Controlled Chatrooms"] = "Zugriffskontrollierte Chaträume App::$strings["Provide chatrooms and chat services with access control."] = "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an."; App::$strings["Smart Birthdays"] = "Smarte Geburtstage"; App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind."; -App::$strings["Expert Mode"] = "Expertenmodus"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviert den Expertenmodus, der fortgeschrittene Konfigurationsoptionen zur Verfügung stellt"; -App::$strings["Premium Channel"] = "Premium-Kanal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; App::$strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; App::$strings["Large Photos"] = "Große Fotos"; App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet."; @@ -2045,6 +2276,8 @@ App::$strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)"; App::$strings["Enable Voting Tools"] = "Umfragewerkzeuge aktivieren"; App::$strings["Provide a class of post which others can vote on"] = "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)"; +App::$strings["Disable Comments"] = "Kommentare deaktivieren"; +App::$strings["Provide the option to disable comments for a post"] = "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten"; App::$strings["Delayed Posting"] = "Verzögertes Senden"; App::$strings["Allow posts to be published at a later date"] = "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen"; App::$strings["Suppress Duplicate Posts/Comments"] = "Doppelte Beiträge unterdrücken"; @@ -2052,7 +2285,6 @@ App::$strings["Prevent posts with identical content to be published with less th App::$strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; App::$strings["Search by Date"] = "Suche nach Datum"; App::$strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; -App::$strings["Privacy Groups"] = "Gruppen"; App::$strings["Enable management and selection of privacy groups"] = "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren"; App::$strings["Save search terms for re-use"] = "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung"; App::$strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; @@ -2061,9 +2293,7 @@ App::$strings["Network New Tab"] = "Netzwerkreiter Neu"; App::$strings["Enable tab to display all new Network activity"] = "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt"; App::$strings["Affinity Tool"] = "Beziehungs-Tool"; App::$strings["Filter stream activity by depth of relationships"] = "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann"; -App::$strings["Connection Filtering"] = "Filter für Verbindungen"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)"; -App::$strings["Show channel suggestions"] = "Kanalvorschläge anzeigen"; +App::$strings["Show friend and connection suggestions"] = "Freund- und Verbindungsvorschläge anzeigen"; App::$strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; App::$strings["Community Tagging"] = "Gemeinschaftliches Verschlagworten"; App::$strings["Ability to tag existing posts"] = "Ermöglicht das Verschlagworten existierender Beiträge"; @@ -2078,186 +2308,16 @@ App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen"; App::$strings["Ability to mark special posts with a star indicator"] = "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol"; App::$strings["Tag Cloud"] = "Schlagwort-Wolke"; App::$strings["Provide a personal tag cloud on your channel page"] = "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite"; -App::$strings["Embedded content"] = "Eingebetteter Inhalt"; -App::$strings["Embedding disabled"] = "Einbetten ausgeschaltet"; -App::$strings["Who can see this?"] = "Wer kann das sehen?"; -App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; -App::$strings["Show"] = "Anzeigen"; -App::$strings["Don't show"] = "Nicht anzeigen"; -App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
    Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; -App::$strings["Logged out."] = "Ausgeloggt."; -App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -App::$strings["Birthday"] = "Geburtstag"; -App::$strings["Age: "] = "Alter:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; -App::$strings["never"] = "Nie"; -App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "Jahr", - 1 => "Jahre", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "Monat", - 1 => "Monate", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "Woche", - 1 => "Wochen", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "Tag", - 1 => "Tage", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "Stunde", - 1 => "Stunden", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "Minute", - 1 => "Minuten", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "Sekunde", - 1 => "Sekunden", -); -App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; -App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; -App::$strings["edit"] = "Bearbeiten"; -App::$strings["Edit group"] = "Gruppe ändern"; -App::$strings["Add privacy group"] = "Gruppe hinzufügen"; -App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind"; -App::$strings["Delete this item?"] = "Dieses Element löschen?"; -App::$strings["[-] show less"] = "[-] Weniger anzeigen"; -App::$strings["[+] expand"] = "[+] aufklappen"; -App::$strings["[-] collapse"] = "[-] einklappen"; -App::$strings["Password too short"] = "Kennwort zu kurz"; -App::$strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; -App::$strings["everybody"] = "alle"; -App::$strings["Secret Passphrase"] = "geheime Passphrase"; -App::$strings["Passphrase hint"] = "Hinweis zur Passphrase"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; -App::$strings["close all"] = "Alle schließen"; -App::$strings["Nothing new here"] = "Nichts Neues hier"; -App::$strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; -App::$strings["Describe (optional)"] = "Beschreibung (optional)"; -App::$strings["Please enter a link URL"] = "Gib eine URL ein:"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = " "; -App::$strings["ago"] = "her"; -App::$strings["from now"] = "von jetzt"; -App::$strings["less than a minute"] = "weniger als eine Minute"; -App::$strings["about a minute"] = "ungefähr eine Minute"; -App::$strings["%d minutes"] = "%d Minuten"; -App::$strings["about an hour"] = "ungefähr eine Stunde"; -App::$strings["about %d hours"] = "ungefähr %d Stunden"; -App::$strings["a day"] = "ein Tag"; -App::$strings["%d days"] = "%d Tage"; -App::$strings["about a month"] = "ungefähr ein Monat"; -App::$strings["%d months"] = "%d Monate"; -App::$strings["about a year"] = "ungefähr ein Jahr"; -App::$strings["%d years"] = "%d Jahre"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "Mai"; -App::$strings["Jan"] = "Jan"; -App::$strings["Feb"] = "Feb"; -App::$strings["Mar"] = "Mär"; -App::$strings["Apr"] = "Apr"; -App::$strings["__ctx:short__ May"] = "Mai"; -App::$strings["Jun"] = "Jun"; -App::$strings["Jul"] = "Jul"; -App::$strings["Aug"] = "Aug"; -App::$strings["Sep"] = "Sep"; -App::$strings["Oct"] = "Okt"; -App::$strings["Nov"] = "Nov"; -App::$strings["Dec"] = "Dez"; -App::$strings["Sun"] = "So"; -App::$strings["Mon"] = "Mo"; -App::$strings["Tue"] = "Di"; -App::$strings["Wed"] = "Mi"; -App::$strings["Thu"] = "Do"; -App::$strings["Fri"] = "Fr"; -App::$strings["Sat"] = "Sa"; -App::$strings["__ctx:calendar__ today"] = "heute"; -App::$strings["__ctx:calendar__ month"] = "Monat"; -App::$strings["__ctx:calendar__ week"] = "Woche"; -App::$strings["__ctx:calendar__ day"] = "Tag"; -App::$strings["__ctx:calendar__ All day"] = "Ganztägig"; -App::$strings["view full size"] = "In Vollbildansicht anschauen"; -App::$strings["No Subject"] = "Kein Betreff"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot!"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; -App::$strings["Image file is empty."] = "Bilddatei ist leer."; -App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; -App::$strings["a new photo"] = "ein neues Foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; -App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; -App::$strings["Invalid data packet"] = "Ungültiges Datenpaket"; -App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; -App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; -App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; -App::$strings["New Page"] = "Neue Seite"; -App::$strings["Title"] = "Titel"; -App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; -App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; -App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; -App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; -App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; -App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; -App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; -App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; -App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; -App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; -App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; -App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; -App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; -App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; -App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; -App::$strings["Social Networking"] = "Soziales Netzwerk"; -App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; -App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; -App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; -App::$strings["Community Forum"] = "Forum"; -App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; -App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; -App::$strings["Forum - Private"] = "Forum - Privat"; -App::$strings["Feed Republish"] = "Teilen von Feeds"; -App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; -App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; -App::$strings["Special Purpose"] = "Für besondere Zwecke"; -App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; -App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; -App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; -App::$strings[" and "] = "und"; -App::$strings["public profile"] = "öffentliches Profil"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; -App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; -App::$strings["Attachments:"] = "Anhänge:"; -App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; +App::$strings["Connection Filtering"] = "Filter für Verbindungen"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)"; +App::$strings["Premium Channel"] = "Premium-Kanal"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; +App::$strings["Advanced Directory Search"] = "Erweiterte Verzeichnissuche"; +App::$strings["Allows creation of complex directory search queries"] = "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen"; +App::$strings["Advanced Theme and Layout Settings"] = "Erweiterte Design- und Layout-Einstellungen"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Erlaubt die Feineinstellung von Designs und Seitenlayouts"; App::$strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)"; App::$strings["Theme settings"] = "Theme-Einstellungen"; -App::$strings["Select scheme"] = "Schema wählen"; App::$strings["Narrow navbar"] = "Schmale Navigationsleiste"; App::$strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; App::$strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben"; @@ -2294,6 +2354,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können."; +App::$strings["Login/Email"] = "Anmelden/E-Mail"; App::$strings["Password"] = "Kennwort"; App::$strings["Remember me"] = "Angaben speichern"; App::$strings["Forgot your password?"] = "Passwort vergessen?"; -- cgit v1.2.3 From 26138ac46d5cb553dde3f37d00d502f26908bea5 Mon Sep 17 00:00:00 2001 From: Wave72 Date: Thu, 22 Sep 2016 17:22:03 +0200 Subject: Updated Italian strings --- view/it/hmessages.po | 12297 +++++++++++++++++++++++++------------------------ view/it/hstrings.php | 2006 ++++---- 2 files changed, 7174 insertions(+), 7129 deletions(-) diff --git a/view/it/hmessages.po b/view/it/hmessages.po index f1476e6c0..72da81a4a 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 00:02-0700\n" -"PO-Revision-Date: 2016-09-07 13:28+0000\n" +"POT-Creation-Date: 2016-09-17 14:51-0700\n" +"PO-Revision-Date: 2016-09-21 08:59+0000\n" "Last-Translator: Paolo Wave \n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -92,10 +92,11 @@ msgstr "Speciale - Repository di gruppo" #: ../../Zotlabs/Access/PermissionRoles.php:204 #: ../../Zotlabs/Module/Register.php:213 -#: ../../Zotlabs/Module/Settings.php:1245 -#: ../../Zotlabs/Module/New_channel.php:132 ../../include/permissions.php:949 -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Settings/Channel.php:442 +#: ../../include/permissions.php:949 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 msgid "Other" msgstr "Altro" @@ -172,7 +173,7 @@ msgstr "Può amministrare il mio canale" msgid "parent" msgstr "cartella superiore" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2665 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2711 msgid "Collection" msgstr "Cartella" @@ -196,17 +197,17 @@ msgstr "Appuntamenti ricevuti" msgid "Schedule Outbox" msgstr "Appuntamenti inviati" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:789 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 #: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1033 -#: ../../include/widgets.php:1646 +#: ../../include/widgets.php:1679 msgid "Unknown" msgstr "Sconosciuto" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1674 -#: ../../include/nav.php:96 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:96 +#: ../../include/conversation.php:1678 msgid "Files" msgstr "Archivio file" @@ -219,7 +220,7 @@ msgid "Shared" msgstr "Condiviso" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:237 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:239 #: ../../Zotlabs/Module/New_channel.php:147 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 msgid "Create" @@ -227,15 +228,17 @@ msgstr "Crea" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1659 +#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1692 msgid "Upload" msgstr "Carica" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:694 -#: ../../Zotlabs/Module/Settings.php:720 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Storage/Browser.php:235 +#: ../../Zotlabs/Module/Admin/Channels.php:163 #: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 msgid "Name" msgstr "Nome" @@ -244,7 +247,7 @@ msgid "Type" msgstr "Tipo" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1326 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1372 msgid "Size" msgstr "Dimensione" @@ -253,32 +256,35 @@ msgstr "Dimensione" msgid "Last Modified" msgstr "Ultima modifica" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Admin.php:2135 +#: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Webpages.php:238 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Blocks.php:160 #: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 -#: ../../include/channel.php:963 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/menu.php:113 +#: ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/menu.php:113 msgid "Edit" msgstr "Modifica" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Settings.php:755 -#: ../../Zotlabs/Module/Admin.php:1052 ../../Zotlabs/Module/Admin.php:1226 -#: ../../Zotlabs/Module/Admin.php:2136 +#: ../../Zotlabs/Storage/Browser.php:241 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Channels.php:153 +#: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 #: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Webpages.php:240 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Connedit.php:607 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Photos.php:1179 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 ../../Zotlabs/Lib/Apps.php:342 #: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Elimina" @@ -310,12 +316,10 @@ msgid "Drop files here to immediately upload" msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Setup.php:220 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Api.php:12 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Settings.php:674 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 #: ../../Zotlabs/Module/Cover_photo.php:290 #: ../../Zotlabs/Module/Editblock.php:67 @@ -325,43 +329,45 @@ msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 #: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:29 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Settings.php:59 #: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Block.php:26 #: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Item.php:214 ../../Zotlabs/Module/Item.php:222 -#: ../../Zotlabs/Module/Item.php:1073 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Events.php:264 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 #: ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Setup.php:220 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Pdledit.php:29 #: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 #: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 -#: ../../Zotlabs/Module/Channel.php:268 +#: ../../Zotlabs/Module/Photos.php:73 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 #: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/items.php:3496 ../../include/photos.php:27 +#: ../../include/photos.php:27 ../../include/items.php:3496 #: ../../include/attach.php:142 ../../include/attach.php:190 #: ../../include/attach.php:253 ../../include/attach.php:267 #: ../../include/attach.php:274 ../../include/attach.php:339 @@ -371,13 +377,13 @@ msgstr "Trascina i file qui per caricarli al volo" msgid "Permission denied." msgstr "Permesso negato." -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:95 +#: ../../Zotlabs/Web/Router.php:146 ../../include/help.php:53 msgid "Not Found" msgstr "Non disponibile" #: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 #: ../../Zotlabs/Module/Display.php:120 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Help.php:98 +#: ../../include/help.php:56 msgid "Page not found." msgstr "Pagina non trovata." @@ -404,11 +410,10 @@ msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." #: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 #: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../include/channel.php:859 +#: ../../Zotlabs/Module/Layouts.php:31 ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "Il profilo richiesto non è disponibile." @@ -424,6128 +429,6184 @@ msgstr "Assente" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Setup.php:184 -msgid "$Projectname Server - Setup" -msgstr "Server $Projectname - Installazione" - -#: ../../Zotlabs/Module/Setup.php:188 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Messaggio non valido" -#: ../../Zotlabs/Module/Setup.php:192 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "nessun risultato" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "sincronizzazione del canale effettuata" -#: ../../Zotlabs/Module/Setup.php:204 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "in coda" -#: ../../Zotlabs/Module/Setup.php:208 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "inviato" -#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 -#: ../../Zotlabs/Module/Setup.php:734 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "accettato per la spedizione" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "System check" -msgstr "Verifica del sistema" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "aggiornato" -#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:960 -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" -msgstr "Successivo" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "aggiornamento ignorato" -#: ../../Zotlabs/Module/Setup.php:273 -msgid "Check again" -msgstr "Verifica di nuovo" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permessi non sufficienti" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database connection" -msgstr "Connessione al database" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "Destinatario non trovato" -#: ../../Zotlabs/Module/Setup.php:296 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "messaggio richiamato dal mittente" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "ricevuto messaggio duplicato" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "messaggio recapitato" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Server Name" -msgstr "Server del database" +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Rapporto di consegna - %1$s" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Default is 127.0.0.1" -msgstr "Il valore predefinito è 127.0.0.1" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opzioni" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Port" -msgstr "Port del database" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Reinvia" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Name" -msgstr "Utente database" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Login Password" -msgstr "Password database" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Name" -msgstr "Nome database" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." -#: ../../Zotlabs/Module/Setup.php:307 -msgid "Database Type" -msgstr "Tipo database" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del hub" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere processata." -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Website URL" -msgstr "URL completo del sito" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Su questo hub la registrazione non è permessa." -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Please use SSL (https) URL if available." -msgstr "Se disponibile, usa l'indirizzo SSL (https)." +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "La registrazione su questo hub è soggetta ad approvazione." -#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo hub" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrati su un altro server hubzilla." -#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 -#: ../../Zotlabs/Module/Settings.php:692 ../../Zotlabs/Module/Settings.php:815 -#: ../../Zotlabs/Module/Settings.php:906 ../../Zotlabs/Module/Settings.php:932 -#: ../../Zotlabs/Module/Settings.php:955 -#: ../../Zotlabs/Module/Settings.php:1060 -#: ../../Zotlabs/Module/Settings.php:1255 ../../Zotlabs/Module/Admin.php:498 -#: ../../Zotlabs/Module/Admin.php:699 ../../Zotlabs/Module/Admin.php:784 -#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 -#: ../../Zotlabs/Module/Admin.php:1443 ../../Zotlabs/Module/Admin.php:1670 -#: ../../Zotlabs/Module/Admin.php:1755 ../../Zotlabs/Module/Admin.php:2138 -#: ../../Zotlabs/Module/Appman.php:126 ../../Zotlabs/Module/Pdledit.php:74 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 -#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Events.php:484 -#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 -#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:712 -#: ../../include/js_strings.php:22 ../../include/widgets.php:796 -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Submit" -msgstr "Salva" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." -#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:485 -msgid "Basic/Minimal Social Networking" -msgstr "Social network basilare" +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" -#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:486 -msgid "Standard Configuration (default)" -msgstr "Configurazione standard (predefinita)" +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" -#: ../../Zotlabs/Module/Setup.php:338 ../../Zotlabs/Module/Admin.php:487 -msgid "Professional" -msgstr "Professionale" +#: ../../Zotlabs/Module/Register.php:229 +#, 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" -#: ../../Zotlabs/Module/Setup.php:344 -msgid "Site settings" -msgstr "Impostazioni del hub" +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" +msgstr "Il tuo indirizzo email" -#: ../../Zotlabs/Module/Setup.php:359 ../../Zotlabs/Module/Admin.php:508 -msgid "Server Configuration/Role" -msgstr "Configurazione del server" +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" +msgstr "Scegli una password" -#: ../../Zotlabs/Module/Setup.php:400 -msgid "PHP version 5.5 or greater is required." -msgstr "E' necessario PHP versione 5.5 o superiore." +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" -#: ../../Zotlabs/Module/Setup.php:401 -msgid "PHP version" -msgstr "Versione PHP" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" -#: ../../Zotlabs/Module/Setup.php:416 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Name or caption" +msgstr "Nome o titolo" -#: ../../Zotlabs/Module/Setup.php:417 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" -#: ../../Zotlabs/Module/Setup.php:421 -msgid "PHP executable path" -msgstr "Path del comando PHP" +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" -#: ../../Zotlabs/Module/Setup.php:421 +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +#, php-format msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" -#: ../../Zotlabs/Module/Setup.php:426 -msgid "Command line PHP" -msgstr "PHP da riga di comando" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" -#: ../../Zotlabs/Module/Setup.php:435 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Select a channel role with your privacy requirements." +msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." -#: ../../Zotlabs/Module/Setup.php:436 -msgid "This is required for message delivery to work." -msgstr "E' necessario perché funzioni la consegna dei messaggi." +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" -#: ../../Zotlabs/Module/Setup.php:439 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Setup.php:457 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" +msgstr "sì" -#: ../../Zotlabs/Module/Setup.php:462 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puoi regolare queste impostazioni sul server in php.ini" +#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Admin/Site.php:268 +msgid "Registration" +msgstr "Registrazione" -#: ../../Zotlabs/Module/Setup.php:464 -msgid "PHP upload limits" -msgstr "Limiti PHP in upload" +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo hub è necessario un invito." -#: ../../Zotlabs/Module/Setup.php:487 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1721 +msgid "Register" +msgstr "Registrati" -#: ../../Zotlabs/Module/Setup.php:488 +#: ../../Zotlabs/Module/Register.php:271 msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." -#: ../../Zotlabs/Module/Setup.php:491 -msgid "Generate encryption keys" -msgstr "Genera chiavi di cifratura" +#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "Modificato il blocco su %s account" +msgstr[1] "Modificato il blocco verso %s" -#: ../../Zotlabs/Module/Setup.php:503 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" +#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account eliminato" +msgstr[1] "%s account eliminati" -#: ../../Zotlabs/Module/Setup.php:504 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" +#: ../../Zotlabs/Module/Admin/Accounts.php:79 +msgid "Account not found" +msgstr "Account non trovato" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" +#: ../../Zotlabs/Module/Admin/Accounts.php:90 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' eliminato" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mysqli or postgres PHP module" -msgstr "modulo PHP per mysqli oppure prostgres" +#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#, php-format +msgid "Account '%s' blocked" +msgstr "Aggiunto un blocco verso '%s'" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" +#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Rimosso il blocco verso '%s'" -#: ../../Zotlabs/Module/Setup.php:508 -msgid "xml PHP module" -msgstr "modulo xml PHP" +#: ../../Zotlabs/Module/Admin/Accounts.php:165 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Plugins.php:336 +#: ../../Zotlabs/Module/Admin/Plugins.php:427 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Themes.php:120 +#: ../../Zotlabs/Module/Admin/Themes.php:154 +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Administration" +msgstr "Amministrazione" -#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557 +msgid "Accounts" +msgstr "Account" -#: ../../Zotlabs/Module/Setup.php:512 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Plugins.php:429 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Settings/Account.php:126 +#: ../../Zotlabs/Module/Settings/Channel.php:452 +#: ../../Zotlabs/Module/Settings/Display.php:194 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/js_strings.php:22 +#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" +msgstr "Salva" -#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "select all" +msgstr "seleziona tutti" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +msgid "Registrations waiting for confirm" +msgstr "Registrazioni in attesa di conferma" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Request date" +msgstr "Data richiesta" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2208 +msgid "Email" +msgstr "Email" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../Zotlabs/Module/Setup.php:538 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Approve" +msgstr "Approva" -#: ../../Zotlabs/Module/Setup.php:542 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +msgid "Deny" +msgstr "Nega" -#: ../../Zotlabs/Module/Setup.php:546 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Blocca" -#: ../../Zotlabs/Module/Setup.php:564 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Sblocca" -#: ../../Zotlabs/Module/Setup.php:565 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." +#: ../../Zotlabs/Module/Admin/Accounts.php:181 +msgid "ID" +msgstr "ID" -#: ../../Zotlabs/Module/Setup.php:566 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 +msgid "All Channels" +msgstr "Tutti i canali" -#: ../../Zotlabs/Module/Setup.php:567 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "Register date" +msgstr "Data registrazione" -#: ../../Zotlabs/Module/Setup.php:570 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Last login" +msgstr "Ultimo accesso" -#: ../../Zotlabs/Module/Setup.php:584 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Expires" +msgstr "Con scadenza" -#: ../../Zotlabs/Module/Setup.php:585 -#, php-format +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Service Class" +msgstr "Classe dell'account" + +#: ../../Zotlabs/Module/Admin/Accounts.php:189 msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." -msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +#: ../../Zotlabs/Module/Admin/Accounts.php:190 msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Setup.php:587 +#: ../../Zotlabs/Module/Admin/Channels.php:30 #, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" -#: ../../Zotlabs/Module/Setup.php:590 +#: ../../Zotlabs/Module/Admin/Channels.php:39 #, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s canale permette/non permette codice nei contenuti" +msgstr[1] "%s canali permettono/non permettono codice nei contenuti" -#: ../../Zotlabs/Module/Setup.php:606 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" -msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" +#: ../../Zotlabs/Module/Admin/Channels.php:45 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" -#: ../../Zotlabs/Module/Setup.php:610 -msgid "store is writable" -msgstr "l'archivio è scrivibile" +#: ../../Zotlabs/Module/Admin/Channels.php:66 +msgid "Channel not found" +msgstr "Canale non trovato" -#: ../../Zotlabs/Module/Setup.php:643 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." +#: ../../Zotlabs/Module/Admin/Channels.php:76 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" -#: ../../Zotlabs/Module/Setup.php:644 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" -#: ../../Zotlabs/Module/Setup.php:645 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" -#: ../../Zotlabs/Module/Setup.php:646 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Il canale '%s' permette codice nei contenuti" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../Zotlabs/Module/Setup.php:648 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558 +msgid "Channels" +msgstr "Canali" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." +#: ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Censor" +msgstr "Applica censura" -#: ../../Zotlabs/Module/Setup.php:653 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" +#: ../../Zotlabs/Module/Admin/Channels.php:155 +msgid "Uncensor" +msgstr "Rimuovi censura" -#: ../../Zotlabs/Module/Setup.php:659 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" +#: ../../Zotlabs/Module/Admin/Channels.php:156 +msgid "Allow Code" +msgstr "Permetti codice" -#: ../../Zotlabs/Module/Setup.php:662 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" +#: ../../Zotlabs/Module/Admin/Channels.php:157 +msgid "Disallow Code" +msgstr "Non permettere codice" -#: ../../Zotlabs/Module/Setup.php:671 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." +#: ../../Zotlabs/Module/Admin/Channels.php:158 +#: ../../include/conversation.php:1650 +msgid "Channel" +msgstr "Canale" -#: ../../Zotlabs/Module/Setup.php:695 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Setup.php:732 -msgid "

    What next

    " -msgstr "

    I prossimi passi

    " +#: ../../Zotlabs/Module/Admin/Channels.php:164 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Indirizzo" -#: ../../Zotlabs/Module/Setup.php:733 +#: ../../Zotlabs/Module/Admin/Channels.php:166 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#: ../../Zotlabs/Module/Admin/Channels.php:167 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:29 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." -#: ../../Zotlabs/Module/Network.php:95 -msgid "No such group" -msgstr "Impossibile trovare il gruppo di canali" +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." -#: ../../Zotlabs/Module/Network.php:135 -msgid "No such channel" -msgstr "Canale sconosciuto" +#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." -#: ../../Zotlabs/Module/Network.php:140 -msgid "forum" -msgstr "forum" +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" -#: ../../Zotlabs/Module/Network.php:152 -msgid "Search Results For:" -msgstr "Cerca risultati con:" +#: ../../Zotlabs/Module/Admin/Dbsync.php:55 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." -#: ../../Zotlabs/Module/Network.php:218 -msgid "Privacy group is empty" -msgstr "Il gruppo di canali è vuoto" +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." -#: ../../Zotlabs/Module/Network.php:227 -msgid "Privacy group: " -msgstr "Gruppo di canali:" +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." -#: ../../Zotlabs/Module/Network.php:253 -msgid "Invalid connection." -msgstr "Contatto non valido." +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" +msgstr "Off" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" +msgstr "On" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Rendi non modificabile %s" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583 +#: ../../include/widgets.php:1593 +msgid "Logs" +msgstr "Log" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Su questo hub la registrazione non è permessa." +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Pulisci" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "La registrazione su questo hub è soggetta ad approvazione." +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Debugging" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrati su un altro server hubzilla." +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "File di log" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Admin/Logs.php:92 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Relativo alla directory base del server web. Deve essere scrivibile." -#: ../../Zotlabs/Module/Register.php:221 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "Livello di log" -#: ../../Zotlabs/Module/Register.php:227 +#: ../../Zotlabs/Module/Admin/Plugins.php:254 +#: ../../Zotlabs/Module/Admin/Themes.php:69 +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Thing.php:89 ../../Zotlabs/Module/Viewsrc.php:24 +#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3417 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../Zotlabs/Module/Admin/Plugins.php:284 #, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." -#: ../../Zotlabs/Module/Register.php:229 +#: ../../Zotlabs/Module/Admin/Plugins.php:289 #, 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" +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." -#: ../../Zotlabs/Module/Register.php:233 -msgid "Your email address" -msgstr "Il tuo indirizzo email" +#: ../../Zotlabs/Module/Admin/Plugins.php:305 +#: ../../Zotlabs/Module/Admin/Themes.php:93 +msgid "Disable" +msgstr "Disattiva" -#: ../../Zotlabs/Module/Register.php:234 -msgid "Choose a password" -msgstr "Scegli una password" +#: ../../Zotlabs/Module/Admin/Plugins.php:308 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Enable" +msgstr "Attiva" -#: ../../Zotlabs/Module/Register.php:235 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" +#: ../../Zotlabs/Module/Admin/Plugins.php:337 +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561 +msgid "Plugins" +msgstr "Plugin" -#: ../../Zotlabs/Module/Register.php:236 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" - -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 -msgid "Name or caption" -msgstr "Nome o titolo" - -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" - -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" - -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" +#: ../../Zotlabs/Module/Admin/Plugins.php:338 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +msgid "Toggle" +msgstr "Attiva/disattiva" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Channel role and privacy" -msgstr "Tipo di canale e privacy" +#: ../../Zotlabs/Module/Admin/Plugins.php:339 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 +#: ../../include/nav.php:213 ../../include/widgets.php:680 +msgid "Settings" +msgstr "Impostazioni" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Select a channel role with your privacy requirements." -msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." +#: ../../Zotlabs/Module/Admin/Plugins.php:346 +#: ../../Zotlabs/Module/Admin/Themes.php:132 +msgid "Author: " +msgstr "Autore:" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" +#: ../../Zotlabs/Module/Admin/Plugins.php:347 +#: ../../Zotlabs/Module/Admin/Themes.php:133 +msgid "Maintainer: " +msgstr "Gestore:" -#: ../../Zotlabs/Module/Register.php:241 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Module/Admin/Plugins.php:348 +msgid "Minimum project version: " +msgstr "Minima versione hubzilla" -#: ../../Zotlabs/Module/Register.php:241 -msgid "yes" -msgstr "sì" +#: ../../Zotlabs/Module/Admin/Plugins.php:349 +msgid "Maximum project version: " +msgstr "Massima versione hubzilla" -#: ../../Zotlabs/Module/Register.php:253 ../../Zotlabs/Module/Admin.php:499 -msgid "Registration" -msgstr "Registrazione" +#: ../../Zotlabs/Module/Admin/Plugins.php:350 +msgid "Minimum PHP version: " +msgstr "Minima versione PHP:" -#: ../../Zotlabs/Module/Register.php:258 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo hub è necessario un invito." +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +msgid "Compatible Server Roles: " +msgstr "Ruoli compatibili per questo server" -#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 -#: ../../boot.php:1720 -msgid "Register" -msgstr "Registrati" +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +msgid "Requires: " +msgstr "Necessita di:" -#: ../../Zotlabs/Module/Register.php:271 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +#: ../../Zotlabs/Module/Admin/Plugins.php:433 +msgid "Disabled - version incompatibility" +msgstr "Disabilitato - incompatibilità di versione" -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../Zotlabs/Module/Admin/Plugins.php:402 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Inserisci lo URL del repository git dei plugin." -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" -msgstr "Ritorna alla tua app e inserisci questo Security Code:" +#: ../../Zotlabs/Module/Admin/Plugins.php:403 +msgid "Plugin repo git URL" +msgstr "URL git del repository del plugin" -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "Custom repo name" +msgstr "Nome repository personalizzato" -#: ../../Zotlabs/Module/Api.php:83 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "(optional)" +msgstr "(facoltativo)" -#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Settings.php:683 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "Yes" -msgstr "Sì" +#: ../../Zotlabs/Module/Admin/Plugins.php:405 +msgid "Download Plugin Repo" +msgstr "Scarica il repository del plugin" -#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Settings.php:683 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "No" -msgstr "No" +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Install new repo" +msgstr "Installa un nuovo repository" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" +#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" +msgstr "Installa" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "I miei segnalibri" +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../include/conversation.php:1247 ../../include/conversation.php:1296 +msgid "Cancel" +msgstr "Annulla" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" +#: ../../Zotlabs/Module/Admin/Plugins.php:435 +msgid "Manage Repos" +msgstr "Gestisci i repository" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "Il nome è obbligatorio" +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +msgid "Installed Plugin Repositories" +msgstr "Repository per i plugin installati" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "Key e Secret sono richiesti" +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +msgid "Install a New Plugin Repository" +msgstr "Installa un nuovo repository per i plugin" -#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:718 -#: ../../Zotlabs/Module/Admin.php:1457 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin/Plugins.php:443 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "Aggiorna" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Questo canale è limitato a %d token" +#: ../../Zotlabs/Module/Admin/Plugins.php:444 +msgid "Switch branch" +msgstr "Cambia branch" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Nome e password sono obbligatori." +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Photos.php:989 +msgid "Remove" +msgstr "Rimuovi" -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." -msgstr "Token salvato." +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" +msgstr "Nuovo campo del profilo" -#: ../../Zotlabs/Module/Settings.php:316 -msgid "Not valid email." -msgstr "Email non valida." +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" +msgstr "Nome breve del campo" -#: ../../Zotlabs/Module/Settings.php:319 -msgid "Protected email address. Cannot change to that email." -msgstr "È un indirizzo email riservato. Non puoi sceglierlo." +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "System name of field" +msgstr "Nome di sistema del campo" -#: ../../Zotlabs/Module/Settings.php:328 -msgid "System failure storing new email. Please try again." -msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." +#: ../../Zotlabs/Module/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" +msgstr "Tipo di dati" -#: ../../Zotlabs/Module/Settings.php:336 -msgid "Technical skill level updated" -msgstr "Livello tecnico aggiornato" +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" +msgstr "Nome del campo" -#: ../../Zotlabs/Module/Settings.php:352 -msgid "Password verification failed." -msgstr "Verifica della password fallita." +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Label on profile pages" +msgstr "Etichetta da mostrare sulla pagina del profilo" -#: ../../Zotlabs/Module/Settings.php:359 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" +msgstr "Testo di aiuto" -#: ../../Zotlabs/Module/Settings.php:363 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" +msgstr "Informazioni aggiuntive (facoltative)" -#: ../../Zotlabs/Module/Settings.php:377 -msgid "Password changed." -msgstr "Password cambiata." +#: ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 +#: ../../include/text.php:972 ../../include/text.php:984 +#: ../../include/widgets.php:201 +msgid "Save" +msgstr "Salva" -#: ../../Zotlabs/Module/Settings.php:379 -msgid "Password update failed. Please try again." -msgstr "Modifica password fallita. Prova ancora." +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" +msgstr "Impossibile trovare la definizione del campo" -#: ../../Zotlabs/Module/Settings.php:440 ../../Zotlabs/Module/Settings.php:444 -#: ../../Zotlabs/Module/Settings.php:445 ../../Zotlabs/Module/Settings.php:448 -#: ../../Zotlabs/Module/Settings.php:459 ../../Zotlabs/Module/Connedit.php:627 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:531 -msgid "Friends" -msgstr "Amici" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" +msgstr "Modifica campo del profilo" -#: ../../Zotlabs/Module/Settings.php:628 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564 +msgid "Profile Fields" +msgstr "Campi del profilo" -#: ../../Zotlabs/Module/Settings.php:691 ../../Zotlabs/Module/Settings.php:717 -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Add application" -msgstr "Aggiungi una app" +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" +msgstr "Campi base del profilo" -#: ../../Zotlabs/Module/Settings.php:693 ../../Zotlabs/Module/Settings.php:719 -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1428 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 -#: ../../include/conversation.php:1292 -msgid "Cancel" -msgstr "Annulla" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" +msgstr "Campi avanzati del profilo" -#: ../../Zotlabs/Module/Settings.php:694 -msgid "Name of application" -msgstr "Nome dell'applicazione" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" +msgstr "(In aggiunta ai campi di base)" -#: ../../Zotlabs/Module/Settings.php:695 ../../Zotlabs/Module/Settings.php:721 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" +msgstr "Tutti i campi disponibili" -#: ../../Zotlabs/Module/Settings.php:695 ../../Zotlabs/Module/Settings.php:696 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" +msgstr "Campi personalizzati" -#: ../../Zotlabs/Module/Settings.php:696 ../../Zotlabs/Module/Settings.php:722 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" +msgstr "Aggiungi campo personalizzato" -#: ../../Zotlabs/Module/Settings.php:697 ../../Zotlabs/Module/Settings.php:723 -msgid "Redirect" -msgstr "Redirect" +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Queue Statistics" +msgstr "Statistiche della coda" -#: ../../Zotlabs/Module/Settings.php:697 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Total Entries" +msgstr "Totale" -#: ../../Zotlabs/Module/Settings.php:698 ../../Zotlabs/Module/Settings.php:724 -msgid "Icon url" -msgstr "Url icona" +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Priority" +msgstr "Priorità" -#: ../../Zotlabs/Module/Settings.php:698 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Facoltativo" +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Destination URL" +msgstr "URL di destinazione" -#: ../../Zotlabs/Module/Settings.php:709 -msgid "Application not found." -msgstr "Applicazione non trovata." +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Mark hub permanently offline" +msgstr "Questo hub è definitivamente offline" -#: ../../Zotlabs/Module/Settings.php:752 -msgid "Connected Apps" -msgstr "App connesse" +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Empty queue for this hub" +msgstr "Svuota la coda per questo hub" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Client key starts with" -msgstr "La client key inizia con" +#: ../../Zotlabs/Module/Admin/Queue.php:42 +msgid "Last known contact" +msgstr "Ultimo scambio dati" -#: ../../Zotlabs/Module/Settings.php:757 -msgid "No name" -msgstr "Nessun nome" +#: ../../Zotlabs/Module/Admin/Security.php:77 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." -#: ../../Zotlabs/Module/Settings.php:758 -msgid "Remove authorization" -msgstr "Revoca l'autorizzazione" +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" -#: ../../Zotlabs/Module/Settings.php:771 -msgid "No feature settings configured" -msgstr "Non hai componenti aggiuntivi da personalizzare" +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/https://vimeo.com/
    https://soundcloud.com/
    " +msgstr "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    " -#: ../../Zotlabs/Module/Settings.php:778 -msgid "Feature/Addon Settings" -msgstr "Impostazioni dei componenti aggiuntivi" +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." -#: ../../Zotlabs/Module/Settings.php:798 -msgid "Beginner/Basic" -msgstr "Principiante" +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 +msgid "Security" +msgstr "Sicurezza" -#: ../../Zotlabs/Module/Settings.php:799 -msgid "Novice - not skilled but willing to learn" -msgstr "Novizio - disposto a imparare" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "Blocca pagine pubbliche" -#: ../../Zotlabs/Module/Settings.php:800 -msgid "Intermediate - somewhat comfortable" -msgstr "Intermedio - con alcune conoscenze tecniche" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." -#: ../../Zotlabs/Module/Settings.php:801 -msgid "Advanced - very comfortable" -msgstr "Avanzato - a mio agio con gli aspetti tecnici" +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Imposta il \"Transport Security\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:802 -msgid "Expert - I can write computer code" -msgstr "Esperto - posso scrivere codice" +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Imposta il \"Content Security Policy\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Wizard - I probably know more than you do" -msgstr "Genio - probabilmente ne so più di te" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "Domini email consentiti" -#: ../../Zotlabs/Module/Settings.php:810 -msgid "Account Settings" -msgstr "Il tuo account" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" -#: ../../Zotlabs/Module/Settings.php:811 -msgid "Current Password" -msgstr "Password attuale" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "Domini email non consentiti" -#: ../../Zotlabs/Module/Settings.php:812 -msgid "Enter New Password" -msgstr "Nuova password" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: ../../Zotlabs/Module/Settings.php:813 -msgid "Confirm New Password" -msgstr "Conferma la nuova password" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "Permetti la comunicazione solo da questi siti" -#: ../../Zotlabs/Module/Settings.php:813 -msgid "Leave password fields blank unless changing" -msgstr "Lascia vuoti questi campi per non cambiare la password" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" -#: ../../Zotlabs/Module/Settings.php:814 -msgid "Your technical skill level" -msgstr "Il tuo livello tecnico" +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "Blocca la comunicazione da questi siti" -#: ../../Zotlabs/Module/Settings.php:814 -msgid "Used to provide a member experience matched to your comfort level" -msgstr "Serve a vedere solo gli aspetti tecnici che possano metterti a tuo agio" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "Permetti la comunicazione solo da questi canali" -#: ../../Zotlabs/Module/Settings.php:816 -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "Email Address:" -msgstr "Indirizzo email:" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" -#: ../../Zotlabs/Module/Settings.php:817 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Elimina l'account" +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "Blocca la comunicazione da questi canali" -#: ../../Zotlabs/Module/Settings.php:818 -msgid "Remove this account including all its channels" -msgstr "Elimina questo account e tutti i suoi canali" +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." -#: ../../Zotlabs/Module/Settings.php:852 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." -msgstr "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." -#: ../../Zotlabs/Module/Settings.php:889 ../../include/widgets.php:647 -msgid "Guest Access Tokens" -msgstr "Token di accesso ospite" +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "Blocca i contenuti incorporati HTML da questi domini" -#: ../../Zotlabs/Module/Settings.php:896 -msgid "Login Name" -msgstr "Nome utente" +#: ../../Zotlabs/Module/Admin/Site.php:135 +msgid "Site settings updated." +msgstr "Impostazioni del sito salvate correttamente." -#: ../../Zotlabs/Module/Settings.php:897 -msgid "Login Password" -msgstr "Password" +#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2942 +msgid "Default" +msgstr "Predefinito" -#: ../../Zotlabs/Module/Settings.php:898 -msgid "Expires (yyyy-mm-dd)" -msgstr "Con scadenza (aaaa-mm-gg)" +#: ../../Zotlabs/Module/Admin/Site.php:172 +#: ../../Zotlabs/Module/Settings/Display.php:141 +msgid "mobile" +msgstr "mobile" -#: ../../Zotlabs/Module/Settings.php:899 ../../Zotlabs/Module/Connedit.php:782 -msgid "Their Settings" -msgstr "Permessi concessi a te" +#: ../../Zotlabs/Module/Admin/Site.php:174 +msgid "experimental" +msgstr "sperimentale" -#: ../../Zotlabs/Module/Settings.php:900 ../../Zotlabs/Module/Connedit.php:783 -msgid "My Settings" -msgstr "Permessi che concedo" +#: ../../Zotlabs/Module/Admin/Site.php:176 +msgid "unsupported" +msgstr "non supportato" -#: ../../Zotlabs/Module/Settings.php:902 ../../Zotlabs/Module/Connedit.php:778 -msgid "inherited" -msgstr "derivato" +#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "No" +msgstr "No" -#: ../../Zotlabs/Module/Settings.php:904 ../../Zotlabs/Module/Connedit.php:785 -msgid "Individual Permissions" -msgstr "Permessi individuali" +#: ../../Zotlabs/Module/Admin/Site.php:222 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" -#: ../../Zotlabs/Module/Settings.php:905 ../../Zotlabs/Module/Connedit.php:786 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." +#: ../../Zotlabs/Module/Admin/Site.php:223 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "Yes" +msgstr "Sì" -#: ../../Zotlabs/Module/Settings.php:923 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:689 -msgid "Off" -msgstr "Off" +#: ../../Zotlabs/Module/Admin/Site.php:228 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" -#: ../../Zotlabs/Module/Settings.php:923 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:689 -msgid "On" -msgstr "On" +#: ../../Zotlabs/Module/Admin/Site.php:229 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" -#: ../../Zotlabs/Module/Settings.php:930 -msgid "Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Admin/Site.php:230 +msgid "My site has free access only" +msgstr "È un servizio gratuito" -#: ../../Zotlabs/Module/Settings.php:954 -msgid "Connector Settings" -msgstr "Impostazioni del connettore" +#: ../../Zotlabs/Module/Admin/Site.php:231 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" -#: ../../Zotlabs/Module/Settings.php:1001 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" +#: ../../Zotlabs/Module/Admin/Site.php:242 ../../Zotlabs/Module/Setup.php:336 +msgid "Basic/Minimal Social Networking" +msgstr "Social network minimale" -#: ../../Zotlabs/Module/Settings.php:1004 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Sperimentale)" +#: ../../Zotlabs/Module/Admin/Site.php:243 ../../Zotlabs/Module/Setup.php:337 +msgid "Standard Configuration (default)" +msgstr "Configurazione standard (predefinita)" -#: ../../Zotlabs/Module/Settings.php:1007 ../../Zotlabs/Module/Admin.php:410 -msgid "mobile" -msgstr "mobile" +#: ../../Zotlabs/Module/Admin/Site.php:244 ../../Zotlabs/Module/Setup.php:338 +msgid "Professional" +msgstr "Professionale" -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Display Settings" -msgstr "Aspetto" +#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Beginner/Basic" +msgstr "Principiante" -#: ../../Zotlabs/Module/Settings.php:1056 -msgid "Theme Settings" -msgstr "Impostazioni del tema" +#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Novice - not skilled but willing to learn" +msgstr "Novizio - disposto a imparare" -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "Custom Theme Settings" -msgstr "Personalizzazione del tema" +#: ../../Zotlabs/Module/Admin/Site.php:251 +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Intermediate - somewhat comfortable" +msgstr "Intermedio - con alcune conoscenze tecniche" -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Content Settings" -msgstr "Impostazioni dei contenuti" +#: ../../Zotlabs/Module/Admin/Site.php:252 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "Advanced - very comfortable" +msgstr "Avanzato - a mio agio con gli aspetti tecnici" -#: ../../Zotlabs/Module/Settings.php:1064 -msgid "Display Theme:" -msgstr "Tema per schermi medio grandi:" +#: ../../Zotlabs/Module/Admin/Site.php:253 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Expert - I can write computer code" +msgstr "Esperto - posso scrivere codice" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "Select scheme" -msgstr "Scegli uno schema" +#: ../../Zotlabs/Module/Admin/Site.php:254 +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Wizard - I probably know more than you do" +msgstr "Genio - probabilmente ne so più di te" -#: ../../Zotlabs/Module/Settings.php:1067 -msgid "Mobile Theme:" -msgstr "Tema per dispositivi mobili:" +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 +msgid "Site" +msgstr "Sito" -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "Preload images before rendering the page" -msgstr "Carica le immagini prima del rendering della pagina" +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "File upload" +msgstr "Caricamento file" -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" +#: ../../Zotlabs/Module/Admin/Site.php:270 +msgid "Policies" +msgstr "Politiche" -#: ../../Zotlabs/Module/Settings.php:1069 -msgid "Enable user zoom on mobile devices" -msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" +#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avanzate" -#: ../../Zotlabs/Module/Settings.php:1070 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "Site name" +msgstr "Nome del sito" -#: ../../Zotlabs/Module/Settings.php:1070 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" +#: ../../Zotlabs/Module/Admin/Site.php:277 ../../Zotlabs/Module/Setup.php:359 +msgid "Server Configuration/Role" +msgstr "Configurazione del server" -#: ../../Zotlabs/Module/Settings.php:1071 -msgid "Maximum number of conversations to load at any time:" -msgstr "Massimo numero di conversazioni da mostrare ogni volta:" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Site default technical skill level" +msgstr "Livello tecnico predefinito per gli utenti del sito" -#: ../../Zotlabs/Module/Settings.php:1071 -msgid "Maximum of 100 items" -msgstr "Massimo 100" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Utile a fornire agli utenti un livello tecnico del sito che rispetti le loro conoscenze" -#: ../../Zotlabs/Module/Settings.php:1072 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra le faccine (smilies) come immagini" +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Lock the technical skill level setting" +msgstr "Il livello tecnico non potrà essere modificato" -#: ../../Zotlabs/Module/Settings.php:1073 -msgid "Link post titles to source" -msgstr "Il link del titolo di un post porta al sito originale" +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Members can set their own technical comfort level by default" +msgstr "Gli utenti possono scegliere il livello tecnico preferito" -#: ../../Zotlabs/Module/Settings.php:1074 -msgid "System Page Layout Editor - (advanced)" -msgstr "Modifica i layout di sistema (avanzato)" +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Banner/Logo" +msgstr "Banner o logo" -#: ../../Zotlabs/Module/Settings.php:1077 -msgid "Use blog/list mode on channel page" -msgstr "Mostra il canale nella modalità blog" +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Administrator Information" +msgstr "Informazioni sull'amministratore" -#: ../../Zotlabs/Module/Settings.php:1077 -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "(comments displayed separately)" -msgstr "(i commenti sono mostrati separatamente)" +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Use blog/list mode on grid page" -msgstr "Mostra la tua rete in modalità blog" +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "System language" +msgstr "Lingua di sistema" -#: ../../Zotlabs/Module/Settings.php:1079 -msgid "Channel page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti del canale (in pixel)" +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "System theme" +msgstr "Tema di sistema" -#: ../../Zotlabs/Module/Settings.php:1079 -#: ../../Zotlabs/Module/Settings.php:1080 -msgid "click to expand content exceeding this height" -msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" -#: ../../Zotlabs/Module/Settings.php:1080 -msgid "Grid page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti della tua rete (in pixel)" +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:1110 -msgid "Nobody except yourself" -msgstr "Nessuno tranne te" +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:1111 -msgid "Only those you specifically allow" -msgstr "Solo chi riceve il mio permesso" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "Allow Feeds as Connections" +msgstr "Permetti di aggiungere i feed come contatti" -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Approved connections" -msgstr "Contatti approvati" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso delle risorse di sistema!)" -#: ../../Zotlabs/Module/Settings.php:1113 -msgid "Any connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" -#: ../../Zotlabs/Module/Settings.php:1114 -msgid "Anybody on this website" -msgstr "Chiunque su questo hub" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." -#: ../../Zotlabs/Module/Settings.php:1115 -msgid "Anybody in this network" -msgstr "Chiunque su questa rete" +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" -#: ../../Zotlabs/Module/Settings.php:1116 -msgid "Anybody authenticated" -msgstr "Chiunque abbia effettuato l'accesso" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Invitation only" +msgstr "Solo con invito" -#: ../../Zotlabs/Module/Settings.php:1117 -msgid "Anybody on the internet" -msgstr "Chiunque su internet" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." -#: ../../Zotlabs/Module/Settings.php:1193 -msgid "Publish your default profile in the network directory" -msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" +#: ../../Zotlabs/Module/Admin/Site.php:294 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" -#: ../../Zotlabs/Module/Settings.php:1198 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Vuoi essere suggerito come amico ai nuovi membri?" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Register text" +msgstr "Testo di registrazione" -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "or" -msgstr "o" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Your channel address is" -msgstr "L'indirizzo del tuo canale è" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" -#: ../../Zotlabs/Module/Settings.php:1253 -msgid "Channel Settings" -msgstr "Impostazioni del canale" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "Basic Settings" -msgstr "Impostazioni di base" +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "Preserve site homepage URL" +msgstr "Conserva l'URL della homepage" -#: ../../Zotlabs/Module/Settings.php:1261 ../../include/channel.php:1164 -msgid "Full Name:" -msgstr "Nome completo:" +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." -#: ../../Zotlabs/Module/Settings.php:1263 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "Default Post Location:" -msgstr "Località predefinita:" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "Geographical location to display on your posts" -msgstr "La posizione geografica da mostrare sui tuoi post" +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" -#: ../../Zotlabs/Module/Settings.php:1265 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." -#: ../../Zotlabs/Module/Settings.php:1267 -msgid "Adult Content" -msgstr "Contenuto per adulti" +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Verify Email Addresses" +msgstr "Verifica l'indirizzo email" -#: ../../Zotlabs/Module/Settings.php:1267 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." -#: ../../Zotlabs/Module/Settings.php:1269 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" -#: ../../Zotlabs/Module/Settings.php:1272 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." -#: ../../Zotlabs/Module/Settings.php:1274 -msgid "Hide my online presence" -msgstr "Nascondi la mia presenza online" +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Import Public Streams" +msgstr "Suggerisci contenuti pubblici della rete Hubzilla" -#: ../../Zotlabs/Module/Settings.php:1274 -msgid "Prevents displaying in your profile that you are online" -msgstr "Non mostrare sul tuo profilo quando sei online" +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." -#: ../../Zotlabs/Module/Settings.php:1276 -msgid "Simple Privacy Settings:" -msgstr "Impostazioni di privacy semplificate" +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Login on Homepage" +msgstr "Login sulla homepage" -#: ../../Zotlabs/Module/Settings.php:1277 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." + +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Enable context help" +msgstr "Abilita la guida contestuale" -#: ../../Zotlabs/Module/Settings.php:1278 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" -#: ../../Zotlabs/Module/Settings.php:1279 -msgid "Private - default private, never open or public" -msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Directory Server URL" +msgstr "URL del directory server" -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Default directory server" +msgstr "Directory server predefinito" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "Allow others to tag your posts" -msgstr "Permetti ad altri di taggare i tuoi post" +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Proxy user" +msgstr "Utente proxy" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Proxy URL" +msgstr "URL proxy" -#: ../../Zotlabs/Module/Settings.php:1284 -msgid "Channel Permission Limits" -msgstr "Limiti sui permessi del canale" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Network timeout" +msgstr "Timeout rete" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "Expire other channel content after this many days" -msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "0 or blank to use the website limit." -msgstr "0 o vuoto per usare i valori predefiniti." +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Delivery interval" +msgstr "Recapito ritardato" -#: ../../Zotlabs/Module/Settings.php:1286 -#, php-format -msgid "This website expires after %d days." -msgstr "Per questo sito la scadenza è %d giorni. " +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "This website does not expire imported content." -msgstr "I contenuti di questo sito non hanno scadenza." +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Deliveries per process" +msgstr "Tentativi di recapito per processo" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" -#: ../../Zotlabs/Module/Settings.php:1287 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo giornaliero di richieste di amicizia:" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Poll interval" +msgstr "Intervallo di polling" -#: ../../Zotlabs/Module/Settings.php:1287 -msgid "May reduce spam activity" -msgstr "Serve a ridurre lo spam" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." -#: ../../Zotlabs/Module/Settings.php:1288 -msgid "Default Access Control List (ACL)" -msgstr "Lista di accesso ai contenuti (ACL)" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" -#: ../../Zotlabs/Module/Settings.php:1289 ../../Zotlabs/Module/Mitem.php:154 -#: ../../Zotlabs/Module/Mitem.php:231 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." -#: ../../Zotlabs/Module/Settings.php:1290 -msgid "Use my default audience setting for the type of object published" -msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" -#: ../../Zotlabs/Module/Settings.php:1297 -msgid "Channel permissions category:" -msgstr "Categorie di permessi dei canali:" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "0 for no expiration of imported content" +msgstr "0 per non avere scadenza" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" +#: ../../Zotlabs/Module/Admin/Themes.php:18 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Useful to reduce spamming" -msgstr "Serve e ridurre lo spam" +#: ../../Zotlabs/Module/Admin/Themes.php:58 +msgid "No themes found." +msgstr "Nessun tema trovato." -#: ../../Zotlabs/Module/Settings.php:1306 -msgid "Notification Settings" -msgstr "Impostazioni di notifica" +#: ../../Zotlabs/Module/Admin/Themes.php:114 +msgid "Screenshot" +msgstr "Istantanea dello schermo" -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "By default post a status message when:" -msgstr "Pubblica un messaggio di stato quando:" +#: ../../Zotlabs/Module/Admin/Themes.php:121 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 +msgid "Themes" +msgstr "Temi" -#: ../../Zotlabs/Module/Settings.php:1308 -msgid "accepting a friend request" -msgstr "accetto una nuova amicizia" +#: ../../Zotlabs/Module/Admin/Themes.php:160 +msgid "[Experimental]" +msgstr "[Sperimentale]" -#: ../../Zotlabs/Module/Settings.php:1309 -msgid "joining a forum/community" -msgstr "entro a far parte di un forum" +#: ../../Zotlabs/Module/Admin/Themes.php:161 +msgid "[Unsupported]" +msgstr "[Non supportato]" -#: ../../Zotlabs/Module/Settings.php:1310 -msgid "making an interesting profile change" -msgstr "faccio un cambiamento interessante al mio profilo" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Il tuo account permette di creare al massimo %d canali." -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Send a notification email when:" -msgstr "Invia una email di notifica quando:" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." -#: ../../Zotlabs/Module/Settings.php:1312 -msgid "You receive a connection request" -msgstr "Ricevi una richiesta di entrare in contatto" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio hub" -#: ../../Zotlabs/Module/Settings.php:1313 -msgid "Your connections are confirmed" -msgstr "I tuoi contatti sono confermati" +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." -#: ../../Zotlabs/Module/Settings.php:1314 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla tua bacheca" +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." -#: ../../Zotlabs/Module/Settings.php:1315 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento dopo di te" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." -#: ../../Zotlabs/Module/Settings.php:1316 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Nessun canale. Import fallito." -#: ../../Zotlabs/Module/Settings.php:1317 -msgid "You receive a friend suggestion" -msgstr "Ti viene suggerito un amico" +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'importazione è terminata con successo." -#: ../../Zotlabs/Module/Settings.php:1318 -msgid "You are tagged in a post" -msgstr "Sei taggato in un post" +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." -#: ../../Zotlabs/Module/Settings.php:1319 -msgid "You are poked/prodded/etc. in a post" -msgstr "Ricevi un poke in un post" +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importa un canale" -#: ../../Zotlabs/Module/Settings.php:1322 -msgid "Show visual notifications including:" -msgstr "Mostra queste notifiche a schermo:" +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." -#: ../../Zotlabs/Module/Settings.php:1324 -msgid "Unseen grid activity" -msgstr "Nuove attività nella rete" +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "File da caricare" -#: ../../Zotlabs/Module/Settings.php:1325 -msgid "Unseen channel activity" -msgstr "Novità nei canali" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio hub" -#: ../../Zotlabs/Module/Settings.php:1326 -msgid "Unseen private messages" -msgstr "Nuovi messaggi privati" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" -#: ../../Zotlabs/Module/Settings.php:1326 -#: ../../Zotlabs/Module/Settings.php:1331 -#: ../../Zotlabs/Module/Settings.php:1332 -#: ../../Zotlabs/Module/Settings.php:1333 -msgid "Recommended" -msgstr "Consigliato" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio hub" -#: ../../Zotlabs/Module/Settings.php:1327 -msgid "Upcoming events" -msgstr "Prossimi eventi" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "La password per il vecchio hub" -#: ../../Zotlabs/Module/Settings.php:1328 -msgid "Events today" -msgstr "Eventi di oggi" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." -#: ../../Zotlabs/Module/Settings.php:1329 -msgid "Upcoming birthdays" -msgstr "Prossimi compleanni" +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Rendi questo hub il mio indirizzo primario" -#: ../../Zotlabs/Module/Settings.php:1329 -msgid "Not available in all themes" -msgstr "Non disponibile in tutti i temi" +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" -#: ../../Zotlabs/Module/Settings.php:1330 -msgid "System (personal) notifications" -msgstr "Notifiche personali dal sistema" +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." -#: ../../Zotlabs/Module/Settings.php:1331 -msgid "System info messages" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Photos.php:509 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../Zotlabs/Module/Settings.php:1332 -msgid "System critical alerts" -msgstr "Avvisi critici di sistema" +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" -#: ../../Zotlabs/Module/Settings.php:1333 -msgid "New connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Sesso:" -#: ../../Zotlabs/Module/Settings.php:1334 -msgid "System Registrations" -msgstr "Registrazioni" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Stato:" -#: ../../Zotlabs/Module/Settings.php:1335 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage:" -#: ../../Zotlabs/Module/Settings.php:1337 -msgid "Notify me of events this many days in advance" -msgstr "Giorni di anticipo per notificare gli eventi" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Età:" -#: ../../Zotlabs/Module/Settings.php:1337 -msgid "Must be greater than 0" -msgstr "Maggiore di 0" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/bb2diaspora.php:507 +#: ../../include/channel.php:1049 +msgid "Location:" +msgstr "Luogo:" -#: ../../Zotlabs/Module/Settings.php:1339 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Settings.php:1340 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambia il funzionamento di questo account per necessità particolari" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Città dove vivo:" -#: ../../Zotlabs/Module/Settings.php:1342 -msgid "Miscellaneous Settings" -msgstr "Impostazioni varie" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Informazioni:" -#: ../../Zotlabs/Module/Settings.php:1343 -msgid "Default photo upload folder" -msgstr "Cartella predefinita per le foto caricate" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 +#: ../../include/connections.php:78 ../../include/conversation.php:957 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "Aggiungi" -#: ../../Zotlabs/Module/Settings.php:1343 -#: ../../Zotlabs/Module/Settings.php:1344 -msgid "%Y - current year, %m - current month" -msgstr "%Y - anno corrente, %m - mese corrente" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Forum pubblico:" -#: ../../Zotlabs/Module/Settings.php:1344 -msgid "Default file upload folder" -msgstr "Cartella predefinita per i file caricati" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Parole chiave:" -#: ../../Zotlabs/Module/Settings.php:1346 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personale da mostrare sulle pagine del tuo canale" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Non fornire suggerimenti" -#: ../../Zotlabs/Module/Settings.php:1347 ../../Zotlabs/Module/Removeme.php:64 -msgid "Remove Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Contatti in comune:" -#: ../../Zotlabs/Module/Settings.php:1348 -msgid "Remove this channel." -msgstr "Elimina questo canale." +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Elenchi pubblici globali" -#: ../../Zotlabs/Module/Settings.php:1349 -msgid "Firefox Share $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Elenco canali su questo hub" -#: ../../Zotlabs/Module/Settings.php:1350 -msgid "Start calendar week on monday" -msgstr "La settimana inizia il lunedì" +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Cerca" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/conversation.php:1667 ../../include/nav.php:95 -msgid "Photos" -msgstr "Foto" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Ricerca:" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento non valido." +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "pagina successiva" -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "pagina precedente" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Opzioni di ordinamento" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- scegli -" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetico" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2055 -#: ../../Zotlabs/Module/Admin.php:2075 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Salva" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 -#: ../../Zotlabs/Module/Admin.php:1583 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3417 -msgid "Item not found." -msgstr "Elemento non trovato." +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# account" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# account bloccati" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# account scaduti" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "I miei segnalibri" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# account in scadenza" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# canali" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" +msgstr "Modifica post" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primari" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Nessuna valutazione" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# cloni" +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Coda messaggi in uscita" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valutazione:" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sito web:" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:496 -#: ../../Zotlabs/Module/Admin.php:722 ../../Zotlabs/Module/Admin.php:766 -#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 -#: ../../Zotlabs/Module/Admin.php:1350 ../../Zotlabs/Module/Admin.php:1441 -#: ../../Zotlabs/Module/Admin.php:1634 ../../Zotlabs/Module/Admin.php:1668 -#: ../../Zotlabs/Module/Admin.php:1753 -msgid "Administration" -msgstr "Amministrazione" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Riepilogo" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:95 ../../include/conversation.php:1671 +msgid "Photos" +msgstr "Foto" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Account creati" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Elemento non valido." -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:726 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Canali creati" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:727 -msgid "Active plugins" -msgstr "Plugin attivi" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versione" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- scegli -" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versione del repository (master)" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloccati" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versione del repository (dev)" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignorati" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Nascosti" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2896 -msgid "Default" -msgstr "Predefinito" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archiviati" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "sperimentale" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1572 +msgid "New" +msgstr "Novità" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "non supportato" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 +msgid "All" +msgstr "Tutti" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "È un servizio gratuito" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" -#: ../../Zotlabs/Module/Admin.php:497 ../../include/widgets.php:1523 -msgid "Site" -msgstr "Sito" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "File upload" -msgstr "Caricamento file" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Policies" -msgstr "Politiche" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" -#: ../../Zotlabs/Module/Admin.php:502 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzate" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "In attesa di conferma" -#: ../../Zotlabs/Module/Admin.php:506 -msgid "Site name" -msgstr "Nome del sito" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Banner/Logo" -msgstr "Banner o logo" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Modifica il contatto" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Elimina il contatto" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Indirizzo del canale" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "System language" -msgstr "Lingua di sistema" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Network" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "System theme" -msgstr "Tema di sistema" +#: ../../Zotlabs/Module/Connections.php:270 +msgid "Status" +msgstr "Stato" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "In contatto" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Ignora il contatto" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Ignora" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:191 ../../include/text.php:901 +msgid "Connections" +msgstr "Contatti" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:170 +#: ../../include/acl_selectors.php:174 ../../include/text.php:971 +#: ../../include/text.php:983 ../../include/widgets.php:315 +msgid "Search" +msgstr "Cerca" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Cerca tra i contatti" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Invitation only" -msgstr "Solo con invito" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Ricerca tra i contatti" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Copertine del canale" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Register text" -msgstr "Testo di registrazione" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "Il ridimensionamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "Il caricamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Preserve site homepage URL" -msgstr "Conserva l'URL della homepage" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 +msgid "female" +msgstr "femmina" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Admin.php:524 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 +msgid "male" +msgstr "maschio" -#: ../../Zotlabs/Module/Admin.php:524 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 +msgid "cover photo" +msgstr "Copertina del canale" -#: ../../Zotlabs/Module/Admin.php:526 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto non disponibile." -#: ../../Zotlabs/Module/Admin.php:526 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Carica un file:" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Carica una copertina" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Import Public Streams" -msgstr "Suggerisci contenuti pubblici della rete Hubzilla" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings/Channel.php:399 +msgid "or" +msgstr "o" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "salta questo passaggio" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Login on Homepage" -msgstr "Login sulla homepage" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Ritaglia immagine" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Enable context help" -msgstr "Abilita la guida contestuale" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Modifica terminata" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Directory Server URL" -msgstr "URL del directory server" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Default directory server" -msgstr "Directory server predefinito" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Nome del block" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Proxy user" -msgstr "Utente proxy" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" -#: ../../Zotlabs/Module/Admin.php:535 -msgid "Proxy URL" -msgstr "URL proxy" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1259 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" -#: ../../Zotlabs/Module/Admin.php:536 -msgid "Network timeout" -msgstr "Timeout rete" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifica il block" -#: ../../Zotlabs/Module/Admin.php:536 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "Nome layout" -#: ../../Zotlabs/Module/Admin.php:537 -msgid "Delivery interval" -msgstr "Recapito ritardato" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "Descrizione del layout (facoltativa)" -#: ../../Zotlabs/Module/Admin.php:537 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "Modifica il layout" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "Deliveries per process" -msgstr "Tentativi di recapito per processo" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" -#: ../../Zotlabs/Module/Admin.php:539 -msgid "Poll interval" -msgstr "Intervallo di polling" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../Zotlabs/Module/Admin.php:539 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../Zotlabs/Module/Admin.php:540 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" -#: ../../Zotlabs/Module/Admin.php:540 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" -#: ../../Zotlabs/Module/Admin.php:541 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" -#: ../../Zotlabs/Module/Admin.php:541 -msgid "0 for no expiration of imported content" -msgstr "0 per non avere scadenza" - -#: ../../Zotlabs/Module/Admin.php:689 -#, php-format -msgid "Lock feature %s" -msgstr "Rendi non modificabile %s" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" -#: ../../Zotlabs/Module/Admin.php:697 -msgid "Manage Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" -#: ../../Zotlabs/Module/Admin.php:714 -msgid "No server found" -msgstr "Server non trovato" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" -#: ../../Zotlabs/Module/Admin.php:721 ../../Zotlabs/Module/Admin.php:1059 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" -#: ../../Zotlabs/Module/Admin.php:721 -msgid "for channel" -msgstr "per il canale" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 +msgid "Menus" +msgstr "Menù" -#: ../../Zotlabs/Module/Admin.php:721 -msgid "on server" -msgstr "sul server" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Elimina" -#: ../../Zotlabs/Module/Admin.php:721 ../../Zotlabs/Module/Connections.php:270 -msgid "Status" -msgstr "Stato" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creato" -#: ../../Zotlabs/Module/Admin.php:723 -msgid "Server" -msgstr "Server" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Modificato" -#: ../../Zotlabs/Module/Admin.php:757 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/https://vimeo.com/
    https://soundcloud.com/
    " -msgstr "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    " +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifica questo menù" -#: ../../Zotlabs/Module/Admin.php:767 ../../include/widgets.php:1526 -msgid "Security" -msgstr "Sicurezza" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." -#: ../../Zotlabs/Module/Admin.php:769 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menù non trovato." -#: ../../Zotlabs/Module/Admin.php:769 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifica menù" -#: ../../Zotlabs/Module/Admin.php:770 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Imposta il \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" -#: ../../Zotlabs/Module/Admin.php:771 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Imposta il \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nome del menù" -#: ../../Zotlabs/Module/Admin.php:772 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" -#: ../../Zotlabs/Module/Admin.php:772 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titolo del menù" -#: ../../Zotlabs/Module/Admin.php:773 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" -#: ../../Zotlabs/Module/Admin.php:773 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" -#: ../../Zotlabs/Module/Admin.php:774 -msgid "Allow communications only from these sites" -msgstr "Permetti la comunicazione solo da questi siti" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." -#: ../../Zotlabs/Module/Admin.php:774 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installata" -#: ../../Zotlabs/Module/Admin.php:775 -msgid "Block communications from these sites" -msgstr "Blocca la comunicazione da questi siti" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "L'app contiene errori" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "Allow communications only from these channels" -msgstr "Permetti la comunicazione solo da questi canali" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Inserisci il codice" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifica app" -#: ../../Zotlabs/Module/Admin.php:777 -msgid "Block communications from these channels" -msgstr "Blocca la comunicazione da questi canali" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea una app" -#: ../../Zotlabs/Module/Admin.php:778 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nome app" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Obbligatorio" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" -#: ../../Zotlabs/Module/Admin.php:780 -msgid "Block embedded HTML from these domains" -msgstr "Blocca i contenuti incorporati HTML da questi domini" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descrizione" -#: ../../Zotlabs/Module/Admin.php:798 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL icona" -#: ../../Zotlabs/Module/Admin.php:808 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" -#: ../../Zotlabs/Module/Admin.php:811 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../Zotlabs/Module/Admin.php:815 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "ID versione" -#: ../../Zotlabs/Module/Admin.php:818 -#, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prezzo app" -#: ../../Zotlabs/Module/Admin.php:834 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" -#: ../../Zotlabs/Module/Admin.php:838 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." -#: ../../Zotlabs/Module/Admin.php:840 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." -#: ../../Zotlabs/Module/Admin.php:841 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." -#: ../../Zotlabs/Module/Admin.php:872 -msgid "Queue Statistics" -msgstr "Statistiche della coda" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." -#: ../../Zotlabs/Module/Admin.php:873 -msgid "Total Entries" -msgstr "Totale" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Messaggi" -#: ../../Zotlabs/Module/Admin.php:874 -msgid "Priority" -msgstr "Priorità" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Messaggio revocato." -#: ../../Zotlabs/Module/Admin.php:875 -msgid "Destination URL" -msgstr "URL di destinazione" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../Zotlabs/Module/Admin.php:876 -msgid "Mark hub permanently offline" -msgstr "Questo hub è definitivamente offline" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" -#: ../../Zotlabs/Module/Admin.php:877 -msgid "Empty queue for this hub" -msgstr "Svuota la coda per questo hub" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Admin.php:878 -msgid "Last known contact" -msgstr "Ultimo scambio dati" - -#: ../../Zotlabs/Module/Admin.php:914 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "Modificato il blocco su %s account" -msgstr[1] "Modificato il blocco verso %s" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" -#: ../../Zotlabs/Module/Admin.php:921 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account eliminato" -msgstr[1] "%s account eliminati" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" -#: ../../Zotlabs/Module/Admin.php:957 -msgid "Account not found" -msgstr "Account non trovato" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "A:" -#: ../../Zotlabs/Module/Admin.php:968 -#, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' eliminato" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Oggetto:" -#: ../../Zotlabs/Module/Admin.php:976 -#, php-format -msgid "Account '%s' blocked" -msgstr "Aggiunto un blocco verso '%s'" +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 +msgid "Your message:" +msgstr "Il tuo messaggio:" -#: ../../Zotlabs/Module/Admin.php:984 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Rimosso il blocco verso '%s'" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1243 +msgid "Attach file" +msgstr "Allega file" -#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 -#: ../../include/widgets.php:1524 -msgid "Accounts" -msgstr "Account" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Invia" -#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 -msgid "select all" -msgstr "seleziona tutti" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1288 +msgid "Set expiration date" +msgstr "Data di scadenza" -#: ../../Zotlabs/Module/Admin.php:1047 -msgid "Registrations waiting for confirm" -msgstr "Registrazioni in attesa di conferma" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 +#: ../../include/conversation.php:1293 +msgid "Encrypt text" +msgstr "Cifratura del messaggio" -#: ../../Zotlabs/Module/Admin.php:1048 -msgid "Request date" -msgstr "Data richiesta" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 -#: ../../include/network.php:2208 -msgid "Email" -msgstr "Email" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "No registrations." -msgstr "Nessuna registrazione." +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Revoca il messaggio" -#: ../../Zotlabs/Module/Admin.php:1050 -#: ../../Zotlabs/Module/Connections.php:275 -msgid "Approve" -msgstr "Approva" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Deny" -msgstr "Nega" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" -#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 -msgid "Block" -msgstr "Blocca" +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." -#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 -msgid "Unblock" -msgstr "Sblocca" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Invia la risposta" -#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 -msgid "All Channels" -msgstr "Tutti i canali" +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%s):" -#: ../../Zotlabs/Module/Admin.php:1062 -msgid "Register date" -msgstr "Data registrazione" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento non disponibile." -#: ../../Zotlabs/Module/Admin.php:1063 -msgid "Last login" -msgstr "Ultimo accesso" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Condividi i contenuti su $Projectname da Firefox" -#: ../../Zotlabs/Module/Admin.php:1064 -msgid "Expires" -msgstr "Con scadenza" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Admin.php:1065 -msgid "Service Class" -msgstr "Classe dell'account" +#: ../../Zotlabs/Module/Help.php:27 +msgid "Documentation Search" +msgstr "Ricerca nella guida" -#: ../../Zotlabs/Module/Admin.php:1067 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Help.php:57 +msgid "$Projectname Documentation" +msgstr "Guida di $Projectname" -#: ../../Zotlabs/Module/Admin.php:1068 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Admin.php:1104 +#: ../../Zotlabs/Module/Home.php:92 #, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" -#: ../../Zotlabs/Module/Admin.php:1113 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s canale permette/non permette codice nei contenuti" -msgstr[1] "%s canali permettono/non permettono codice nei contenuti" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." -#: ../../Zotlabs/Module/Admin.php:1119 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../Zotlabs/Module/Admin.php:1139 -msgid "Channel not found" -msgstr "Canale non trovato" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Permesso negato." -#: ../../Zotlabs/Module/Admin.php:1149 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "File non trovato." -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" +#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 +#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Photos.php:658 +#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Module/Chat.php:234 +#: ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permessi" -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Il canale '%s' permette codice nei contenuti" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Il canale '%s' non permette codice nei contenuti" +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" -#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1525 -msgid "Channels" -msgstr "Canali" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "Censor" -msgstr "Applica censura" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/incolla questo codice per far comparire il file in un post" -#: ../../Zotlabs/Module/Admin.php:1228 -msgid "Uncensor" -msgstr "Rimuovi censura" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" -#: ../../Zotlabs/Module/Admin.php:1229 -msgid "Allow Code" -msgstr "Permetti codice" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Condividi questo file" -#: ../../Zotlabs/Module/Admin.php:1230 -msgid "Disallow Code" -msgstr "Non permettere codice" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" -#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1646 -msgid "Channel" -msgstr "Canale" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Notifica ai contatti che hai caricato questo file" -#: ../../Zotlabs/Module/Admin.php:1235 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub non trovato." -#: ../../Zotlabs/Module/Admin.php:1237 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Profiles.php:470 -msgid "Address" -msgstr "Indirizzo" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continua" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Canale premium - configurazione" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Abilita le restrizioni del canale premium" -#: ../../Zotlabs/Module/Admin.php:1239 +#: ../../Zotlabs/Module/Connect.php:93 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 enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." -#: ../../Zotlabs/Module/Admin.php:1240 +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 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?" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" -#: ../../Zotlabs/Module/Admin.php:1298 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." - -#: ../../Zotlabs/Module/Admin.php:1303 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" -#: ../../Zotlabs/Module/Admin.php:1319 ../../Zotlabs/Module/Admin.php:1607 -msgid "Disable" -msgstr "Disattiva" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." -#: ../../Zotlabs/Module/Admin.php:1322 ../../Zotlabs/Module/Admin.php:1609 -msgid "Enable" -msgstr "Attiva" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" -#: ../../Zotlabs/Module/Admin.php:1351 ../../Zotlabs/Module/Admin.php:1442 -#: ../../include/widgets.php:1528 -msgid "Plugins" -msgstr "Plugin" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canale premium - con restrizioni" -#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1636 -msgid "Toggle" -msgstr "Attiva/disattiva" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppo di canali creato." -#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1637 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:680 -#: ../../include/nav.php:213 -msgid "Settings" -msgstr "Impostazioni" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Impossibile creare il gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:1360 ../../Zotlabs/Module/Admin.php:1646 -msgid "Author: " -msgstr "Autore:" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3950 +msgid "Privacy group not found." +msgstr "Gruppo di canali non trovato." -#: ../../Zotlabs/Module/Admin.php:1361 ../../Zotlabs/Module/Admin.php:1647 -msgid "Maintainer: " -msgstr "Gestore:" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Gruppo di canali aggiornato." -#: ../../Zotlabs/Module/Admin.php:1362 -msgid "Minimum project version: " -msgstr "Minima versione hubzilla" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Crea un gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:1363 -msgid "Maximum project version: " -msgstr "Massima versione hubzilla" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Nome del gruppo di canali:" -#: ../../Zotlabs/Module/Admin.php:1364 -msgid "Minimum PHP version: " -msgstr "Minima versione PHP:" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "I membri potranno vedere gli altri canali del gruppo" -#: ../../Zotlabs/Module/Admin.php:1365 -msgid "Compatible Server Roles: " -msgstr "Ruoli compatibili per questo server" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Gruppo di canali rimosso." -#: ../../Zotlabs/Module/Admin.php:1366 -msgid "Requires: " -msgstr "Necessita di:" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Impossibile rimuovere il gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:1367 ../../Zotlabs/Module/Admin.php:1447 -msgid "Disabled - version incompatibility" -msgstr "Disabilitato - incompatibilità di versione" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Editor dei gruppi di canali" -#: ../../Zotlabs/Module/Admin.php:1416 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Inserisci lo URL del repository git dei plugin." +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Membri" -#: ../../Zotlabs/Module/Admin.php:1417 -msgid "Plugin repo git URL" -msgstr "URL git del repository del plugin" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" -#: ../../Zotlabs/Module/Admin.php:1418 -msgid "Custom repo name" -msgstr "Nome repository personalizzato" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Admin.php:1418 -msgid "(optional)" -msgstr "(facoltativo)" +#: ../../Zotlabs/Module/Webpages.php:52 +msgid "Import Webpage Elements" +msgstr "Importa gli elementi della pagina web" -#: ../../Zotlabs/Module/Admin.php:1419 -msgid "Download Plugin Repo" -msgstr "Scarica il repository del plugin" +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import selected" +msgstr "Importa i selezionati" -#: ../../Zotlabs/Module/Admin.php:1426 -msgid "Install new repo" -msgstr "Installa un nuovo repository" +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" +msgstr "Esporta gli elementi della pagina web" -#: ../../Zotlabs/Module/Admin.php:1427 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installa" +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" +msgstr "Esporta i selezionati" -#: ../../Zotlabs/Module/Admin.php:1449 -msgid "Manage Repos" -msgstr "Gestisci i repository" +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:109 ../../include/conversation.php:1724 +msgid "Webpages" +msgstr "Pagine web" -#: ../../Zotlabs/Module/Admin.php:1450 -msgid "Installed Plugin Repositories" -msgstr "Repository per i plugin installati" +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1078 +#: ../../include/conversation.php:1231 +msgid "Share" +msgstr "Condividi" -#: ../../Zotlabs/Module/Admin.php:1451 -msgid "Install a New Plugin Repository" -msgstr "Installa un nuovo repository per i plugin" +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Events.php:680 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:59 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Guarda" -#: ../../Zotlabs/Module/Admin.php:1458 -msgid "Switch branch" -msgstr "Cambia branch" +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:721 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 +msgid "Preview" +msgstr "Anteprima" -#: ../../Zotlabs/Module/Admin.php:1459 ../../Zotlabs/Module/Photos.php:1000 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Rimuovi" +#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Azioni" -#: ../../Zotlabs/Module/Admin.php:1572 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Admin.php:1628 -msgid "Screenshot" -msgstr "Istantanea dello schermo" +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Titolo della pagina" -#: ../../Zotlabs/Module/Admin.php:1635 ../../Zotlabs/Module/Admin.php:1669 -#: ../../include/widgets.php:1529 -msgid "Themes" -msgstr "Temi" +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "Tipo di file non valido." -#: ../../Zotlabs/Module/Admin.php:1674 -msgid "[Experimental]" -msgstr "[Sperimentale]" +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Errore nell'apertura del file zip" -#: ../../Zotlabs/Module/Admin.php:1675 -msgid "[Unsupported]" -msgstr "[Non supportato]" +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "La cartella indicata non è valida." -#: ../../Zotlabs/Module/Admin.php:1699 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "Nella pagina web non sono presenti elementi." -#: ../../Zotlabs/Module/Admin.php:1754 ../../include/widgets.php:1550 -#: ../../include/widgets.php:1560 -msgid "Logs" -msgstr "Log" +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "Importazione completata." -#: ../../Zotlabs/Module/Admin.php:1756 -msgid "Clear" -msgstr "Pulisci" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pagina web" -#: ../../Zotlabs/Module/Admin.php:1762 -msgid "Debugging" -msgstr "Debugging" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "block" -#: ../../Zotlabs/Module/Admin.php:1763 -msgid "Log file" -msgstr "File di log" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" -#: ../../Zotlabs/Module/Admin.php:1763 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Relativo alla directory base del server web. Deve essere scrivibile." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Admin.php:1764 -msgid "Log level" -msgstr "Livello di log" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "%s elemento installato" -#: ../../Zotlabs/Module/Admin.php:2050 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" -#: ../../Zotlabs/Module/Admin.php:2051 ../../Zotlabs/Module/Admin.php:2071 -msgid "Field nickname" -msgstr "Nome breve del campo" +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Importazione completata" -#: ../../Zotlabs/Module/Admin.php:2051 ../../Zotlabs/Module/Admin.php:2071 -msgid "System name of field" -msgstr "Nome di sistema del campo" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importa i contenuti" -#: ../../Zotlabs/Module/Admin.php:2052 ../../Zotlabs/Module/Admin.php:2072 -msgid "Input type" -msgstr "Tipo di dati" +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza." -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Admin.php:2073 -msgid "Field Name" -msgstr "Nome del campo" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Admin.php:2073 -msgid "Label on profile pages" -msgstr "Etichetta da mostrare sulla pagina del profilo" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." -#: ../../Zotlabs/Module/Admin.php:2054 ../../Zotlabs/Module/Admin.php:2074 -msgid "Help text" -msgstr "Testo di aiuto" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Unisciti a noi su $Projectname" -#: ../../Zotlabs/Module/Admin.php:2054 ../../Zotlabs/Module/Admin.php:2074 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (facoltative)" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." -#: ../../Zotlabs/Module/Admin.php:2064 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." -#: ../../Zotlabs/Module/Admin.php:2070 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." -#: ../../Zotlabs/Module/Admin.php:2128 ../../include/widgets.php:1531 -msgid "Profile Fields" -msgstr "Campi del profilo" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" -#: ../../Zotlabs/Module/Admin.php:2129 -msgid "Basic Profile Fields" -msgstr "Campi base del profilo" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Spedisci inviti" -#: ../../Zotlabs/Module/Admin.php:2130 -msgid "Advanced Profile Fields" -msgstr "Campi avanzati del profilo" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" -#: ../../Zotlabs/Module/Admin.php:2130 -msgid "(In addition to basic fields)" -msgstr "(In aggiunta ai campi di base)" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Entra nella mia comunità su $Projectname." -#: ../../Zotlabs/Module/Admin.php:2132 -msgid "All available fields" -msgstr "Tutti i campi disponibili" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Dovrai fornire questo codice invito:" -#: ../../Zotlabs/Module/Admin.php:2133 -msgid "Custom Fields" -msgstr "Campi personalizzati" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" -#: ../../Zotlabs/Module/Admin.php:2137 -msgid "Create Custom Field" -msgstr "Aggiungi campo personalizzato" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloccati" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oppure visita" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorati" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Clicca su [Aggiungi]" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Nascosti" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Indirizzo non trovato." -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archiviati" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "La ricerca dell'indirizzo è fallita." -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1568 -msgid "New" -msgstr "Novità" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 -msgid "All" -msgstr "Tutti" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronizzazione tra hub" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Nessun indirizzo trovato." -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Modifica gli indirizzi del canale" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 +#: ../../Zotlabs/Module/Pubsites.php:51 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Posizione geografica" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizza ora" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "In attesa di conferma" +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" +msgstr "Impossibile trovare il gruppo di canali" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" +msgstr "Canale sconosciuto" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Modifica il contatto" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Elimina il contatto" +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" +msgstr "Cerca risultati con:" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Indirizzo del canale" +#: ../../Zotlabs/Module/Network.php:218 +msgid "Privacy group is empty" +msgstr "Il gruppo di canali è vuoto" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Network" +#: ../../Zotlabs/Module/Network.php:227 +msgid "Privacy group: " +msgstr "Gruppo di canali:" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "In contatto" +#: ../../Zotlabs/Module/Network.php:253 +msgid "Invalid connection." +msgstr "Contatto non valido." -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Mi piace/Non mi piace" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignora il contatto" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Questa funzionalità è riservata agli iscritti." -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Ignore" -msgstr "Ignora" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Richiesta non valida." -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:855 ../../include/nav.php:191 -msgid "Connections" -msgstr "Contatti" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "il canale" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:174 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/widgets.php:315 ../../include/nav.php:170 -msgid "Search" -msgstr "Cerca" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "Oggetto" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Cerca tra i contatti" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Ricerca tra i contatti" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Il comando precedente è stato annullato." -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Cerca" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1991 +msgid "photo" +msgstr "la foto" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1997 +msgid "status" +msgstr "il messaggio di stato" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Copertine del canale" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:958 +#: ../../include/conversation.php:123 ../../include/text.php:1994 +msgid "event" +msgstr "l'evento" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." -msgstr "Il ridimensionamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." -msgstr "Il caricamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s è d'accordo" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 -msgid "female" -msgstr "femmina" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non è d'accordo" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 +#: ../../Zotlabs/Module/Like.php:427 #, php-format -msgid "%1$s updated her %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non si esprime" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 -msgid "male" -msgstr "maschio" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s partecipa" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 +#: ../../Zotlabs/Module/Like.php:431 #, php-format -msgid "%1$s updated his %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non partecipa" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 +#: ../../Zotlabs/Module/Like.php:433 #, php-format -msgid "%1$s updated their %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s forse partecipa" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 -msgid "cover photo" -msgstr "Copertina del canale" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Comando completato." -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." -msgstr "Foto non disponibile." +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Grazie." -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" -msgstr "Carica un file:" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Carica una copertina" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Crea nuova" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" -msgstr "salta questo passaggio" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" +msgstr "Gestione canali" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canale attuale" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" -msgstr "Ritaglia immagine" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canale predefinito" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "Modifica terminata" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Rendi predefinito" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" -msgstr "Messaggio non valido" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" -msgstr "nessun risultato" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "sincronizzazione del canale effettuata" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canale delegato" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in coda" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossibile creare l'elemento." -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "inviato" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "accettato per la spedizione" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "aggiornato" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "aggiornamento ignorato" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:486 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permessi non sufficienti" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nome link" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Destinatario non trovato" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "messaggio richiamato dal mittente" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "ricevuto messaggio duplicato" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "messaggio recapitato" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Rapporto di consegna - %1$s" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Ordine dell'elenco" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opzioni" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti andranno in fondo all'elenco" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Reinvia" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Salva e termina" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Accesso pubblico negato." +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Salva e continua" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menu:" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Sesso:" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Destinazione link" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Stato:" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Modifica il menù" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage:" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Modifica l'elemento" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" -msgstr "Età:" - -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 -#: ../../include/bb2diaspora.php:507 ../../include/event.php:52 -#: ../../include/event.php:84 -msgid "Location:" -msgstr "Luogo:" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Elimina l'elemento" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nuovo elemento" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" -msgstr "Città dove vivo:" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" -msgstr "Informazioni:" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/connections.php:78 -#: ../../include/channel.php:1034 ../../include/conversation.php:957 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 -msgid "Connect" -msgstr "Aggiungi" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Forum pubblico:" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Parole chiave:" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Non fornire suggerimenti" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Contatti in comune:" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Elenchi pubblici globali" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Elenco canali su questo hub" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Testo del link" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Ricerca:" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Sito web:" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "pagina successiva" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "pagina precedente" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Opzioni di ordinamento" +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetico" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Questo non è un directory server" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 +msgid "Password Reset" +msgstr "Reimposta la password" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Questo directory server necessita di un token di autenticazione" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" -msgstr "Elemento non trovato" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La tua nuova password è" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "Nome del block" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 -#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1148 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "clicca qui per accedere" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifica il block" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "Nome layout" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "Descrizione del layout (facoltativa)" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "Modifica il layout" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Indirizzo email" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reimposta" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s è %2$s" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Umore" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nome del menu" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilo eliminato." -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titolo del menu" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profilo-" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Il profilo non è disponibile per l'export." -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Salva e procedi" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio." -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 -msgid "Menus" -msgstr "Menù" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Stato sentimentale" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "Elimina" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Partner affettivo" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:249 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creato" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:250 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Modificato" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Lavoro/impiego" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Elimina questo menù" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religione" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifica questo menù" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menù non trovato." +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Home page" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifica menù" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interessi" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profilo aggiornato." -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nome del menù" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titolo del menù" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Guarda questo profilo" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "Cambia la visibilità" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Gestione del profilo" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Non trovato." +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Cambia la copertina del canale" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installata" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "L'app contiene errori" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Inserisci il codice" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Clona questo profilo" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifica app" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Elimina questo profilo" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crea una app" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Aggiungi oggetti al profilo" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nome app" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1563 +#: ../../include/widgets.php:105 +msgid "Personal" +msgstr "Personali" -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obbligatorio" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relazione" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Altro" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descrizione" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importa il profilo da un file" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL icona" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Esporta il profilo in un file" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Stato civile" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "ID versione" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Preferenze sessuali" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prezzo app" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Nome del profilo" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Questo è il tuo profilo predefinito." -#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" -msgstr "Modifica post" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Il tuo nome completo" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento non disponibile." +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titolo/descrizione" -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "Layout aggiornato." +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Indirizzo (via/piazza)" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funzionalità disattivata." +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Località" -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Regione/stato" -#: ../../Zotlabs/Module/Pdledit.php:64 -msgid "Layout not found." -msgstr "Layout non trovato." - -#: ../../Zotlabs/Module/Pdledit.php:70 -msgid "Module Name:" -msgstr "Nome del modulo:" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "CAP" -#: ../../Zotlabs/Module/Pdledit.php:71 -msgid "Layout Help" -msgstr "Guida al layout" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Nazione" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Condividi i contenuti su $Projectname da Firefox" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Con chi (se possibile)" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "dal (data)" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Raccontaci di te..." -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Indirizzo home page" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Città dove vivo" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "File non trovato." +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Orientamento religioso" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Parole chiavi mostrate nell'elenco dei canali" -#: ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 -#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 -msgid "Permissions" -msgstr "Permessi" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Interessi musicali" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Libri, letteratura" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisione" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un post" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film, danza, cultura, intrattenimento" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" -msgstr "Condividi questo file" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Amore" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Scuola/educazione" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" -msgstr "Notifica ai contatti che hai caricato questo file" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Contatti e social network" -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" -msgstr "rete" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "I miei altri canali" -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "Immagine del profilo" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppo di canali creato." +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:91 +#: ../../include/channel.php:959 +msgid "Edit Profiles" +msgstr "Modifica i tuoi profili" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Impossibile creare il gruppo di canali." +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3950 -msgid "Privacy group not found." -msgstr "Gruppo di canali non trovato." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Gruppo di canali aggiornato." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Crea un gruppo di canali." +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Nome del gruppo di canali:" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessi personali:" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "I membri potranno vedere gli altri canali del gruppo" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Nessun risultato" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Gruppo di canali rimosso." +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Autorizza la app" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Impossibile rimuovere il gruppo di canali." +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Ritorna alla tua app e inserisci questo Security Code:" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Editor dei gruppi di canali" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Membri" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Le voci del calendario sono state importate." -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Non sono state trovate voci del calendario." -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Un evento non può terminare prima del suo inizio." -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Foto del profilo" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Impossibile creare un'anteprima." -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album non trovato." +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Elimina album" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Evento non trovato." -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" +msgstr "Modifica il titolo dell'evento" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "Elimina foto" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" +msgstr "Titolo dell'evento" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" +msgstr "Modifica la categoria" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" +msgstr "Categoria" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" +msgstr "Modifica data/ora di inizio" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" +msgstr "Data e ora di inizio" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" +msgstr "La data e l'ora di fine non sono necessarie" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" +msgstr "Modifica data/ora di fine" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" +msgstr "Data e ora di fine" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Titolo (facoltativo):" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descrizione (facoltativa):" +#: ../../Zotlabs/Module/Events.php:463 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" +msgstr "Modifica la descrizione" -#: ../../Zotlabs/Module/Photos.php:745 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" +msgstr "Modifica il luogo" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Newest First" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" +msgstr "Condividi questo evento" -#: ../../Zotlabs/Module/Photos.php:770 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1263 +msgid "Permission settings" +msgstr "Permessi dei tuoi contatti" -#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1640 -msgid "View Photo" -msgstr "Guarda la foto" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" +msgstr "Opzioni avanzate" -#: ../../Zotlabs/Module/Photos.php:825 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1657 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" +msgstr "Modifica l'evento" -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" +msgstr "Elimina l'evento" -#: ../../Zotlabs/Module/Photos.php:932 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1762 +msgid "Link to Source" +msgstr "Link al sito d'origine" -#: ../../Zotlabs/Module/Photos.php:933 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" +msgstr "calendario" -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Modifica l'evento" + +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Crea un evento" -#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:940 msgid "Previous" msgstr "Precendente" -#: ../../Zotlabs/Module/Photos.php:955 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cal.php:333 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Photos.php:949 +msgid "Next" +msgstr "Successivo" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Edit photo" -msgstr "Modifica la foto" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Esporta" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" +msgstr "Mese" -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Settimana" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Giorno" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Oggi" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" -msgstr "Didascalia" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Evento eliminato" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Impossibile eliminare l'evento" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "I post duplicati sono scartati." -#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../include/conversation.php:1227 -msgid "Share" -msgstr "Condividi" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Attendere" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:709 -msgid "This is you" -msgstr "Questo sei tu" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commento" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:245 -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:721 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 -msgid "Preview" -msgstr "Anteprima" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" +msgstr "Crea un canale" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/New_channel.php:141 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/New_channel.php:142 +msgid "" +"or import an existing channel from another location." +msgstr "oppure importa un canale esistente da un altro server/hub." -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[oggi]" -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1758 -msgid "View all" -msgstr "Vedi tutto" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "ha creato un evento" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1782 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1785 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Rifiuta" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "Gestione foto" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" -msgstr "In questa foto:" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" +msgstr "Poke" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" -msgstr "Mappa" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Manda un poke" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Poke/Prod" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Manda un poke o altro a qualcuno" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 -#: ../../include/acl_selectors.php:181 -msgid "Close" -msgstr "Chiudi" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" -msgstr "Guarda l'album" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendi privato questo post" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pagina web" +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" +msgstr "Server $Projectname - Installazione" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "block" +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" +#: ../../Zotlabs/Module/Setup.php:192 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "%s elemento installato" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "Elementi con installazione fallita: %s" +#: ../../Zotlabs/Module/Setup.php:208 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio hub" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" +msgstr "Verifica del sistema" -#: ../../Zotlabs/Module/Import_items.php:72 -#: ../../Zotlabs/Module/Import.php:101 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" +msgstr "Verifica di nuovo" -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:123 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" +msgstr "Connessione al database" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importazione completata" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importa i contenuti" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Setup.php:298 msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza." +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:549 -msgid "File to Upload" -msgstr "File da caricare" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" +msgstr "Server del database" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" +msgstr "Il valore predefinito è 127.0.0.1" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" +msgstr "Port del database" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Unisciti a noi su $Projectname" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" +msgstr "Utente database" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" +msgstr "Password database" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" +msgstr "Nome database" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" +msgstr "Tipo database" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Spedisci inviti" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del hub" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Entra nella mia comunità su $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Dovrai fornire questo codice invito:" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" +msgstr "URL completo del sito" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo hub" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oppure visita" +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" +msgstr "Impostazioni del hub" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." +msgstr "E' necessario PHP versione 5.5 o superiore." -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Indirizzo non trovato." +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" +msgstr "Versione PHP" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "La ricerca dell'indirizzo è fallita." +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" -#: ../../Zotlabs/Module/Locs.php:66 +#: ../../Zotlabs/Module/Setup.php:417 msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronizzazione tra hub" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Nessun indirizzo trovato." +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" +msgstr "Path del comando PHP" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Modifica gli indirizzi del canale" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 -#: ../../Zotlabs/Module/Pubsites.php:46 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Posizione geografica" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizza ora" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Locs.php:124 +#: ../../Zotlabs/Module/Setup.php:457 +#, php-format msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub non trovato." +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Mi piace/Non mi piace" +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puoi regolare queste impostazioni sul server in php.ini" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Questa funzionalità è riservata agli iscritti." +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" +msgstr "Limiti PHP in upload" -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Setup.php:487 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Richiesta non valida." +#: ../../Zotlabs/Module/Setup.php:488 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "il canale" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" +msgstr "Genera chiavi di cifratura" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "Oggetto" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Il comando precedente è stato annullato." +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "la foto" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" +msgstr "modulo PHP per mysqli oppure prostgres" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1951 ../../include/conversation.php:148 -msgid "status" -msgstr "il messaggio di stato" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 -#: ../../include/conversation.php:123 ../../include/event.php:958 -msgid "event" -msgstr "l'evento" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" +msgstr "modulo xml PHP" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" +#: ../../Zotlabs/Module/Setup.php:512 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s è d'accordo" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non è d'accordo" +#: ../../Zotlabs/Module/Setup.php:518 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non si esprime" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s partecipa" +#: ../../Zotlabs/Module/Setup.php:530 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non partecipa" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s forse partecipa" +#: ../../Zotlabs/Module/Setup.php:538 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." -msgstr "Comando completato." +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." -msgstr "Grazie." +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Create New" -msgstr "Crea nuova" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:211 -msgid "Channel Manager" -msgstr "Gestione canali" +#: ../../Zotlabs/Module/Setup.php:567 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canale attuale" +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Seleziona l'altro canale a cui vuoi passare." +#: ../../Zotlabs/Module/Setup.php:584 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canale predefinito" +#: ../../Zotlabs/Module/Setup.php:585 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Rendi predefinito" +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." -#: ../../Zotlabs/Module/Manage.php:172 +#: ../../Zotlabs/Module/Setup.php:587 #, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." -#: ../../Zotlabs/Module/Manage.php:173 +#: ../../Zotlabs/Module/Setup.php:590 #, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canale delegato" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." +msgid "%s is writable" +msgstr "%s è scrivibile" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." +#: ../../Zotlabs/Module/Setup.php:606 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" +msgstr "l'archivio è scrivibile" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "Nome link" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "Azione del link o del sottomenu" +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "Ordine dell'elenco" +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" -msgstr "Salva e termina" +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "Salva e continua" +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "Menu:" +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "Destinazione link" +#: ../../Zotlabs/Module/Setup.php:671 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "Modifica il menù" +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "Modifica l'elemento" +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " +msgstr "

    I prossimi passi

    " -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "Elimina l'elemento" +#: ../../Zotlabs/Module/Setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "Nuovo elemento" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Inviato!" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visibile a" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor di configurazione" -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "Testo del link" +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." -#: ../../Zotlabs/Module/Item.php:180 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "App" -#: ../../Zotlabs/Module/Item.php:433 -msgid "Empty post discarded." -msgstr "Il post vuoto è stato ignorato." +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versione %s" -#: ../../Zotlabs/Module/Item.php:473 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "App e componenti installati:" -#: ../../Zotlabs/Module/Item.php:858 -msgid "Duplicate post suppressed." -msgstr "I post duplicati sono scartati." +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Nessuna app o componente installato" -#: ../../Zotlabs/Module/Item.php:991 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Post non salvato." +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " -#: ../../Zotlabs/Module/Item.php:1112 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare il post dal database." +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Tag: " -#: ../../Zotlabs/Module/Item.php:1119 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Ultima acquisizione:" -#: ../../Zotlabs/Module/Item.php:1126 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Carico medio attuale:" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "In esecuzione sull'indirizzo web" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Per segnalare bug e problemi: visita" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "Problematiche note su $projectname" -#: ../../Zotlabs/Module/Lostpass.php:67 +#: ../../Zotlabs/Module/Siteinfo.php:63 msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 -msgid "Password Reset" -msgstr "Reimposta la password" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Amministratori del sito" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2308 +msgid "Blocks" +msgstr "Block" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La tua nuova password è" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titolo del block" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2310 +msgid "Layouts" +msgstr "Layout" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "clicca qui per accedere" +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:164 ../../include/help.php:44 +#: ../../include/help.php:49 +msgid "Help" +msgstr "Guida" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Guida di Comanche Page Description Language" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Descrizione del layout" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "Scarica il file PDL" -#: ../../Zotlabs/Module/Lostpass.php:128 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: ../../Zotlabs/Module/Profile_photo.php:186 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." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Indirizzo email" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reimposta" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permesso negato." -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s è %2$s" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 +msgid "Import" +msgstr "Importa" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Umore" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Nessun canale." -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Contatti in comune" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profilo non trovato." +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Nessun contatto in comune." -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilo eliminato." +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "rete" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profilo-" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" + +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 +msgid "Public Hubs" +msgstr "Hub pubblici" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "URL del hub" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Il profilo non è disponibile per l'export." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo di accesso" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Politica di registrazione" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Stato sentimentale" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiche" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Partner affettivo" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" +msgstr "Valuta" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Layout aggiornato." -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Lavoro/impiego" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religione" +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." +msgstr "Layout non trovato." -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Sesso" +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" +msgstr "Nome del modulo:" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" +msgstr "Guida al layout" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Home page" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Non è possibile accedere alle informazioni sul contatto." -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interessi" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilo aggiornato." +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Contatto aggiornato." -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Impossibile aggiornare le informazioni del contatto." -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "ha come nuovo contatto" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Guarda questo profilo" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "Impossibile accedere alle informazioni della rubrica." -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" -msgstr "Cambia la visibilità" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Il canale non è disponibile - impossibile aggiornare." -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Gestione del profilo" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "Impossibile impostare i parametri della rubrica." -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Cambia la copertina del canale" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "Il contatto è stato rimosso." -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:89 ../../include/conversation.php:955 +msgid "View Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "Guarda il profilo di %s" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clona questo profilo" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Elimina questo profilo" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Guarda e modifica i permessi assegnati" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Aggiungi oggetti al profilo" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1559 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personali" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Leggi i post recenti e i commenti" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relazione" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Altro" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "Questa connessione è tra quelle bloccate!" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importa il profilo da un file" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Non ignorare" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Esporta il profilo in un file" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Sesso" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "Questa connessione è tra quelle ignorate!" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Stato civile" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Non archiviare" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archivia" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nome del profilo" +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Questo è il tuo profilo predefinito." +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "Questa connessione è tra quelle archiviate!" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Il tuo nome completo" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "Non nascondere" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Titolo/descrizione" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Nascondi" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Indirizzo (via/piazza)" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Località" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "Questa connessione è tra quelle nascoste!" + +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Elimina questo contatto" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Regione/stato" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 +msgid "Me" +msgstr "Me" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "CAP" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 +msgid "Family" +msgstr "Famiglia" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Nazione" +#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Settings/Channel.php:61 +#: ../../Zotlabs/Module/Settings/Channel.php:65 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:80 +#: ../../include/selectors.php:123 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/widgets.php:531 +msgid "Friends" +msgstr "Amici" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Con chi (se possibile)" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 +msgid "Acquaintances" +msgstr "Conoscenti" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "dal (data)" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Entra in contatto per poter comunicare" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Raccontaci di te..." +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Scegli l'affinità" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Indirizzo home page" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Scegli il profilo da mostrare" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Città dove vivo" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Affinità e profilo" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "--" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Orientamento religioso" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 +msgid "Connection Default Permissions" +msgstr "Permessi predefiniti dei nuovi contatti" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Parole chiavi mostrate nell'elenco dei canali" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Applica automaticamente questi permessi" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Interessi musicali" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Le richieste di entrare in contatto saranno approvate in automatico" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Libri, letteratura" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "Indirizzo primario di questo canale" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisione" +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Indirizzi disponibili" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film, danza, cultura, intrattenimento" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Gestione dei contatti" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Amore" +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Trascina per restringere il grado di amicizia da mostrare" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Scuola/educazione" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Trascina per cambiare la tua valutazione" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Contatti e social network" +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Commento facoltativo" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "I miei altri canali" +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Filtro personalizzato" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" -msgstr "Immagine del profilo" +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Importa solo i post che contengono queste parole chiave" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 -#: ../../include/nav.php:91 -msgid "Edit Profiles" -msgstr "Modifica i tuoi profili" +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "Non importare i post con queste parole chiave" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "Questa informazione è pubblica!" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Contatti in attesa di approvazione" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." +#: ../../Zotlabs/Module/Connedit.php:778 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" +msgstr "derivato" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessi personali:" +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Their Settings" +msgstr "Permessi concessi a te" -#: ../../Zotlabs/Module/Webpages.php:52 -msgid "Import Webpage Elements" -msgstr "Importa gli elementi della pagina web" +#: ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "My Settings" +msgstr "Permessi che concedo" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import selected" -msgstr "Importa i selezionati" +#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 +msgid "Individual Permissions" +msgstr "Permessi individuali" -#: ../../Zotlabs/Module/Webpages.php:76 -msgid "Export Webpage Elements" -msgstr "Esporta gli elementi della pagina web" +#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." -#: ../../Zotlabs/Module/Webpages.php:77 -msgid "Export selected" -msgstr "Esporta i selezionati" +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." -#: ../../Zotlabs/Module/Webpages.php:235 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/conversation.php:1720 ../../include/nav.php:109 -msgid "Webpages" -msgstr "Pagine web" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" -#: ../../Zotlabs/Module/Webpages.php:244 ../../Zotlabs/Module/Events.php:680 -#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Guarda" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Scegli una cartella di segnalibri" -#: ../../Zotlabs/Module/Webpages.php:246 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Azioni" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Salva segnalibro" -#: ../../Zotlabs/Module/Webpages.php:247 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL del segnalibro" -#: ../../Zotlabs/Module/Webpages.php:248 -msgid "Page Title" -msgstr "Titolo della pagina" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O inserisci il nome di una nuova cartella di segnalibri" -#: ../../Zotlabs/Module/Webpages.php:278 -msgid "Invalid file type." -msgstr "Tipo di file non valido." +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "Questo non è un directory server" -#: ../../Zotlabs/Module/Webpages.php:290 -msgid "Error opening zip file" -msgstr "Errore nell'apertura del file zip" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Autenticazione fallita." -#: ../../Zotlabs/Module/Webpages.php:301 -msgid "Invalid folder path." -msgstr "La cartella indicata non è valida." +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Accedi tramite il tuo hub" -#: ../../Zotlabs/Module/Webpages.php:328 -msgid "No webpage elements detected." -msgstr "Nella pagina web non sono presenti elementi." +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" -#: ../../Zotlabs/Module/Webpages.php:403 -msgid "Import complete." -msgstr "Importazione completata." +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Accedi" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Le voci del calendario sono state importate." +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Effettua l'accesso." -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Non sono state trovate voci del calendario." +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Un evento non può terminare prima del suo inizio." +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Elimina questo account" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Impossibile creare un'anteprima." +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " +msgstr "ATTENZIONE:" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento non trovato." +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" +msgstr "Questo comando è definitivo e non può essere annullato!" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit event title" -msgstr "Modifica il titolo dell'evento" +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Event title" -msgstr "Titolo dell'evento" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." -#: ../../Zotlabs/Module/Events.php:454 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete." -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit Category" -msgstr "Modifica la categoria" +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:128 +msgid "Remove Account" +msgstr "Elimina l'account" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Category" -msgstr "Categoria" +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit start date and time" -msgstr "Modifica data/ora di inizio" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Start date and time" -msgstr "Data e ora di inizio" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Questo canale sarà completamente eliminato dalla rete." -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 -msgid "Finish date and time are not known or not relevant" -msgstr "La data e l'ora di fine non sono necessarie" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit finish date and time" -msgstr "Modifica data/ora di fine" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Finish date and time" -msgstr "Data e ora di fine" +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "Remove Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Esporta il canale" -#: ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." - -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Description" -msgstr "Modifica la descrizione" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." -#: ../../Zotlabs/Module/Events.php:467 -msgid "Edit Location" -msgstr "Modifica il luogo" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Esporta i contenuti" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 -msgid "Share this event" -msgstr "Condividi questo evento" +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 -msgid "Permission settings" -msgstr "Permessi dei tuoi contatti" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Esporta i tuoi post a partire dall'anno scelto." -#: ../../Zotlabs/Module/Events.php:485 -msgid "Advanced Options" -msgstr "Opzioni avanzate" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." -#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " -#: ../../Zotlabs/Module/Events.php:619 -msgid "Edit event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" -#: ../../Zotlabs/Module/Events.php:621 -msgid "Delete event" -msgstr "Elimina l'evento" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)" -#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1716 -msgid "Link to Source" -msgstr "Link al sito d'origine" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" -#: ../../Zotlabs/Module/Events.php:655 -msgid "calendar" -msgstr "calendario" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Risultati ricerca: %s" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crea un evento" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Esporta" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Post e commenti" -#: ../../Zotlabs/Module/Events.php:681 -msgid "Month" -msgstr "Mese" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Solo post" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" -msgstr "Settimana" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" -msgstr "Giorno" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Non esistono restrizioni su questa classe di account." -#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Oggi" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "L'oggetto è stato aggiornato" -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" -msgstr "Evento eliminato" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Impossibile memorizzare l'oggetto." -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" -msgstr "Impossibile eliminare l'evento" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "L'Oggetto è stato aggiunto" -#: ../../Zotlabs/Module/Import.php:33 +#: ../../Zotlabs/Module/Thing.php:196 #, php-format -msgid "Your service plan only allows %d channels." -msgstr "Il tuo account permette di creare al massimo %d canali." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Nessun canale. Import fallito." +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostra l'oggetto" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'importazione è terminata con successo." +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "non trovato." -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Modifica l'oggetto" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canale" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" +msgstr "Scegli un profilo" -#: ../../Zotlabs/Module/Import.php:548 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" +msgstr "Pubblica un'attività" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio hub" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" +msgstr "Invia solo a chi può vedere il profilo scelto" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" +msgstr "Nome dell'oggetto" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio hub" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" +msgstr "Indirizzo web dell'oggetto (facoltativo)" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La password per il vecchio hub" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" +msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" -#: ../../Zotlabs/Module/Import.php:554 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" +msgstr "Aggiungi l'oggetto al tuo profilo" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Rendi questo hub il mio indirizzo primario" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Questo directory server necessita di un token di autenticazione" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "File: condivisi con me" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NOVITÀ" -#: ../../Zotlabs/Module/New_channel.php:140 -msgid "Create Channel" -msgstr "Crea un canale" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Elimina tutti i file" -#: ../../Zotlabs/Module/New_channel.php:141 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Elimina questo file" -#: ../../Zotlabs/Module/New_channel.php:142 -msgid "" -"or import an existing channel from another location." -msgstr "oppure importa un canale esistente da un altro server/hub." +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Non trovato" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:111 ../../include/conversation.php:1734 +#: ../../include/conversation.php:1737 ../../include/features.php:57 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Sandbox" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\"" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[oggi]" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Confronto tra revisioni" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Ripristina" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Nome della tua nuova pagina wiki:" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Rifiuta" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Nome della tua nuova pagina:" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Nuovo nome:" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:961 -msgid "Poke" -msgstr "Poke" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" +msgstr "Inserisci un'immagine dall'album foto" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Manda un poke" +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1246 +msgid "Embed an image from your albums" +msgstr "Inserisci un'immagine dai tuoi album" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1248 +#: ../../include/conversation.php:1295 +msgid "OK" +msgstr "OK" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Manda un poke o altro a qualcuno" +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" +msgstr "Scegli le immagini da inserire" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" +msgstr "Scegli un album" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." +msgstr "Scegli un altro album..." -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendi privato questo post" +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" +msgstr "Errore nell'ottenere l'elenco degli album" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" +msgstr "Errore nell'ottenere il link alla foto" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Inviato!" +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" +msgstr "Errore nell'ottenere l'album" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Impossibile creare la sorgente. Nessun canale selezionato." -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Sorgente creata." -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 -msgid "Profile" -msgstr "Profilo" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Sorgente aggiornata." -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visibile a" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:672 +#: ../../include/features.php:70 +msgid "Channel Sources" +msgstr "Sorgenti del canale" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gestisci le sorgenti dei contenuti del tuo canale." -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor di configurazione" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nuova sorgente" -#: ../../Zotlabs/Module/Pconfig.php:49 +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1384 -msgid "Public Hubs" -msgstr "Hub pubblici" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" -#: ../../Zotlabs/Module/Pubsites.php:27 +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Lascia vuoto per importare tutti i contenuti pubblici" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nome del canale" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "URL del hub" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +msgid "Optional" +msgstr "Facoltativo" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Tipo di accesso" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Sorgente non trovata." -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Politica di registrazione" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Modifica la sorgente" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Statistiche" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Elimina la sorgente" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Sorgente eliminata" -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:960 -msgid "Ratings" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Impossibile rimuovere la sorgente." -#: ../../Zotlabs/Module/Pubsites.php:43 -msgid "Rate" -msgstr "Valuta" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Subthread.php:120 #, php-format -msgid "Version %s" -msgstr "Versione %s" +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s non segue più %3$s di %2$s" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti installati:" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente installato" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "il post" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1999 +msgid "comment" +msgstr "il commento" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Ultima acquisizione:" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carico medio attuale:" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag rimosso" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problematiche note su $projectname" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../Zotlabs/Module/Siteinfo.php:63 +#: ../../Zotlabs/Module/Photos.php:112 +msgid "Delete Album" +msgstr "Elimina album" + +#: ../../Zotlabs/Module/Photos.php:133 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Amministratori del sito" +#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 -msgid "Blocks" -msgstr "Block" +#: ../../Zotlabs/Module/Photos.php:520 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titolo del block" +#: ../../Zotlabs/Module/Photos.php:569 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 -msgid "Layouts" -msgstr "Layout" +#: ../../Zotlabs/Module/Photos.php:608 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Help.php:86 -#: ../../Zotlabs/Module/Help.php:91 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:164 -msgid "Help" -msgstr "Guida" +#: ../../Zotlabs/Module/Photos.php:611 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Guida di Comanche Page Description Language" +#: ../../Zotlabs/Module/Photos.php:647 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Descrizione del layout" +#: ../../Zotlabs/Module/Photos.php:651 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Scarica il file PDL" +#: ../../Zotlabs/Module/Photos.php:652 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" -#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Photos.php:653 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Sito web:" +#: ../../Zotlabs/Module/Photos.php:654 +msgid "Caption (optional):" +msgstr "Titolo (facoltativo):" -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" +#: ../../Zotlabs/Module/Photos.php:655 +msgid "Description (optional):" +msgstr "Descrizione (facoltativa):" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" +#: ../../Zotlabs/Module/Photos.php:686 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" +#: ../../Zotlabs/Module/Photos.php:734 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." +#: ../../Zotlabs/Module/Photos.php:757 +msgid "Show Newest First" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" +#: ../../Zotlabs/Module/Photos.php:759 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 +msgid "View Photo" +msgstr "Guarda la foto" -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 -msgid "Import" -msgstr "Importa" +#: ../../Zotlabs/Module/Photos.php:814 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Nessun canale." +#: ../../Zotlabs/Module/Photos.php:861 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contatti in comune" +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Nessun contatto in comune." +#: ../../Zotlabs/Module/Photos.php:921 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." +#: ../../Zotlabs/Module/Photos.php:922 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Private Photo" +msgstr "Foto privata" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." +#: ../../Zotlabs/Module/Photos.php:944 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" +msgstr "Modifica la foto" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Messaggi" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Messaggio revocato." +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Move photo to album" +msgstr "Sposta la foto in un album" -#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Il canale cercato non è in questa rete" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "Didascalia" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "A:" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Oggetto:" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1239 -msgid "Attach file" -msgstr "Allega file" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Invia" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1284 -msgid "Set expiration date" -msgstr "Data di scadenza" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Attendere" -#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 -#: ../../include/conversation.php:1289 -msgid "Encrypt text" -msgstr "Cifratura del messaggio" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:709 +msgid "This is you" +msgstr "Questo sei tu" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina il messaggio" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapporto di trasmissione" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revoca il messaggio" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Elimina la conversazione" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Invia la risposta" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Il tuo messaggio per %s (%s):" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Nessuna valutazione" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Valutazione:" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1762 +msgid "View all" +msgstr "Vedi tutto" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Sito web:" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1786 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Non è possibile accedere alle informazioni sul contatto." +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "Gestione foto" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "In questa foto:" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." -msgstr "Contatto aggiornato." +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "Mappa" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." -msgstr "Impossibile aggiornare le informazioni del contatto." +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" -msgstr "ha come nuovo contatto" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Connedit.php:440 -msgid "Could not access address book record." -msgstr "Impossibile accedere alle informazioni della rubrica." +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "Chiudi" -#: ../../Zotlabs/Module/Connedit.php:460 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Il canale non è disponibile - impossibile aggiornare." +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "Guarda l'album" -#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 -#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 -#: ../../Zotlabs/Module/Connedit.php:515 -msgid "Unable to set address book parameters." -msgstr "Impossibile impostare i parametri della rubrica." +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../Zotlabs/Module/Connedit.php:538 -msgid "Connection has been removed." -msgstr "Il contatto è stato rimosso." +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canale aggiunto." -#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/conversation.php:955 ../../include/nav.php:89 -msgid "View Profile" -msgstr "Profilo" +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Nessun contatto." -#: ../../Zotlabs/Module/Connedit.php:557 +#: ../../Zotlabs/Module/Viewconnections.php:78 #, php-format -msgid "View %s's profile" -msgstr "Guarda il profilo di %s" +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" -#: ../../Zotlabs/Module/Connedit.php:561 -msgid "Refresh Permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" +msgstr "Elenco contatti" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Fetch updated permissions" -msgstr "Guarda e modifica i permessi assegnati" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Sorgente" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Recent Activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chat non trovata" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "View recent posts and comments" -msgstr "Leggi i post recenti e i commenti" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Lascia la chat" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Elimina questa chat" -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "This connection is blocked!" -msgstr "Questa connessione è tra quelle bloccate!" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Non sono presente" -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Unignore" -msgstr "Non ignorare" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Sono online" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Aggiungi questa chat ai segnalibri" -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "This connection is ignored!" -msgstr "Questa connessione è tra quelle ignorate!" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Nuova chat" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Unarchive" -msgstr "Non archiviare" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Nome chat" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Archive" -msgstr "Archivia" +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Scadenza dei messaggi della chat (minuti)" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "This connection is archived!" -msgstr "Questa connessione è tra quelle archiviate!" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "Nessuna chat disponibile" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Unhide" -msgstr "Non nascondere" +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Scadenza" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Hide" -msgstr "Nascondi" +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Ricerca canale" -#: ../../Zotlabs/Module/Connedit.php:603 -msgid "This connection is hidden!" -msgstr "Questa connessione è tra quelle nascoste!" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Cerca un canale (o un webbie) che inizia per:" -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Delete this connection" -msgstr "Elimina questo contatto" +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# Accounts" +msgstr "# account" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 -msgid "Me" -msgstr "Me" +#: ../../Zotlabs/Module/Admin.php:98 +msgid "# blocked accounts" +msgstr "# account bloccati" -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 -msgid "Family" -msgstr "Famiglia" +#: ../../Zotlabs/Module/Admin.php:99 +msgid "# expired accounts" +msgstr "# account scaduti" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 -msgid "Acquaintances" -msgstr "Conoscenti" +#: ../../Zotlabs/Module/Admin.php:100 +msgid "# expiring accounts" +msgstr "# account in scadenza" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Approve this connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Admin.php:111 +msgid "# Channels" +msgstr "# canali" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Accept connection to allow communication" -msgstr "Entra in contatto per poter comunicare" +#: ../../Zotlabs/Module/Admin.php:112 +msgid "# primary" +msgstr "# primari" -#: ../../Zotlabs/Module/Connedit.php:691 -msgid "Set Affinity" -msgstr "Scegli l'affinità" +#: ../../Zotlabs/Module/Admin.php:113 +msgid "# clones" +msgstr "# cloni" -#: ../../Zotlabs/Module/Connedit.php:694 -msgid "Set Profile" -msgstr "Scegli il profilo da mostrare" +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Message queues" +msgstr "Coda messaggi in uscita" -#: ../../Zotlabs/Module/Connedit.php:697 -msgid "Set Affinity & Profile" -msgstr "Affinità e profilo" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" +msgstr "Il tuo software necessita di un aggiornamento" -#: ../../Zotlabs/Module/Connedit.php:746 -msgid "none" -msgstr "--" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" +msgstr "Riepilogo" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 -msgid "Connection Default Permissions" -msgstr "Permessi predefiniti dei nuovi contatti" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" +msgstr "Account creati" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 -#, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Apply these permissions automatically" -msgstr "Applica automaticamente questi permessi" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" +msgstr "Canali creati" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Connection requests will be approved without your interaction" -msgstr "Le richieste di entrare in contatto saranno approvate in automatico" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "This connection's primary address is" -msgstr "Indirizzo primario di questo canale" +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" +msgstr "Versione" -#: ../../Zotlabs/Module/Connedit.php:754 -msgid "Available locations:" -msgstr "Indirizzi disponibili" +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" +msgstr "Versione del repository (master)" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" +msgstr "Versione del repository (dev)" -#: ../../Zotlabs/Module/Connedit.php:759 -msgid "Connection Tools" -msgstr "Gestione dei contatti" +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Email non valida." -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Slide to adjust your degree of friendship" -msgstr "Trascina per restringere il grado di amicizia da mostrare" +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." +msgstr "È un indirizzo email riservato. Non puoi sceglierlo." -#: ../../Zotlabs/Module/Connedit.php:763 -msgid "Slide to adjust your rating" -msgstr "Trascina per cambiare la tua valutazione" +#: ../../Zotlabs/Module/Settings/Account.php:32 +msgid "System failure storing new email. Please try again." +msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." -#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 -msgid "Optionally explain your rating" -msgstr "Commento facoltativo" +#: ../../Zotlabs/Module/Settings/Account.php:40 +msgid "Technical skill level updated" +msgstr "Livello tecnico aggiornato" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Custom Filter" -msgstr "Filtro personalizzato" +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "Verifica della password fallita." + +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Only import posts with this text" -msgstr "Importa solo i post che contengono queste parole chiave" +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." +msgstr "Password cambiata." -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Do not import posts with this text" -msgstr "Non importare i post con queste parole chiave" +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." +msgstr "Modifica password fallita. Prova ancora." -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "This information is public!" -msgstr "Questa informazione è pubblica!" +#: ../../Zotlabs/Module/Settings/Account.php:120 +msgid "Account Settings" +msgstr "Il tuo account" -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Connection Pending Approval" -msgstr "Contatti in attesa di approvazione" +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Current Password" +msgstr "Password attuale" -#: ../../Zotlabs/Module/Connedit.php:780 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." +#: ../../Zotlabs/Module/Settings/Account.php:122 +msgid "Enter New Password" +msgstr "Nuova password" -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Confirm New Password" +msgstr "Conferma la nuova password" -#: ../../Zotlabs/Module/Connedit.php:788 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Leave password fields blank unless changing" +msgstr "Lascia vuoti questi campi per non cambiare la password" -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Ricerca nella guida" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Your technical skill level" +msgstr "Il tuo livello tecnico" -#: ../../Zotlabs/Module/Help.php:68 ../../Zotlabs/Module/Help.php:74 -#: ../../Zotlabs/Module/Help.php:80 -msgid "Help:" -msgstr "Guida:" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Used to provide a member experience matched to your comfort level" +msgstr "Serve a vedere solo gli aspetti tecnici adeguati alle tue conoscenze" -#: ../../Zotlabs/Module/Help.php:121 -msgid "$Projectname Documentation" -msgstr "Guida di $Projectname" +#: ../../Zotlabs/Module/Settings/Account.php:127 +#: ../../Zotlabs/Module/Settings/Channel.php:459 +msgid "Email Address:" +msgstr "Indirizzo email:" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continua" +#: ../../Zotlabs/Module/Settings/Account.php:129 +msgid "Remove this account including all its channels" +msgstr "Elimina questo account e tutti i suoi canali" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Canale premium - configurazione" +#: ../../Zotlabs/Module/Settings/Channel.php:246 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" +#: ../../Zotlabs/Module/Settings/Channel.php:307 +msgid "Nobody except yourself" +msgstr "Nessuno tranne te" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." +#: ../../Zotlabs/Module/Settings/Channel.php:308 +msgid "Only those you specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" +#: ../../Zotlabs/Module/Settings/Channel.php:309 +msgid "Approved connections" +msgstr "Contatti approvati" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" +#: ../../Zotlabs/Module/Settings/Channel.php:310 +msgid "Any connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." +#: ../../Zotlabs/Module/Settings/Channel.php:311 +msgid "Anybody on this website" +msgstr "Chiunque su questo hub" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" +#: ../../Zotlabs/Module/Settings/Channel.php:312 +msgid "Anybody in this network" +msgstr "Chiunque su questa rete" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" +#: ../../Zotlabs/Module/Settings/Channel.php:313 +msgid "Anybody authenticated" +msgstr "Chiunque abbia effettuato l'accesso" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Scegli una cartella di segnalibri" +#: ../../Zotlabs/Module/Settings/Channel.php:314 +msgid "Anybody on the internet" +msgstr "Chiunque su internet" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Salva segnalibro" +#: ../../Zotlabs/Module/Settings/Channel.php:390 +msgid "Publish your default profile in the network directory" +msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL del segnalibro" +#: ../../Zotlabs/Module/Settings/Channel.php:395 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Vuoi essere suggerito come amico ai nuovi membri?" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O inserisci il nome di una nuova cartella di segnalibri" +#: ../../Zotlabs/Module/Settings/Channel.php:404 +msgid "Your channel address is" +msgstr "L'indirizzo del tuo canale è" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Autenticazione fallita." +#: ../../Zotlabs/Module/Settings/Channel.php:450 +msgid "Channel Settings" +msgstr "Impostazioni del canale" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" -msgstr "Accedi tramite il tuo hub" +#: ../../Zotlabs/Module/Settings/Channel.php:457 +msgid "Basic Settings" +msgstr "Impostazioni di base" -#: ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" +#: ../../Zotlabs/Module/Settings/Channel.php:458 +#: ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Nome completo:" -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" -msgstr "Accedi" +#: ../../Zotlabs/Module/Settings/Channel.php:460 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Effettua l'accesso." +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Default Post Location:" +msgstr "Località predefinita:" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Geographical location to display on your posts" +msgstr "La posizione geografica da mostrare sui tuoi post" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Elimina questo account" +#: ../../Zotlabs/Module/Settings/Channel.php:462 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "ATTENZIONE:" +#: ../../Zotlabs/Module/Settings/Channel.php:464 +msgid "Adult Content" +msgstr "Contenuto per adulti" -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Settings/Channel.php:464 msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "Questo comando è definitivo e non può essere annullato!" +#: ../../Zotlabs/Module/Settings/Channel.php:466 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" +#: ../../Zotlabs/Module/Settings/Channel.php:469 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Hide my online presence" +msgstr "Nascondi la mia presenza online" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Prevents displaying in your profile that you are online" +msgstr "Non mostrare sul tuo profilo quando sei online" + +#: ../../Zotlabs/Module/Settings/Channel.php:473 +msgid "Simple Privacy Settings:" +msgstr "Impostazioni di privacy semplificate" + +#: ../../Zotlabs/Module/Settings/Channel.php:474 msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete." +"Very Public - extremely permissive (should be used with caution)" +msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Settings/Channel.php:475 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Settings/Channel.php:476 +msgid "Private - default private, never open or public" +msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Questo canale sarà completamente eliminato dalla rete." +#: ../../Zotlabs/Module/Settings/Channel.php:477 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" +#: ../../Zotlabs/Module/Settings/Channel.php:479 +msgid "Allow others to tag your posts" +msgstr "Permetti ad altri di taggare i tuoi post" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings/Channel.php:479 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" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Esporta il canale" +#: ../../Zotlabs/Module/Settings/Channel.php:481 +msgid "Channel Permission Limits" +msgstr "Limiti sui permessi del canale" -#: ../../Zotlabs/Module/Uexport.php:57 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "Expire other channel content after this many days" +msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" + +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "0 or blank to use the website limit." +msgstr "0 o vuoto per usare i valori predefiniti." -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Esporta i contenuti" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +#, php-format +msgid "This website expires after %d days." +msgstr "Per questo sito la scadenza è %d giorni. " -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "This website does not expire imported content." +msgstr "I contenuti di questo sito non hanno scadenza." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Esporta i tuoi post a partire dall'anno scelto." +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo giornaliero di richieste di amicizia:" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "May reduce spam activity" +msgstr "Serve a ridurre lo spam" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "Default Access Control List (ACL)" +msgstr "Lista di accesso ai contenuti (ACL)" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)" +#: ../../Zotlabs/Module/Settings/Channel.php:487 +msgid "Use my default audience setting for the type of object published" +msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" +#: ../../Zotlabs/Module/Settings/Channel.php:494 +msgid "Channel permissions category:" +msgstr "Categorie di permessi dei canali:" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Risultati ricerca: %s" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Useful to reduce spamming" +msgstr "Serve e ridurre lo spam" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Non esistono restrizioni su questa classe di account." +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Notification Settings" +msgstr "Impostazioni di notifica" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "L'oggetto è stato aggiornato" +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "By default post a status message when:" +msgstr "Pubblica un messaggio di stato quando:" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Impossibile memorizzare l'oggetto." +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "accepting a friend request" +msgstr "accetto una nuova amicizia" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "L'Oggetto è stato aggiunto" +#: ../../Zotlabs/Module/Settings/Channel.php:506 +msgid "joining a forum/community" +msgstr "entro a far parte di un forum" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "making an interesting profile change" +msgstr "faccio un cambiamento interessante al mio profilo" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostra l'oggetto" +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "Send a notification email when:" +msgstr "Invia una email di notifica quando:" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "non trovato." +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "You receive a connection request" +msgstr "Ricevi una richiesta di entrare in contatto" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Modifica l'oggetto" +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "Your connections are confirmed" +msgstr "I tuoi contatti sono confermati" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" -msgstr "Scegli un profilo" +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla tua bacheca" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" -msgstr "Pubblica un'attività" +#: ../../Zotlabs/Module/Settings/Channel.php:512 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento dopo di te" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Only sends to viewers of the applicable profile" -msgstr "Invia solo a chi può vedere il profilo scelto" +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" -msgstr "Nome dell'oggetto" +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "You receive a friend suggestion" +msgstr "Ti viene suggerito un amico" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" -msgstr "Indirizzo web dell'oggetto (facoltativo)" +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "You are tagged in a post" +msgstr "Sei taggato in un post" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 -msgid "URL for photo of thing (optional)" -msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "You are poked/prodded/etc. in a post" +msgstr "Ricevi un poke in un post" -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" -msgstr "Aggiungi l'oggetto al tuo profilo" +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Show visual notifications including:" +msgstr "Mostra queste notifiche a schermo:" -#: ../../Zotlabs/Module/Apps.php:46 ../../include/widgets.php:102 -#: ../../include/nav.php:168 -msgid "Apps" -msgstr "App" +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Unseen grid activity" +msgstr "Nuove attività nella rete" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "File: condivisi con me" +#: ../../Zotlabs/Module/Settings/Channel.php:522 +msgid "Unseen channel activity" +msgstr "Novità nei canali" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NOVITÀ" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Unseen private messages" +msgstr "Nuovi messaggi privati" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Elimina tutti i file" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Recommended" +msgstr "Consigliato" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Elimina questo file" +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Upcoming events" +msgstr "Prossimi eventi" -#: ../../Zotlabs/Module/Wiki.php:20 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Events today" +msgstr "Eventi di oggi" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Non trovato" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Upcoming birthdays" +msgstr "Prossimi compleanni" -#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/conversation.php:1730 ../../include/conversation.php:1733 -#: ../../include/features.php:57 ../../include/nav.php:111 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Not available in all themes" +msgstr "Non disponibile in tutti i temi" -#: ../../Zotlabs/Module/Wiki.php:98 -msgid "Sandbox" -msgstr "Sandbox" +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "System (personal) notifications" +msgstr "Notifiche personali dal sistema" -#: ../../Zotlabs/Module/Wiki.php:100 -msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\"" +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "System info messages" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Wiki.php:169 -msgid "Revision Comparison" -msgstr "Confronto tra revisioni" +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "System critical alerts" +msgstr "Avvisi critici di sistema" -#: ../../Zotlabs/Module/Wiki.php:170 -msgid "Revert" -msgstr "Ripristina" +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "New connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Wiki.php:201 -msgid "Enter the name of your new wiki:" -msgstr "Nome della tua nuova pagina wiki:" +#: ../../Zotlabs/Module/Settings/Channel.php:531 +msgid "System Registrations" +msgstr "Registrazioni" -#: ../../Zotlabs/Module/Wiki.php:202 -msgid "Enter the name of the new page:" -msgstr "Nome della tua nuova pagina:" +#: ../../Zotlabs/Module/Settings/Channel.php:532 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Enter the new name:" -msgstr "Nuovo nome:" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Notify me of events this many days in advance" +msgstr "Giorni di anticipo per notificare gli eventi" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 -msgid "Embed image from photo albums" -msgstr "Inserisci un'immagine dall'album foto" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Must be greater than 0" +msgstr "Maggiore di 0" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 -msgid "Embed an image from your albums" -msgstr "Inserisci un'immagine dai tuoi album" +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate" -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 -#: ../../include/conversation.php:1291 -msgid "OK" -msgstr "OK" +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambia il funzionamento di questo account per necessità particolari" -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 -msgid "Choose images to embed" -msgstr "Scegli le immagini da inserire" +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Miscellaneous Settings" +msgstr "Impostazioni varie" -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 -msgid "Choose an album" -msgstr "Scegli un album" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default photo upload folder" +msgstr "Cartella predefinita per le foto caricate" -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 -msgid "Choose a different album..." -msgstr "Scegli un altro album..." +#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "%Y - current year, %m - current month" +msgstr "%Y - anno corrente, %m - mese corrente" -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 -msgid "Error getting album list" -msgstr "Errore nell'ottenere l'elenco degli album" +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "Default file upload folder" +msgstr "Cartella predefinita per i file caricati" -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 -msgid "Error getting photo link" -msgstr "Errore nell'ottenere il link alla foto" +#: ../../Zotlabs/Module/Settings/Channel.php:543 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personale da mostrare sulle pagine del tuo canale" -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 -msgid "Error getting album" -msgstr "Errore nell'ottenere l'album" +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "Remove this channel." +msgstr "Elimina questo canale." -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Firefox Share $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Sorgente creata." +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "Start calendar week on monday" +msgstr "La settimana inizia il lunedì" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Sorgente aggiornata." +#: ../../Zotlabs/Module/Settings/Display.php:135 +msgid "No special theme for mobile devices" +msgstr "Nessun tema per dispositivi mobili" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Sperimentale)" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:70 -#: ../../include/widgets.php:672 -msgid "Channel Sources" -msgstr "Sorgenti del canale" +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Display Settings" +msgstr "Aspetto" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Theme Settings" +msgstr "Impostazioni del tema" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nuova sorgente" +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Custom Theme Settings" +msgstr "Personalizzazione del tema" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Content Settings" +msgstr "Impostazioni dei contenuti" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Display Theme:" +msgstr "Tema per schermi medio grandi:" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Lascia vuoto per importare tutti i contenuti pubblici" +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Select scheme" +msgstr "Scegli uno schema" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nome del canale" +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Mobile Theme:" +msgstr "Tema per dispositivi mobili:" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Preload images before rendering the page" +msgstr "Carica le immagini prima del rendering della pagina" + +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Sorgente non trovata." +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Enable user zoom on mobile devices" +msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Modifica la sorgente" +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Elimina la sorgente" +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Sorgente eliminata" +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum number of conversations to load at any time:" +msgstr "Massimo numero di conversazioni da mostrare ogni volta:" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum of 100 items" +msgstr "Massimo 100" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Show emoticons (smilies) as images" +msgstr "Mostra le faccine (smilies) come immagini" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s non segue più %3$s di %2$s" +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "Link post titles to source" +msgstr "Il link del titolo di un post porta al sito originale" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." +#: ../../Zotlabs/Module/Settings/Display.php:208 +msgid "System Page Layout Editor - (advanced)" +msgstr "Modifica i layout di sistema (avanzato)" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on channel page" +msgstr "Mostra il canale nella modalità blog" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "il post" +#: ../../Zotlabs/Module/Settings/Display.php:211 +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "(comments displayed separately)" +msgstr "(i commenti sono mostrati separatamente)" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "il commento" +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Use blog/list mode on grid page" +msgstr "Mostra la tua rete in modalità blog" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Channel page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti del canale (in pixel)" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag rimosso" +#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "click to expand content exceeding this height" +msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "Grid page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti della tua rete (in pixel)" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: ../../Zotlabs/Module/Settings/Featured.php:24 +msgid "No feature settings configured" +msgstr "Non hai componenti aggiuntivi da personalizzare" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Post e commenti" +#: ../../Zotlabs/Module/Settings/Featured.php:31 +msgid "Feature/Addon Settings" +msgstr "Impostazioni dei componenti aggiuntivi" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo post" +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" +msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." +#: ../../Zotlabs/Module/Settings/Oauth.php:34 +msgid "Name is required" +msgstr "Il nome è obbligatorio" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canale aggiunto." +#: ../../Zotlabs/Module/Settings/Oauth.php:38 +msgid "Key and Secret are required" +msgstr "Key e Secret sono richiesti" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Nessun contatto." +#: ../../Zotlabs/Module/Settings/Oauth.php:86 +#: ../../Zotlabs/Module/Settings/Oauth.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Add application" +msgstr "Aggiungi una app" -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +msgid "Name of application" +msgstr "Nome dell'applicazione" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Elenco contatti" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Sorgente" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chat non trovata" +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Lascia la chat" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Redirect" +msgstr "Redirect" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Elimina questa chat" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Non sono presente" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Icon url" +msgstr "Url icona" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Sono online" +#: ../../Zotlabs/Module/Settings/Oauth.php:104 +msgid "Application not found." +msgstr "Applicazione non trovata." -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Aggiungi questa chat ai segnalibri" +#: ../../Zotlabs/Module/Settings/Oauth.php:147 +msgid "Connected Apps" +msgstr "App connesse" -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" -msgstr "Nuova chat" +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +msgid "Client key starts with" +msgstr "La client key inizia con" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" -msgstr "Nome chat" +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "No name" +msgstr "Nessun nome" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" -msgstr "Scadenza dei messaggi della chat (minuti)" +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "Remove authorization" +msgstr "Revoca l'autorizzazione" + +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Questo canale è limitato a %d token" + +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "Nome e password sono obbligatori." -#: ../../Zotlabs/Module/Chat.php:249 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Le chat di %1$s" +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Token salvato." -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" -msgstr "Nessuna chat disponibile" +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." +msgstr "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" -msgstr "Scadenza" +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:647 +msgid "Guest Access Tokens" +msgstr "Token di accesso ospite" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Ricerca canale" +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Nome utente" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca un canale (o un webbie) che inizia per:" +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Password" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Con scadenza (aaaa-mm-gg)" #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" @@ -6864,7 +6925,7 @@ msgid "Suggest Channels" msgstr "Suggerisci canali" #: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 -#: ../../boot.php:1738 +#: ../../boot.php:1739 msgid "Login" msgstr "Accedi" @@ -6876,8 +6937,8 @@ msgstr "Rete" msgid "Channel Home" msgstr "Bacheca del canale" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1684 -#: ../../include/conversation.php:1687 ../../include/nav.php:206 +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 +#: ../../include/conversation.php:1688 ../../include/conversation.php:1691 msgid "Events" msgstr "Eventi" @@ -6909,7 +6970,7 @@ msgstr "Canale casuale" msgid "Invite" msgstr "Invita" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1527 +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1560 msgid "Features" msgstr "Funzionalità" @@ -7068,108 +7129,332 @@ msgstr "Aggiungi al calendario" msgid "Mark all seen" msgstr "Marca tutto come letto" -#: ../../Zotlabs/Lib/ThreadItem.php:423 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostra tutto" +#: ../../Zotlabs/Lib/ThreadItem.php:423 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mostra tutto" + +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1238 +msgid "Bold" +msgstr "Grassetto" + +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1239 +msgid "Italic" +msgstr "Corsivo" + +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1240 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1241 +msgid "Quote" +msgstr "Citazione" + +#: ../../Zotlabs/Lib/ThreadItem.php:717 ../../include/conversation.php:1242 +msgid "Code" +msgstr "Codice" + +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Image" +msgstr "Immagine" + +#: ../../Zotlabs/Lib/ThreadItem.php:719 +msgid "Insert Link" +msgstr "Collegamento" + +#: ../../Zotlabs/Lib/ThreadItem.php:720 +msgid "Video" +msgstr "Video" + +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Impossibile trovare il nome utente nel file da importare." + +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." + +#: ../../include/dba/dba_driver.php:173 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" + +#: ../../include/network.php:704 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" + +#: ../../include/network.php:1935 ../../include/account.php:326 +#: ../../include/account.php:353 ../../include/account.php:413 +msgid "Administrator" +msgstr "Amministratore" + +#: ../../include/network.php:1949 +msgid "No Subject" +msgstr "Nessun titolo" + +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2205 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2206 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:2207 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2209 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2210 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2211 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2212 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2213 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2214 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Impossibile salvare la foto." + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "una nuova foto" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha pubblicato %2$s su %3$s" + +#: ../../include/photos.php:506 ../../include/conversation.php:1674 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 +msgid "Logout" +msgstr "Esci" + +#: ../../include/nav.php:85 ../../include/nav.php:118 +msgid "End this session" +msgstr "Chiudi questa sessione" + +#: ../../include/nav.php:88 ../../include/nav.php:149 +msgid "Home" +msgstr "Bacheca" + +#: ../../include/nav.php:88 +msgid "Your posts and conversations" +msgstr "I tuoi post e conversazioni" + +#: ../../include/nav.php:89 +msgid "Your profile page" +msgstr "Il tuo profilo" + +#: ../../include/nav.php:91 +msgid "Manage/Edit profiles" +msgstr "Gestisci i tuoi profili" + +#: ../../include/nav.php:93 ../../include/channel.php:963 +msgid "Edit Profile" +msgstr "Modifica il profilo" + +#: ../../include/nav.php:93 +msgid "Edit your profile" +msgstr "Modifica il tuo profilo" + +#: ../../include/nav.php:95 +msgid "Your photos" +msgstr "Le tue foto" + +#: ../../include/nav.php:96 +msgid "Your files" +msgstr "I tuoi file" + +#: ../../include/nav.php:99 +msgid "Your chatrooms" +msgstr "Le tue chat" + +#: ../../include/nav.php:105 ../../include/conversation.php:1714 +msgid "Bookmarks" +msgstr "Segnalibri" + +#: ../../include/nav.php:105 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" + +#: ../../include/nav.php:109 +msgid "Your webpages" +msgstr "Le tue pagine web" + +#: ../../include/nav.php:111 +msgid "Your wiki" +msgstr "La tua wiki" + +#: ../../include/nav.php:115 +msgid "Sign in" +msgstr "Accedi" + +#: ../../include/nav.php:132 +#, php-format +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" + +#: ../../include/nav.php:135 +msgid "Remote authentication" +msgstr "Accedi dal tuo hub" + +#: ../../include/nav.php:135 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per farti riconoscere dal tuo hub principale" + +#: ../../include/nav.php:149 +msgid "Home Page" +msgstr "Bacheca" + +#: ../../include/nav.php:152 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:164 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:168 +msgid "Applications, utilities, links, games" +msgstr "Applicazioni, utilità, link, giochi" + +#: ../../include/nav.php:170 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1234 -msgid "Bold" -msgstr "Grassetto" +#: ../../include/nav.php:172 +msgid "Channel Directory" +msgstr "Elenchi pubblici dei canali" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1235 -msgid "Italic" -msgstr "Corsivo" +#: ../../include/nav.php:184 +msgid "Your grid" +msgstr "La tua rete" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1236 -msgid "Underline" -msgstr "Sottolineato" +#: ../../include/nav.php:185 +msgid "Mark all grid notifications seen" +msgstr "Segna come lette le notifiche della tua rete" -#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1237 -msgid "Quote" -msgstr "Citazione" +#: ../../include/nav.php:187 +msgid "Channel home" +msgstr "Bacheca del canale" -#: ../../Zotlabs/Lib/ThreadItem.php:717 ../../include/conversation.php:1238 -msgid "Code" -msgstr "Codice" +#: ../../include/nav.php:188 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche del canale" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Image" -msgstr "Immagine" +#: ../../include/nav.php:194 +msgid "Notices" +msgstr "Avvisi" -#: ../../Zotlabs/Lib/ThreadItem.php:719 -msgid "Insert Link" -msgstr "Collegamento" +#: ../../include/nav.php:194 +msgid "Notifications" +msgstr "Notifiche" -#: ../../Zotlabs/Lib/ThreadItem.php:720 -msgid "Video" -msgstr "Video" +#: ../../include/nav.php:195 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Impossibile trovare il nome utente nel file da importare." +#: ../../include/nav.php:198 +msgid "Private mail" +msgstr "Messaggi privati" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." +#: ../../include/nav.php:199 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" -#: ../../include/dba/dba_driver.php:173 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +#: ../../include/nav.php:200 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" +#: ../../include/nav.php:201 ../../include/widgets.php:700 +msgid "Inbox" +msgstr "In arrivo" -#: ../../include/network.php:1935 ../../include/account.php:324 -#: ../../include/account.php:351 ../../include/account.php:411 -msgid "Administrator" -msgstr "Amministratore" +#: ../../include/nav.php:202 ../../include/widgets.php:705 +msgid "Outbox" +msgstr "Inviati" -#: ../../include/network.php:1949 -msgid "No Subject" -msgstr "Nessun titolo" +#: ../../include/nav.php:203 ../../include/widgets.php:710 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../include/network.php:2203 ../../include/network.php:2204 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/nav.php:206 +msgid "Event Calendar" +msgstr "Calendario" -#: ../../include/network.php:2205 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/nav.php:207 +msgid "See all events" +msgstr "Guarda tutti gli eventi" -#: ../../include/network.php:2206 -msgid "GNU-Social" -msgstr "GNU-Social" +#: ../../include/nav.php:208 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" -#: ../../include/network.php:2207 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/nav.php:211 +msgid "Manage Your Channels" +msgstr "Gestisci i tuoi canali" -#: ../../include/network.php:2209 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/nav.php:213 +msgid "Account/Channel Settings" +msgstr "Impostazioni dell'account e del canale" -#: ../../include/network.php:2210 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/nav.php:221 ../../include/widgets.php:1590 +msgid "Admin" +msgstr "Amministrazione" -#: ../../include/network.php:2211 -msgid "Zot" -msgstr "Zot" +#: ../../include/nav.php:221 +msgid "Site Setup and Configuration" +msgstr "Installazione e configurazione del sito" -#: ../../include/network.php:2212 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/nav.php:252 ../../include/conversation.php:855 +msgid "Loading..." +msgstr "Caricamento in corso..." -#: ../../include/network.php:2213 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/nav.php:257 +msgid "@name, #tag, ?doc, content" +msgstr "@nome, #tag, ?guida, contenuto" -#: ../../include/network.php:2214 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/nav.php:258 +msgid "Please wait..." +msgstr "Attendere..." #: ../../include/oembed.php:349 msgid "Embedded content" @@ -7203,209 +7488,101 @@ msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come msgid "Can forward to all my channel contacts via post @mentions" msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione" -#: ../../include/permissions.php:48 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" - -#: ../../include/permissions.php:49 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" - -#: ../../include/permissions.php:50 -msgid "Can write to my file storage and photos" -msgstr "Può modificare il mio archivio file e foto" - -#: ../../include/permissions.php:51 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" - -#: ../../include/permissions.php:53 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" - -#: ../../include/permissions.php:55 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" - -#: ../../include/permissions.php:55 -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/connections.php:95 -msgid "New window" -msgstr "Nuova finestra" - -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" - -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" - -#: ../../include/api.php:1330 -msgid "Public Timeline" -msgstr "Diario pubblico" - -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" - -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nome vuoto" - -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" - -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Account senza identificativo" - -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." - -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." - -#: ../../include/channel.php:212 -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/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" - -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profilo predefinito" - -#: ../../include/channel.php:813 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." - -#: ../../include/channel.php:960 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: ../../include/channel.php:963 ../../include/nav.php:93 -msgid "Edit Profile" -msgstr "Modifica il profilo" - -#: ../../include/channel.php:980 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" -msgstr "Sesso:" - -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" -msgstr "Stato:" - -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" -msgstr "Home page:" - -#: ../../include/channel.php:1056 -msgid "Online Now" -msgstr "Online adesso" - -#: ../../include/channel.php:1171 -msgid "Like this channel" -msgstr "Mi piace questo canale" +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" -#: ../../include/channel.php:1195 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" -#: ../../include/channel.php:1196 -msgid "j F" -msgstr "j F" +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" +msgstr "Può modificare il mio archivio file e foto" -#: ../../include/channel.php:1203 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" +msgstr "Può modificare le mie pagine web" -#: ../../include/channel.php:1216 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" -#: ../../include/channel.php:1225 -msgid "Tags:" -msgstr "Tag:" +#: ../../include/permissions.php:55 +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/channel.php:1227 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." -#: ../../include/channel.php:1229 -msgid "Religion:" -msgstr "Religione:" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" +#: ../../include/import.php:1441 +msgid "Unable to import element \"" +msgstr "Impossibile importare l'elemento \"" -#: ../../include/channel.php:1235 -msgid "Likes:" -msgstr "Mi piace:" +#: ../../include/items.php:918 ../../include/items.php:963 +msgid "(Unknown)" +msgstr "(Sconosciuto)" -#: ../../include/channel.php:1237 -msgid "Dislikes:" -msgstr "Non mi piace:" +#: ../../include/items.php:1162 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" +#: ../../include/items.php:1164 +msgid "Visible to you only." +msgstr "Visibile solo a te." -#: ../../include/channel.php:1241 -msgid "My other channels:" -msgstr "I miei altri canali:" +#: ../../include/items.php:1166 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." -#: ../../include/channel.php:1243 -msgid "Musical interests:" -msgstr "Gusti musicali:" +#: ../../include/items.php:1168 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." -#: ../../include/channel.php:1245 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../include/items.php:1170 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." -#: ../../include/channel.php:1247 -msgid "Television:" -msgstr "Televisione:" +#: ../../include/items.php:1172 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." -#: ../../include/channel.php:1251 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../include/items.php:1176 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." -#: ../../include/channel.php:1253 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../include/items.php:3966 +msgid "Privacy group is empty." +msgstr "Gruppo di canali vuoto." -#: ../../include/channel.php:1255 -msgid "School/education:" -msgstr "Scuola:" +#: ../../include/items.php:3973 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppo di canali: %s" -#: ../../include/channel.php:1276 -msgid "Like this thing" -msgstr "Mi piace" +#: ../../include/items.php:3985 +msgid "Connection not found." +msgstr "Contatto non trovato." + +#: ../../include/items.php:4338 +msgid "profile photo" +msgstr "foto del profilo" #: ../../include/datetime.php:135 msgid "Birthday" @@ -7419,7 +7596,7 @@ msgstr "Età:" msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-GG oppure MM-GG" -#: ../../include/datetime.php:272 ../../boot.php:2577 +#: ../../include/datetime.php:272 ../../boot.php:2578 msgid "never" msgstr "mai" @@ -7492,6 +7669,74 @@ msgstr "Compleanno di %1$s" msgid "Happy Birthday %1$s" msgstr "Buon compleanno %1$s" +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "Email non valida" + +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" +msgstr "Il dominio della tua email attualmente non è permesso su questo sito" + +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." + +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "È necessario un invito." + +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." + +#: ../../include/account.php:130 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: ../../include/account.php:198 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." + +#: ../../include/account.php:258 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" + +#: ../../include/account.php:324 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" + +#: ../../include/account.php:348 +msgid "your registration password" +msgstr "la password di registrazione" + +#: ../../include/account.php:351 ../../include/account.php:411 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: ../../include/account.php:423 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../include/account.php:463 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: ../../include/account.php:748 ../../include/account.php:750 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../include/account.php:756 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione supera i limiti del tuo abbonamento." + +#: ../../include/account.php:761 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." + #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Frequentemente" @@ -7740,59 +7985,91 @@ msgstr "Chi se ne frega" msgid "Ask me" msgstr "Chiedimelo" -#: ../../include/items.php:918 ../../include/items.php:963 -msgid "(Unknown)" -msgstr "(Sconosciuto)" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 +msgid "Image/photo" +msgstr "Immagine" -#: ../../include/items.php:1162 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 +msgid "Encrypted content" +msgstr "Contenuto cifrato" -#: ../../include/items.php:1164 -msgid "Visible to you only." -msgstr "Visibile solo a te." +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installa l'elemento %s:" -#: ../../include/items.php:1166 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." -#: ../../include/items.php:1168 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:619 ../../include/wiki.php:525 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" + +#: ../../include/bbcode.php:869 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/items.php:1170 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti su %s." +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Inizio:" -#: ../../include/items.php:1172 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Fine:" -#: ../../include/items.php:1174 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" -#: ../../include/items.php:1176 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Non specificato" -#: ../../include/items.php:3966 -msgid "Privacy group is empty." -msgstr "Gruppo di canali vuoto." +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Necessita di un intervento" -#: ../../include/items.php:3973 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppo di canali: %s" +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Completato" -#: ../../include/items.php:3985 -msgid "Connection not found." -msgstr "Contatto non trovato." +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "In corso" -#: ../../include/items.php:4338 -msgid "profile photo" -msgstr "foto del profilo" +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "Annullato" #: ../../include/security.php:109 msgid "guest:" @@ -7804,22 +8081,9 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." -#: ../../include/zot.php:700 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" - -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:2329 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - -#: ../../include/zot.php:3706 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" +#: ../../include/help.php:25 +msgid "Help:" +msgstr "Guida:" #: ../../include/bookmarks.php:35 #, php-format @@ -7861,49 +8125,6 @@ msgstr "Canali che non sono in nessun gruppo" msgid "add" msgstr "aggiungi" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nuova foto" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha pubblicato %2$s su %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1670 -msgid "Photo Albums" -msgstr "Album foto" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nuova pagina web" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titolo" - -#: ../../include/wiki.php:525 ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" - #: ../../include/attach.php:248 ../../include/attach.php:334 msgid "Item was not found." msgstr "Elemento non trovato." @@ -7966,29 +8187,22 @@ msgstr "scrittura su database fallita." msgid "Empty path" msgstr "La posizione è vuota" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nuova pagina web" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titolo" + #: ../../include/bb2diaspora.php:398 msgid "Attachments:" msgstr "Allegati:" -#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 -#: ../../include/event.php:69 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - #: ../../include/bb2diaspora.php:487 msgid "$Projectname event notification:" msgstr "Notifica evento $Projectname:" -#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 -#: ../../include/event.php:73 -msgid "Starts:" -msgstr "Inizio:" - -#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 -#: ../../include/event.php:77 -msgid "Finishes:" -msgstr "Fine:" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Eliminare questo elemento?" @@ -8129,19 +8343,19 @@ msgstr " " msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/js_strings.php:45 ../../include/text.php:1243 +#: ../../include/js_strings.php:45 ../../include/text.php:1289 msgid "January" msgstr "gennaio" -#: ../../include/js_strings.php:46 ../../include/text.php:1243 +#: ../../include/js_strings.php:46 ../../include/text.php:1289 msgid "February" msgstr "febbraio" -#: ../../include/js_strings.php:47 ../../include/text.php:1243 +#: ../../include/js_strings.php:47 ../../include/text.php:1289 msgid "March" msgstr "marzo" -#: ../../include/js_strings.php:48 ../../include/text.php:1243 +#: ../../include/js_strings.php:48 ../../include/text.php:1289 msgid "April" msgstr "aprile" @@ -8150,31 +8364,31 @@ msgctxt "long" msgid "May" msgstr "maggio" -#: ../../include/js_strings.php:50 ../../include/text.php:1243 +#: ../../include/js_strings.php:50 ../../include/text.php:1289 msgid "June" msgstr "giugno" -#: ../../include/js_strings.php:51 ../../include/text.php:1243 +#: ../../include/js_strings.php:51 ../../include/text.php:1289 msgid "July" msgstr "luglio" -#: ../../include/js_strings.php:52 ../../include/text.php:1243 +#: ../../include/js_strings.php:52 ../../include/text.php:1289 msgid "August" msgstr "agosto" -#: ../../include/js_strings.php:53 ../../include/text.php:1243 +#: ../../include/js_strings.php:53 ../../include/text.php:1289 msgid "September" msgstr "settembre" -#: ../../include/js_strings.php:54 ../../include/text.php:1243 +#: ../../include/js_strings.php:54 ../../include/text.php:1289 msgid "October" msgstr "ottobre" -#: ../../include/js_strings.php:55 ../../include/text.php:1243 +#: ../../include/js_strings.php:55 ../../include/text.php:1289 msgid "November" msgstr "novembre" -#: ../../include/js_strings.php:56 ../../include/text.php:1243 +#: ../../include/js_strings.php:56 ../../include/text.php:1289 msgid "December" msgstr "dicembre" @@ -8227,31 +8441,31 @@ msgstr "Nov" msgid "Dec" msgstr "Dic" -#: ../../include/js_strings.php:69 ../../include/text.php:1239 +#: ../../include/js_strings.php:69 ../../include/text.php:1285 msgid "Sunday" msgstr "domenica" -#: ../../include/js_strings.php:70 ../../include/text.php:1239 +#: ../../include/js_strings.php:70 ../../include/text.php:1285 msgid "Monday" msgstr "lunedì" -#: ../../include/js_strings.php:71 ../../include/text.php:1239 +#: ../../include/js_strings.php:71 ../../include/text.php:1285 msgid "Tuesday" msgstr "martedì" -#: ../../include/js_strings.php:72 ../../include/text.php:1239 +#: ../../include/js_strings.php:72 ../../include/text.php:1285 msgid "Wednesday" msgstr "mercoledì" -#: ../../include/js_strings.php:73 ../../include/text.php:1239 +#: ../../include/js_strings.php:73 ../../include/text.php:1285 msgid "Thursday" msgstr "giovedì" -#: ../../include/js_strings.php:74 ../../include/text.php:1239 +#: ../../include/js_strings.php:74 ../../include/text.php:1285 msgid "Friday" msgstr "venerdì" -#: ../../include/js_strings.php:75 ../../include/text.php:1239 +#: ../../include/js_strings.php:75 ../../include/text.php:1285 msgid "Saturday" msgstr "sabato" @@ -8293,436 +8507,306 @@ msgctxt "calendar" msgid "month" msgstr "mese" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "settimana" - -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "giorno" - -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Tutto il giorno" - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." - -#: ../../include/acl_selectors.php:169 -msgid "Who can see this?" -msgstr "Chi può vederlo?" - -#: ../../include/acl_selectors.php:170 -msgid "Custom selection" -msgstr "Selezione personalizzata" - -#: ../../include/acl_selectors.php:171 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." - -#: ../../include/acl_selectors.php:172 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:173 -msgid "Don't show" -msgstr "Non mostrare" - -#: ../../include/acl_selectors.php:207 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These" -" permissions set who is allowed to view the post." -msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." - -#: ../../include/text.php:404 -msgid "prev" -msgstr "prec" - -#: ../../include/text.php:406 -msgid "first" -msgstr "inizio" - -#: ../../include/text.php:435 -msgid "last" -msgstr "fine" - -#: ../../include/text.php:438 -msgid "next" -msgstr "succ" - -#: ../../include/text.php:448 -msgid "older" -msgstr "più recenti" - -#: ../../include/text.php:450 -msgid "newer" -msgstr "più nuovi" - -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Nessun contatto" - -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Mostra tutti i %s contatti" - -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "poke" - -#: ../../include/text.php:1013 ../../include/text.php:1018 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "ha mandato un poke" - -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha effettuato un ping" - -#: ../../include/text.php:1020 -msgid "prod" -msgstr "spintone" - -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha ricevuto uno spintone" - -#: ../../include/text.php:1021 -msgid "slap" -msgstr "schiaffo" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "ha ricevuto un finger" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "rifiuto" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "settimana" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "felice" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "giorno" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Tutto il giorno" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "calmo" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." -#: ../../include/text.php:1038 -msgid "tired" -msgstr "stanco" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivace" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../include/text.php:1040 -msgid "angry" -msgstr "arrabbiato" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "stupito" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "confuso" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." -#: ../../include/text.php:1043 -msgid "interested" -msgstr "attento" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amaro" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "Chi può vederlo?" -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "allegro" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Selezione personalizzata" -#: ../../include/text.php:1046 -msgid "alive" -msgstr "vivace" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "seccato" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Mostra" -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansioso" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "Non mostrare" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "irritabile" +#: ../../include/acl_selectors.php:207 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "turbato" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrato" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Nome vuoto" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "in depressione" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Nome troppo lungo" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivato" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Account senza identificativo" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "rilassato" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorpreso" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." -#: ../../include/text.php:1243 -msgid "May" -msgstr "Mag" +#: ../../include/channel.php:212 +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/text.php:1320 ../../include/text.php:1324 -msgid "Unknown Attachment" -msgstr "Allegato non riconoscuto" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" -#: ../../include/text.php:1326 -msgid "unknown" -msgstr "sconosciuta" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Profilo predefinito" -#: ../../include/text.php:1362 -msgid "remove category" -msgstr "rimuovi la categoria" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." -#: ../../include/text.php:1439 -msgid "remove from file" -msgstr "rimuovi dal file" +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" -#: ../../include/text.php:1738 ../../include/text.php:1809 -msgid "default" -msgstr "predefinito" +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "Visibile a tutti" -#: ../../include/text.php:1746 -msgid "Page layout" -msgstr "Layout della pagina" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "Sesso:" -#: ../../include/text.php:1746 -msgid "You can create your own with the layouts tool" -msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "Stato:" -#: ../../include/text.php:1788 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "Home page:" -#: ../../include/text.php:1821 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "Online adesso" -#: ../../include/text.php:1958 -msgid "activity" -msgstr "l'attività" +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "Mi piace questo canale" -#: ../../include/text.php:2259 -msgid "Design Tools" -msgstr "Strumenti di design" +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "j F Y" -#: ../../include/text.php:2265 -msgid "Pages" -msgstr "Pagine" +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "j F" -#: ../../include/text.php:2287 -msgid "Import website..." -msgstr "Importazione sito web..." +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "Compleanno:" -#: ../../include/text.php:2288 -msgid "Select folder to import" -msgstr "Scegli la cartella da importare" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" -#: ../../include/text.php:2289 -msgid "Import from a zipped folder:" -msgstr "Importa da un file zip:" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" -#: ../../include/text.php:2290 -msgid "Import from cloud files:" -msgstr "Importa da un file su cloud:" +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "Tag:" -#: ../../include/text.php:2291 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/channel/percorso/alla/cartella" +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "Orientamento politico:" -#: ../../include/text.php:2292 -msgid "Enter path to website files" -msgstr "Inserisci la posizione dei file del sito web" +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "Religione:" -#: ../../include/text.php:2293 -msgid "Select folder" -msgstr "Scegli la cartella" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" -#: ../../include/text.php:2294 -msgid "Export website..." -msgstr "Esporta il sito web..." +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "Mi piace:" -#: ../../include/text.php:2295 -msgid "Export to a zip file" -msgstr "Esporta come file zip" +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "Non mi piace:" -#: ../../include/text.php:2296 -msgid "website.zip" -msgstr "sitoweb.zip" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" -#: ../../include/text.php:2297 -msgid "Enter a name for the zip file." -msgstr "Scegli il nome del file zip." +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "I miei altri canali:" -#: ../../include/text.php:2298 -msgid "Export to cloud files" -msgstr "Esporta nell'archivio cloud" +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "Gusti musicali:" -#: ../../include/text.php:2299 -msgid "/path/to/export/folder" -msgstr "/percorso/alla/cartella" +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "Libri, letteratura:" -#: ../../include/text.php:2300 -msgid "Enter a path to a cloud files destination." -msgstr "Scegli la posizione su una cartella cloud." +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" -#: ../../include/text.php:2301 -msgid "Specify folder" -msgstr "Scegli la cartella" +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "Amore:" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "Lavoro:" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "Scuola:" -#: ../../include/import.php:1441 -msgid "Unable to import element \"" -msgstr "Impossibile importare l'elemento \"" +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "Mi piace" -#: ../../include/account.php:35 -msgid "Not a valid email address" -msgstr "Email non valida" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nuova finestra" -#: ../../include/account.php:37 -msgid "Your email domain is not among those allowed on this site" -msgstr "Il dominio della tua email attualmente non è permesso su questo sito" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" -#: ../../include/account.php:43 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' eliminato" -#: ../../include/account.php:75 -msgid "An invitation is required." -msgstr "È necessario un invito." +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: ../../include/account.php:79 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Ricerca canali" -#: ../../include/account.php:129 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" -#: ../../include/account.php:196 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Aggiungi" -#: ../../include/account.php:256 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" -#: ../../include/account.php:322 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Profilo casuale" -#: ../../include/account.php:346 -msgid "your registration password" -msgstr "la password di registrazione" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Invita amici" -#: ../../include/account.php:349 ../../include/account.php:409 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Per esempio: name=mario e country=italy" -#: ../../include/account.php:421 -msgid "Account approved." -msgstr "Account approvato." +#: ../../include/contact_widgets.php:53 ../../include/widgets.php:346 +#: ../../include/features.php:97 +msgid "Saved Folders" +msgstr "Cartelle salvate" -#: ../../include/account.php:461 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +msgid "Everything" +msgstr "Tutto" -#: ../../include/account.php:746 ../../include/account.php:748 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." +#: ../../include/contact_widgets.php:91 ../../include/taxonomy.php:188 +#: ../../include/taxonomy.php:270 ../../include/widgets.php:46 +#: ../../include/widgets.php:465 +msgid "Categories" +msgstr "Categorie" -#: ../../include/account.php:754 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." +#: ../../include/contact_widgets.php:122 +#, 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/account.php:759 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostra tutto" #: ../../include/auth.php:148 msgid "Logged out." @@ -8769,6 +8853,11 @@ msgstr "%1$s adesso è connesso con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha mandato un poke a %2$s" +#: ../../include/conversation.php:243 ../../include/text.php:1059 +#: ../../include/text.php:1064 +msgid "poked" +msgstr "ha mandato un poke" + #: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" @@ -8790,10 +8879,6 @@ msgstr "Vedi nel contesto" msgid "remove" msgstr "rimuovi" -#: ../../include/conversation.php:855 ../../include/nav.php:252 -msgid "Loading..." -msgstr "Caricamento in corso..." - #: ../../include/conversation.php:856 msgid "Delete Selected Items" msgstr "Elimina gli oggetti selezionati" @@ -8891,167 +8976,157 @@ msgstr "Commenti abilitati" msgid "Comments disabled" msgstr "Commenti disabilitati" -#: ../../include/conversation.php:1229 +#: ../../include/conversation.php:1233 msgid "Page link name" msgstr "Nome del link alla pagina" -#: ../../include/conversation.php:1232 +#: ../../include/conversation.php:1236 msgid "Post as" msgstr "Pubblica come " -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1250 msgid "Toggle voting" msgstr "Abilita/disabilita il voto" -#: ../../include/conversation.php:1249 +#: ../../include/conversation.php:1253 msgid "Disable comments" msgstr "Disabilita i commenti" -#: ../../include/conversation.php:1250 +#: ../../include/conversation.php:1254 msgid "Toggle comments" msgstr "Abilita/disabilita i commenti" -#: ../../include/conversation.php:1258 +#: ../../include/conversation.php:1262 msgid "Categories (optional, comma-separated list)" msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../include/conversation.php:1281 +#: ../../include/conversation.php:1285 msgid "Other networks and post services" msgstr "Invio ad altre reti o a siti esterni" -#: ../../include/conversation.php:1287 +#: ../../include/conversation.php:1291 msgid "Set publish date" msgstr "Data di uscita programmata" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1540 msgid "Discover" msgstr "Scopri" -#: ../../include/conversation.php:1539 +#: ../../include/conversation.php:1543 msgid "Imported public streams" msgstr "Contenuti pubblici importati" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1548 msgid "Commented Order" msgstr "Commenti recenti" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1551 msgid "Sort by Comment Date" msgstr "Per data del commento" -#: ../../include/conversation.php:1551 +#: ../../include/conversation.php:1555 msgid "Posted Order" msgstr "Post recenti" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1558 msgid "Sort by Post Date" msgstr "Per data di creazione" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1566 msgid "Posts that mention or involve you" msgstr "Post che ti riguardano" -#: ../../include/conversation.php:1571 +#: ../../include/conversation.php:1575 msgid "Activity Stream - by date" msgstr "Elenco attività - per data" -#: ../../include/conversation.php:1577 +#: ../../include/conversation.php:1581 msgid "Starred" msgstr "Preferiti" -#: ../../include/conversation.php:1580 +#: ../../include/conversation.php:1584 msgid "Favourite Posts" msgstr "Post preferiti" -#: ../../include/conversation.php:1587 +#: ../../include/conversation.php:1591 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1590 +#: ../../include/conversation.php:1594 msgid "Posts flagged as SPAM" msgstr "Post marcati come spam" -#: ../../include/conversation.php:1649 +#: ../../include/conversation.php:1653 msgid "Status Messages and Posts" msgstr "Post e messaggi di stato" -#: ../../include/conversation.php:1658 +#: ../../include/conversation.php:1662 msgid "About" msgstr "Informazioni" -#: ../../include/conversation.php:1661 +#: ../../include/conversation.php:1665 msgid "Profile Details" msgstr "Dettagli del profilo" -#: ../../include/conversation.php:1677 +#: ../../include/conversation.php:1681 msgid "Files and Storage" msgstr "Archivio file" -#: ../../include/conversation.php:1697 ../../include/conversation.php:1700 +#: ../../include/conversation.php:1701 ../../include/conversation.php:1704 #: ../../include/widgets.php:883 msgid "Chatrooms" msgstr "Chat" -#: ../../include/conversation.php:1710 ../../include/nav.php:105 -msgid "Bookmarks" -msgstr "Segnalibri" - -#: ../../include/conversation.php:1713 +#: ../../include/conversation.php:1717 msgid "Saved Bookmarks" msgstr "Segnalibri salvati" -#: ../../include/conversation.php:1723 +#: ../../include/conversation.php:1727 msgid "Manage Webpages" msgstr "Gestisci le pagine web" -#: ../../include/conversation.php:1788 +#: ../../include/conversation.php:1792 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Partecipa" msgstr[1] "Partecipano" -#: ../../include/conversation.php:1791 +#: ../../include/conversation.php:1795 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Non partecipa" msgstr[1] "Non partecipano" -#: ../../include/conversation.php:1794 +#: ../../include/conversation.php:1798 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso" msgstr[1] "Indecisi" -#: ../../include/conversation.php:1797 +#: ../../include/conversation.php:1801 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "D'accordo" msgstr[1] "D'accordo" -#: ../../include/conversation.php:1800 +#: ../../include/conversation.php:1804 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Non d'accordo" msgstr[1] "Non d'accordo" -#: ../../include/conversation.php:1803 +#: ../../include/conversation.php:1807 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Astenuto" msgstr[1] "Astenuti" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:465 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Categorie" - #: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 msgid "Tags" msgstr "Tag" @@ -9084,303 +9159,314 @@ msgstr "gli piace" msgid "dislikes" msgstr "non gli piace" -#: ../../include/features.php:50 -msgid "General Features" -msgstr "Funzionalità di base" +#: ../../include/text.php:450 +msgid "prev" +msgstr "prec" -#: ../../include/features.php:52 -msgid "Content Expiration" -msgstr "Scadenza" +#: ../../include/text.php:452 +msgid "first" +msgstr "inizio" -#: ../../include/features.php:52 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" +#: ../../include/text.php:481 +msgid "last" +msgstr "fine" -#: ../../include/features.php:53 -msgid "Multiple Profiles" -msgstr "Profili multipli" +#: ../../include/text.php:484 +msgid "next" +msgstr "succ" -#: ../../include/features.php:53 -msgid "Ability to create multiple profiles" -msgstr "Abilitazione a creare profili multipli" +#: ../../include/text.php:494 +msgid "older" +msgstr "più recenti" -#: ../../include/features.php:54 -msgid "Advanced Profiles" -msgstr "Profili avanzati" +#: ../../include/text.php:496 +msgid "newer" +msgstr "più nuovi" -#: ../../include/features.php:54 -msgid "Additional profile sections and selections" -msgstr "Informazioni aggiuntive del profilo" +#: ../../include/text.php:889 +msgid "No connections" +msgstr "Nessun contatto" -#: ../../include/features.php:55 -msgid "Profile Import/Export" -msgstr "Importa/esporta il profilo" +#: ../../include/text.php:914 +#, php-format +msgid "View all %s connections" +msgstr "Mostra tutti i %s contatti" -#: ../../include/features.php:55 -msgid "Save and load profile details across sites/channels" -msgstr "Salva o ripristina le informazioni del profilo su siti diversi" +#: ../../include/text.php:1059 ../../include/text.php:1064 +msgid "poke" +msgstr "poke" -#: ../../include/features.php:56 -msgid "Web Pages" -msgstr "Pagine web" +#: ../../include/text.php:1065 +msgid "ping" +msgstr "ping" -#: ../../include/features.php:56 -msgid "Provide managed web pages on your channel" -msgstr "Attiva la creazione di pagine web sul tuo canale" +#: ../../include/text.php:1065 +msgid "pinged" +msgstr "ha effettuato un ping" -#: ../../include/features.php:57 -msgid "Provide a wiki for your channel" -msgstr "Fornisce una wiki per il tuo canale" +#: ../../include/text.php:1066 +msgid "prod" +msgstr "spintone" -#: ../../include/features.php:59 -msgid "Private Notes" -msgstr "Note private" +#: ../../include/text.php:1066 +msgid "prodded" +msgstr "ha ricevuto uno spintone" -#: ../../include/features.php:59 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" +#: ../../include/text.php:1067 +msgid "slap" +msgstr "schiaffo" -#: ../../include/features.php:60 -msgid "Navigation Channel Select" -msgstr "Scegli il canale attivo dal menu" +#: ../../include/text.php:1067 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" -#: ../../include/features.php:60 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Scegli il canale attivo direttamente dal menu di navigazione" +#: ../../include/text.php:1068 +msgid "finger" +msgstr "finger" -#: ../../include/features.php:61 -msgid "Photo Location" -msgstr "Posizione geografica" +#: ../../include/text.php:1068 +msgid "fingered" +msgstr "ha ricevuto un finger" -#: ../../include/features.php:61 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." +#: ../../include/text.php:1069 +msgid "rebuff" +msgstr "rifiuto" -#: ../../include/features.php:62 -msgid "Access Controlled Chatrooms" -msgstr "Chat ad accesso riservato" +#: ../../include/text.php:1069 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" -#: ../../include/features.php:62 -msgid "Provide chatrooms and chat services with access control." -msgstr "Il servizio di chat con accesso riservato." +#: ../../include/text.php:1081 +msgid "happy" +msgstr "felice" + +#: ../../include/text.php:1082 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1083 +msgid "mellow" +msgstr "calmo" + +#: ../../include/text.php:1084 +msgid "tired" +msgstr "stanco" + +#: ../../include/text.php:1085 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:1086 +msgid "angry" +msgstr "arrabbiato" -#: ../../include/features.php:63 -msgid "Smart Birthdays" -msgstr "Compleanni intelligenti" +#: ../../include/text.php:1087 +msgid "stupefied" +msgstr "stupito" -#: ../../include/features.php:63 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." +#: ../../include/text.php:1088 +msgid "puzzled" +msgstr "confuso" -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Modalità di scrittura post" +#: ../../include/text.php:1089 +msgid "interested" +msgstr "attento" -#: ../../include/features.php:69 -msgid "Large Photos" -msgstr "Foto grandi" +#: ../../include/text.php:1090 +msgid "bitter" +msgstr "amaro" -#: ../../include/features.php:69 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" +#: ../../include/text.php:1091 +msgid "cheerful" +msgstr "allegro" -#: ../../include/features.php:70 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" +#: ../../include/text.php:1092 +msgid "alive" +msgstr "vivace" -#: ../../include/features.php:71 -msgid "Even More Encryption" -msgstr "Cifratura addizionale" +#: ../../include/text.php:1093 +msgid "annoyed" +msgstr "seccato" -#: ../../include/features.php:71 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" +#: ../../include/text.php:1094 +msgid "anxious" +msgstr "ansioso" -#: ../../include/features.php:72 -msgid "Enable Voting Tools" -msgstr "Permetti i post con votazione" +#: ../../include/text.php:1095 +msgid "cranky" +msgstr "irritabile" -#: ../../include/features.php:72 -msgid "Provide a class of post which others can vote on" -msgstr "Rende possibile la creazione di post in cui sarà possibile votare" +#: ../../include/text.php:1096 +msgid "disturbed" +msgstr "turbato" -#: ../../include/features.php:73 -msgid "Disable Comments" -msgstr "Disabilita i commenti" +#: ../../include/text.php:1097 +msgid "frustrated" +msgstr "frustrato" -#: ../../include/features.php:73 -msgid "Provide the option to disable comments for a post" -msgstr "Permetti di disabilitare i commenti" +#: ../../include/text.php:1098 +msgid "depressed" +msgstr "in depressione" -#: ../../include/features.php:74 -msgid "Delayed Posting" -msgstr "Pubblicazione ritardata" +#: ../../include/text.php:1099 +msgid "motivated" +msgstr "motivato" -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" -msgstr "Per scegliere una data e un'ora a cui far uscire i post" +#: ../../include/text.php:1100 +msgid "relaxed" +msgstr "rilassato" -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Impedisci post e commenti duplicati" +#: ../../include/text.php:1101 +msgid "surprised" +msgstr "sorpreso" -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." +#: ../../include/text.php:1289 +msgid "May" +msgstr "Mag" -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" -msgstr "Filtraggio dei contenuti" +#: ../../include/text.php:1366 ../../include/text.php:1370 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "Ricerca per data" +#: ../../include/text.php:1372 +msgid "unknown" +msgstr "sconosciuta" -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Per selezionare i post in un intervallo tra date" +#: ../../include/text.php:1408 +msgid "remove category" +msgstr "rimuovi la categoria" -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "Abilita i gruppi di canali" +#: ../../include/text.php:1485 +msgid "remove from file" +msgstr "rimuovi dal file" -#: ../../include/features.php:84 ../../include/widgets.php:283 -msgid "Saved Searches" -msgstr "Ricerche salvate" +#: ../../include/text.php:1784 ../../include/text.php:1855 +msgid "default" +msgstr "predefinito" -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Salva i termini delle ricerche per poterle ripetere" +#: ../../include/text.php:1792 +msgid "Page layout" +msgstr "Layout della pagina" -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "Attività personale" +#: ../../include/text.php:1792 +msgid "You can create your own with the layouts tool" +msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" -#: ../../include/features.php:85 -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/text.php:1834 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" -#: ../../include/features.php:86 -msgid "Network New Tab" -msgstr "Contenuti nuovi" +#: ../../include/text.php:1867 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" -msgstr "Abilita il link per visualizzare solo i nuovi contenuti" +#: ../../include/text.php:2004 +msgid "activity" +msgstr "l'attività" -#: ../../include/features.php:87 -msgid "Affinity Tool" -msgstr "Filtro per affinità" +#: ../../include/text.php:2305 +msgid "Design Tools" +msgstr "Strumenti di design" -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" +#: ../../include/text.php:2311 +msgid "Pages" +msgstr "Pagine" -#: ../../include/features.php:88 -msgid "Show friend and connection suggestions" -msgstr "Mostra suggerimenti di contatti e amici" +#: ../../include/text.php:2333 +msgid "Import website..." +msgstr "Importazione sito web..." -#: ../../include/features.php:93 -msgid "Post/Comment Tools" -msgstr "Gestione post e commenti" +#: ../../include/text.php:2334 +msgid "Select folder to import" +msgstr "Scegli la cartella da importare" -#: ../../include/features.php:94 -msgid "Community Tagging" -msgstr "Tag della comunità" +#: ../../include/text.php:2335 +msgid "Import from a zipped folder:" +msgstr "Importa da un file zip:" -#: ../../include/features.php:94 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su post già esistenti" +#: ../../include/text.php:2336 +msgid "Import from cloud files:" +msgstr "Importa da un file su cloud:" -#: ../../include/features.php:95 -msgid "Post Categories" -msgstr "Categorie dei post" +#: ../../include/text.php:2337 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/posizione/della/cartella" -#: ../../include/features.php:95 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi post" +#: ../../include/text.php:2338 +msgid "Enter path to website files" +msgstr "Inserisci la posizione dei file del sito web" -#: ../../include/features.php:96 -msgid "Emoji Reactions" -msgstr "Risposte emoji" +#: ../../include/text.php:2339 +msgid "Select folder" +msgstr "Scegli la cartella" -#: ../../include/features.php:96 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti di rispondere ai post con degli emoji" +#: ../../include/text.php:2340 +msgid "Export website..." +msgstr "Esporta il sito web..." -#: ../../include/features.php:97 ../../include/widgets.php:346 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Cartelle salvate" +#: ../../include/text.php:2341 +msgid "Export to a zip file" +msgstr "Esporta come file zip" -#: ../../include/features.php:97 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" +#: ../../include/text.php:2342 +msgid "website.zip" +msgstr "sitoweb.zip" -#: ../../include/features.php:98 -msgid "Dislike Posts" -msgstr "Non mi piace" +#: ../../include/text.php:2343 +msgid "Enter a name for the zip file." +msgstr "Scegli il nome del file zip." -#: ../../include/features.php:98 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" +#: ../../include/text.php:2344 +msgid "Export to cloud files" +msgstr "Esporta nell'archivio cloud" -#: ../../include/features.php:99 -msgid "Star Posts" -msgstr "Post con stella" +#: ../../include/text.php:2345 +msgid "/path/to/export/folder" +msgstr "/percorso/alla/cartella" -#: ../../include/features.php:99 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per segnare i post preferiti" +#: ../../include/text.php:2346 +msgid "Enter a path to a cloud files destination." +msgstr "Scegli la posizione su una cartella cloud." -#: ../../include/features.php:100 -msgid "Tag Cloud" -msgstr "Nuvola di tag" +#: ../../include/text.php:2347 +msgid "Specify folder" +msgstr "Scegli la cartella" -#: ../../include/features.php:100 -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/api.php:1330 +msgid "Public Timeline" +msgstr "Diario pubblico" -#: ../../include/features.php:109 -msgid "Connection Filtering" -msgstr "Filtro sui contatti" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Visibilità negli elenchi pubblici" -#: ../../include/features.php:110 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra i post che ricevi con parole chiave" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modalità SafeSearch" -#: ../../include/features.php:120 -msgid "Premium Channel" -msgstr "Canale premium" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo forum pubblici" -#: ../../include/features.php:121 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo in questo sito" -#: ../../include/features.php:128 -msgid "Advanced Directory Search" -msgstr "Ricerca avanzata sugli elenchi pubblici" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." -#: ../../include/features.php:129 -msgid "Allows creation of complex directory search queries" -msgstr "Permette la creazione di ricerche complesse negli elenchi" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[nessun titolo]" -#: ../../include/features.php:135 -msgid "Advanced Theme and Layout Settings" -msgstr "Impostazioni avanzate del tema e dei layout" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." -#: ../../include/features.php:136 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Permette una personalizzazione accurata del tema e dei layout" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare il post." #: ../../include/widgets.php:103 msgid "System" @@ -9423,10 +9509,9 @@ msgstr "Note" msgid "Remove term" msgstr "Rimuovi termine" -#: ../../include/widgets.php:349 ../../include/widgets.php:468 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tutto" +#: ../../include/widgets.php:283 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Ricerche salvate" #: ../../include/widgets.php:390 msgid "Archives" @@ -9458,7 +9543,7 @@ msgstr "Aspetto" #: ../../include/widgets.php:627 msgid "Manage locations" -msgstr "Gestione repliche" +msgstr "Gestione cloni" #: ../../include/widgets.php:634 msgid "Export channel" @@ -9480,18 +9565,6 @@ msgstr "Menu messaggi privati" msgid "Combined View" msgstr "Vista combinata" -#: ../../include/widgets.php:700 ../../include/nav.php:201 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../include/widgets.php:705 ../../include/nav.php:202 -msgid "Outbox" -msgstr "Inviati" - -#: ../../include/widgets.php:710 ../../include/nav.php:203 -msgid "New Message" -msgstr "Nuovo messaggio" - #: ../../include/widgets.php:727 ../../include/widgets.php:739 msgid "Conversations" msgstr "Conversazioni" @@ -9544,387 +9617,363 @@ msgstr "Pagine wiki" msgid "Bookmarked Chatrooms" msgstr "Chat nei segnalibri" -#: ../../include/widgets.php:1012 +#: ../../include/widgets.php:1020 msgid "Suggested Chatrooms" msgstr "Chat suggerite" -#: ../../include/widgets.php:1158 ../../include/widgets.php:1270 +#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 msgid "photo/image" msgstr "foto/immagine" -#: ../../include/widgets.php:1213 +#: ../../include/widgets.php:1221 msgid "Click to show more" msgstr "Clicca per mostrare tutto" -#: ../../include/widgets.php:1364 +#: ../../include/widgets.php:1372 msgid "Rating Tools" msgstr "Valutazione" -#: ../../include/widgets.php:1368 ../../include/widgets.php:1370 +#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 msgid "Rate Me" msgstr "Valutami" -#: ../../include/widgets.php:1373 +#: ../../include/widgets.php:1381 msgid "View Ratings" msgstr "Vedi le valutazioni ricevute" -#: ../../include/widgets.php:1457 +#: ../../include/widgets.php:1465 msgid "Forums" msgstr "Forum" -#: ../../include/widgets.php:1486 +#: ../../include/widgets.php:1494 msgid "Tasks" msgstr "Attività" -#: ../../include/widgets.php:1495 +#: ../../include/widgets.php:1505 msgid "Documentation" msgstr "Guida" -#: ../../include/widgets.php:1497 -msgid "Project/Site Information" -msgstr "Informazioni sul sito/progetto" - -#: ../../include/widgets.php:1498 -msgid "For Members" -msgstr "Per gli utenti" - -#: ../../include/widgets.php:1499 -msgid "For Administrators" -msgstr "Per gli amministratori" - -#: ../../include/widgets.php:1500 -msgid "For Developers" -msgstr "Per sviluppatori" - -#: ../../include/widgets.php:1524 ../../include/widgets.php:1562 +#: ../../include/widgets.php:1557 ../../include/widgets.php:1595 msgid "Member registrations waiting for confirmation" msgstr "Richieste in attesa di conferma" -#: ../../include/widgets.php:1530 +#: ../../include/widgets.php:1563 msgid "Inspect queue" msgstr "Coda di attesa" -#: ../../include/widgets.php:1532 +#: ../../include/widgets.php:1565 msgid "DB updates" msgstr "Aggiornamenti al DB" -#: ../../include/widgets.php:1557 ../../include/nav.php:221 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../include/widgets.php:1558 +#: ../../include/widgets.php:1591 msgid "Plugin Features" msgstr "Plugin" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 -#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 -#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 -#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 -#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 -#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:920 -msgid "Image/photo" -msgstr "Immagine" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 -msgid "Encrypted content" -msgstr "Contenuto cifrato" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/bbcode.php:178 +#: ../../include/zot.php:2329 #, php-format -msgid "Install %s element: " -msgstr "Installa l'elemento %s:" +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." +#: ../../include/zot.php:3711 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" +#: ../../include/features.php:50 +msgid "General Features" +msgstr "Funzionalità di base" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" +#: ../../include/features.php:52 +msgid "Content Expiration" +msgstr "Scadenza" -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" -#: ../../include/bbcode.php:869 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" +#: ../../include/features.php:53 +msgid "Multiple Profiles" +msgstr "Profili multipli" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" +msgstr "Abilitazione a creare profili multipli" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Ricerca canali" +#: ../../include/features.php:54 +msgid "Advanced Profiles" +msgstr "Profili avanzati" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Scrivi un nome o un interesse" +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" +msgstr "Informazioni aggiuntive del profilo" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Aggiungi" +#: ../../include/features.php:55 +msgid "Profile Import/Export" +msgstr "Importa/esporta il profilo" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" +msgstr "Salva o ripristina le informazioni del profilo su siti diversi" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Profilo casuale" +#: ../../include/features.php:56 +msgid "Web Pages" +msgstr "Pagine web" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Invita amici" +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" +msgstr "Attiva la creazione di pagine web sul tuo canale" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Per esempio: name=mario e country=italy" +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" +msgstr "Fornisce una wiki per il tuo canale" -#: ../../include/contact_widgets.php:122 -#, 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/features.php:59 +msgid "Private Notes" +msgstr "Note private" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostra tutto" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Visibilità negli elenchi pubblici" +#: ../../include/features.php:60 +msgid "Navigation Channel Select" +msgstr "Scegli il canale attivo dal menu" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Scegli il canale attivo direttamente dal menu di navigazione" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo forum pubblici" +#: ../../include/features.php:61 +msgid "Photo Location" +msgstr "Posizione geografica" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo in questo sito" +#: ../../include/features.php:61 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" +msgstr "Chat ad accesso riservato" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[nessun titolo]" +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." +msgstr "Il servizio di chat con accesso riservato." -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." +#: ../../include/features.php:63 +msgid "Smart Birthdays" +msgstr "Compleanni intelligenti" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare il post." +#: ../../include/features.php:63 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" +#: ../../include/features.php:68 +msgid "Post Composition Features" +msgstr "Modalità di scrittura post" -#: ../../include/event.php:1021 -msgid "Not specified" -msgstr "Non specificato" +#: ../../include/features.php:69 +msgid "Large Photos" +msgstr "Foto grandi" -#: ../../include/event.php:1022 -msgid "Needs Action" -msgstr "Necessita di un intervento" +#: ../../include/features.php:69 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" -#: ../../include/event.php:1023 -msgid "Completed" -msgstr "Completato" +#: ../../include/features.php:70 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" -#: ../../include/event.php:1024 -msgid "In Process" -msgstr "In corso" +#: ../../include/features.php:71 +msgid "Even More Encryption" +msgstr "Cifratura addizionale" -#: ../../include/event.php:1025 -msgid "Cancelled" -msgstr "Annullato" +#: ../../include/features.php:71 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" + +#: ../../include/features.php:72 +msgid "Enable Voting Tools" +msgstr "Permetti i post con votazione" -#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1737 -msgid "Logout" -msgstr "Esci" +#: ../../include/features.php:72 +msgid "Provide a class of post which others can vote on" +msgstr "Rende possibile la creazione di post in cui sarà possibile votare" -#: ../../include/nav.php:85 ../../include/nav.php:118 -msgid "End this session" -msgstr "Chiudi questa sessione" +#: ../../include/features.php:73 +msgid "Disable Comments" +msgstr "Disabilita i commenti" -#: ../../include/nav.php:88 ../../include/nav.php:149 -msgid "Home" -msgstr "Bacheca" +#: ../../include/features.php:73 +msgid "Provide the option to disable comments for a post" +msgstr "Permetti di disabilitare i commenti" -#: ../../include/nav.php:88 -msgid "Your posts and conversations" -msgstr "I tuoi post e conversazioni" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Pubblicazione ritardata" -#: ../../include/nav.php:89 -msgid "Your profile page" -msgstr "Il tuo profilo" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Per scegliere una data e un'ora a cui far uscire i post" -#: ../../include/nav.php:91 -msgid "Manage/Edit profiles" -msgstr "Gestisci i tuoi profili" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Impedisci post e commenti duplicati" -#: ../../include/nav.php:93 -msgid "Edit your profile" -msgstr "Modifica il tuo profilo" +#: ../../include/features.php:75 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." -#: ../../include/nav.php:95 -msgid "Your photos" -msgstr "Le tue foto" +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Filtraggio dei contenuti" -#: ../../include/nav.php:96 -msgid "Your files" -msgstr "I tuoi file" +#: ../../include/features.php:82 +msgid "Search by Date" +msgstr "Ricerca per data" -#: ../../include/nav.php:99 -msgid "Your chatrooms" -msgstr "Le tue chat" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Per selezionare i post in un intervallo tra date" -#: ../../include/nav.php:105 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Abilita i gruppi di canali" -#: ../../include/nav.php:109 -msgid "Your webpages" -msgstr "Le tue pagine web" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../include/nav.php:111 -msgid "Your wiki" -msgstr "La tua wiki" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Attività personale" -#: ../../include/nav.php:115 -msgid "Sign in" -msgstr "Accedi" +#: ../../include/features.php:85 +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/nav.php:132 -#, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Contenuti nuovi" -#: ../../include/nav.php:135 -msgid "Remote authentication" -msgstr "Accedi dal tuo hub" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../include/nav.php:135 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per farti riconoscere dal tuo hub principale" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Filtro per affinità" -#: ../../include/nav.php:149 -msgid "Home Page" -msgstr "Bacheca" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" -#: ../../include/nav.php:152 -msgid "Create an account" -msgstr "Crea un account" +#: ../../include/features.php:88 +msgid "Show friend and connection suggestions" +msgstr "Mostra suggerimenti di contatti e amici" -#: ../../include/nav.php:164 -msgid "Help and documentation" -msgstr "Guida e documentazione" +#: ../../include/features.php:93 +msgid "Post/Comment Tools" +msgstr "Gestione post e commenti" -#: ../../include/nav.php:168 -msgid "Applications, utilities, links, games" -msgstr "Applicazioni, utilità, link, giochi" +#: ../../include/features.php:94 +msgid "Community Tagging" +msgstr "Tag della comunità" -#: ../../include/nav.php:170 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" +#: ../../include/features.php:94 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su post già esistenti" -#: ../../include/nav.php:172 -msgid "Channel Directory" -msgstr "Elenchi pubblici dei canali" +#: ../../include/features.php:95 +msgid "Post Categories" +msgstr "Categorie dei post" -#: ../../include/nav.php:184 -msgid "Your grid" -msgstr "La tua rete" +#: ../../include/features.php:95 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi post" -#: ../../include/nav.php:185 -msgid "Mark all grid notifications seen" -msgstr "Segna come lette le notifiche della tua rete" +#: ../../include/features.php:96 +msgid "Emoji Reactions" +msgstr "Risposte emoji" -#: ../../include/nav.php:187 -msgid "Channel home" -msgstr "Bacheca del canale" +#: ../../include/features.php:96 +msgid "Add emoji reaction ability to posts" +msgstr "Permetti di rispondere ai post con degli emoji" -#: ../../include/nav.php:188 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche del canale" +#: ../../include/features.php:97 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" -#: ../../include/nav.php:194 -msgid "Notices" -msgstr "Avvisi" +#: ../../include/features.php:98 +msgid "Dislike Posts" +msgstr "Non mi piace" -#: ../../include/nav.php:194 -msgid "Notifications" -msgstr "Notifiche" +#: ../../include/features.php:98 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" -#: ../../include/nav.php:195 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" +#: ../../include/features.php:99 +msgid "Star Posts" +msgstr "Post con stella" -#: ../../include/nav.php:198 -msgid "Private mail" -msgstr "Messaggi privati" +#: ../../include/features.php:99 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per segnare i post preferiti" -#: ../../include/nav.php:199 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" +#: ../../include/features.php:100 +msgid "Tag Cloud" +msgstr "Nuvola di tag" -#: ../../include/nav.php:200 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" +#: ../../include/features.php:100 +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/nav.php:206 -msgid "Event Calendar" -msgstr "Calendario" +#: ../../include/features.php:109 +msgid "Connection Filtering" +msgstr "Filtro sui contatti" -#: ../../include/nav.php:207 -msgid "See all events" -msgstr "Guarda tutti gli eventi" +#: ../../include/features.php:110 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtra i post che ricevi con parole chiave" -#: ../../include/nav.php:208 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" +#: ../../include/features.php:120 +msgid "Premium Channel" +msgstr "Canale premium" -#: ../../include/nav.php:211 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" +#: ../../include/features.php:121 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" -#: ../../include/nav.php:213 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" +#: ../../include/features.php:128 +msgid "Advanced Directory Search" +msgstr "Ricerca avanzata sugli elenchi pubblici" -#: ../../include/nav.php:221 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" +#: ../../include/features.php:129 +msgid "Allows creation of complex directory search queries" +msgstr "Permette la creazione di ricerche complesse negli elenchi" -#: ../../include/nav.php:257 -msgid "@name, #tag, ?doc, content" -msgstr "@nome, #tag, ?guida, contenuto" +#: ../../include/features.php:135 +msgid "Advanced Theme and Layout Settings" +msgstr "Impostazioni avanzate del tema e dei layout" -#: ../../include/nav.php:258 -msgid "Please wait..." -msgstr "Attendere..." +#: ../../include/features.php:136 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Permette una personalizzazione accurata del tema e dei layout" #: ../../view/theme/redbasic/php/config.php:9 msgid "Focus (Hubzilla default)" @@ -10058,66 +10107,66 @@ msgstr "Dimensione foto dell'autore della conversazione" msgid "Set size of followup author photos" msgstr "Dimensione foto dei partecipanti alla conversazione" -#: ../../boot.php:1194 +#: ../../boot.php:1195 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Cerca %1$s (%2$s)" -#: ../../boot.php:1194 +#: ../../boot.php:1195 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1512 +#: ../../boot.php:1513 #, php-format msgid "Update %s failed. See error logs." msgstr "%s: aggiornamento fallito. Controlla i log di errore." -#: ../../boot.php:1515 +#: ../../boot.php:1516 #, php-format msgid "Update Error at %s" msgstr "Errore di aggiornamento su %s" -#: ../../boot.php:1719 +#: ../../boot.php:1720 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Registrati per accedere ai servizi e alle applicazioni di Hubzilla" -#: ../../boot.php:1740 +#: ../../boot.php:1741 msgid "Login/Email" msgstr "Login/Email" -#: ../../boot.php:1741 +#: ../../boot.php:1742 msgid "Password" msgstr "Password" -#: ../../boot.php:1742 +#: ../../boot.php:1743 msgid "Remember me" msgstr "Resta connesso" -#: ../../boot.php:1745 +#: ../../boot.php:1746 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: ../../boot.php:2314 +#: ../../boot.php:2315 msgid "toggle mobile" msgstr "attiva/disattiva versione mobile" -#: ../../boot.php:2469 +#: ../../boot.php:2470 msgid "Website SSL certificate is not valid. Please correct." msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." -#: ../../boot.php:2472 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Errore SSL su %s" -#: ../../boot.php:2576 +#: ../../boot.php:2577 msgid "Cron/Scheduled tasks not running." msgstr "Processi cron non avviati." -#: ../../boot.php:2580 +#: ../../boot.php:2581 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron non è stato eseguito %s" diff --git a/view/it/hstrings.php b/view/it/hstrings.php index 6d75728bb..fd69c67ec 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -72,105 +72,23 @@ App::$strings["Requested profile is not available."] = "Il profilo richiesto non App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; App::$strings["Away"] = "Assente"; App::$strings["Online"] = "Online"; -App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; -App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; -App::$strings["Could not create table."] = "Impossibile creare le tabelle."; -App::$strings["Your site database has been installed."] = "Il database del sito è stato installato."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; -App::$strings["System check"] = "Verifica del sistema"; -App::$strings["Next"] = "Successivo"; -App::$strings["Check again"] = "Verifica di nuovo"; -App::$strings["Database connection"] = "Connessione al database"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per poter installare \$Projectname è necessario fornire i parametri di connessione al tuo database."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database deve già esistere. Se non esiste, crealo prima di continuare."; -App::$strings["Database Server Name"] = "Server del database"; -App::$strings["Default is 127.0.0.1"] = "Il valore predefinito è 127.0.0.1"; -App::$strings["Database Port"] = "Port del database"; -App::$strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard"; -App::$strings["Database Login Name"] = "Utente database"; -App::$strings["Database Login Password"] = "Password database"; -App::$strings["Database Name"] = "Nome database"; -App::$strings["Database Type"] = "Tipo database"; -App::$strings["Site administrator email address"] = "Indirizzo email dell'amministratore del hub"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla."; -App::$strings["Website URL"] = "URL completo del sito"; -App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; -App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub"; -App::$strings["Submit"] = "Salva"; -App::$strings["Basic/Minimal Social Networking"] = "Social network basilare"; -App::$strings["Standard Configuration (default)"] = "Configurazione standard (predefinita)"; -App::$strings["Professional"] = "Professionale"; -App::$strings["Site settings"] = "Impostazioni del hub"; -App::$strings["Server Configuration/Role"] = "Configurazione del server"; -App::$strings["PHP version 5.5 or greater is required."] = "E' necessario PHP versione 5.5 o superiore."; -App::$strings["PHP version"] = "Versione PHP"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web"; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron."; -App::$strings["PHP executable path"] = "Path del comando PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."; -App::$strings["Command line PHP"] = "PHP da riga di comando"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -App::$strings["This is required for message delivery to work."] = "E' necessario perché funzioni la consegna dei messaggi."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Puoi regolare queste impostazioni sul server in php.ini"; -App::$strings["PHP upload limits"] = "Limiti PHP in upload"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Genera chiavi di cifratura"; -App::$strings["libCurl PHP module"] = "modulo PHP libCurl"; -App::$strings["GD graphics PHP module"] = "modulo PHP GD graphics"; -App::$strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; -App::$strings["mysqli or postgres PHP module"] = "modulo PHP per mysqli oppure prostgres"; -App::$strings["mb_string PHP module"] = "modulo PHP mb_string"; -App::$strings["xml PHP module"] = "modulo xml PHP"; -App::$strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato"; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato."; -App::$strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato"; -App::$strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è installato."; -App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo."; -App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s"; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene."; -App::$strings["%s is writable"] = "%s è scrivibile"; -App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo"; -App::$strings["store is writable"] = "l'archivio è scrivibile"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito."; -App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; -App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; -App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server."; -App::$strings["SSL certificate validation"] = "Validazione del certificato SSL"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:"; -App::$strings["Url rewrite is working"] = "Url rewrite funziona correttamente"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito."; -App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -App::$strings["

    What next

    "] = "

    I prossimi passi

    "; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; +App::$strings["Invalid message"] = "Messaggio non valido"; +App::$strings["no results"] = "nessun risultato"; +App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; +App::$strings["queued"] = "in coda"; +App::$strings["posted"] = "inviato"; +App::$strings["accepted for delivery"] = "accettato per la spedizione"; +App::$strings["updated"] = "aggiornato"; +App::$strings["update ignored"] = "aggiornamento ignorato"; +App::$strings["permission denied"] = "permessi non sufficienti"; +App::$strings["recipient not found"] = "Destinatario non trovato"; +App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; +App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; +App::$strings["mail delivered"] = "messaggio recapitato"; +App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; +App::$strings["Options"] = "Opzioni"; +App::$strings["Redeliver"] = "Reinvia"; App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; -App::$strings["No such channel"] = "Canale sconosciuto"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Cerca risultati con:"; -App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; -App::$strings["Privacy group: "] = "Gruppo di canali:"; -App::$strings["Invalid connection."] = "Contatto non valido."; App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; App::$strings["Passwords do not match."] = "Le password non corrispondono."; @@ -201,334 +119,6 @@ App::$strings["Registration"] = "Registrazione"; App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; App::$strings["Register"] = "Registrati"; App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare."; -App::$strings["Authorize application connection"] = "Autorizza la app"; -App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; -App::$strings["Please login to continue."] = "Accedi al sito per continuare."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; -App::$strings["Yes"] = "Sì"; -App::$strings["No"] = "No"; -App::$strings["Bookmark added"] = "Segnalibro aggiunto"; -App::$strings["My Bookmarks"] = "I miei segnalibri"; -App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; -App::$strings["Name is required"] = "Il nome è obbligatorio"; -App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; -App::$strings["Update"] = "Aggiorna"; -App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token"; -App::$strings["Name and Password are required."] = "Nome e password sono obbligatori."; -App::$strings["Token saved."] = "Token salvato."; -App::$strings["Not valid email."] = "Email non valida."; -App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; -App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; -App::$strings["Technical skill level updated"] = "Livello tecnico aggiornato"; -App::$strings["Password verification failed."] = "Verifica della password fallita."; -App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; -App::$strings["Password changed."] = "Password cambiata."; -App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; -App::$strings["Friends"] = "Amici"; -App::$strings["Settings updated."] = "Impostazioni aggiornate."; -App::$strings["Add application"] = "Aggiungi una app"; -App::$strings["Cancel"] = "Annulla"; -App::$strings["Name of application"] = "Nome dell'applicazione"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Redirect"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"; -App::$strings["Icon url"] = "Url icona"; -App::$strings["Optional"] = "Facoltativo"; -App::$strings["Application not found."] = "Applicazione non trovata."; -App::$strings["Connected Apps"] = "App connesse"; -App::$strings["Client key starts with"] = "La client key inizia con"; -App::$strings["No name"] = "Nessun nome"; -App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; -App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; -App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; -App::$strings["Beginner/Basic"] = "Principiante"; -App::$strings["Novice - not skilled but willing to learn"] = "Novizio - disposto a imparare"; -App::$strings["Intermediate - somewhat comfortable"] = "Intermedio - con alcune conoscenze tecniche"; -App::$strings["Advanced - very comfortable"] = "Avanzato - a mio agio con gli aspetti tecnici"; -App::$strings["Expert - I can write computer code"] = "Esperto - posso scrivere codice"; -App::$strings["Wizard - I probably know more than you do"] = "Genio - probabilmente ne so più di te"; -App::$strings["Account Settings"] = "Il tuo account"; -App::$strings["Current Password"] = "Password attuale"; -App::$strings["Enter New Password"] = "Nuova password"; -App::$strings["Confirm New Password"] = "Conferma la nuova password"; -App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; -App::$strings["Your technical skill level"] = "Il tuo livello tecnico"; -App::$strings["Used to provide a member experience matched to your comfort level"] = "Serve a vedere solo gli aspetti tecnici che possano metterti a tuo agio"; -App::$strings["Email Address:"] = "Indirizzo email:"; -App::$strings["Remove Account"] = "Elimina l'account"; -App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; -App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; -App::$strings["Login Name"] = "Nome utente"; -App::$strings["Login Password"] = "Password"; -App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)"; -App::$strings["Their Settings"] = "Permessi concessi a te"; -App::$strings["My Settings"] = "Permessi che concedo"; -App::$strings["inherited"] = "derivato"; -App::$strings["Individual Permissions"] = "Permessi individuali"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle."; -App::$strings["Off"] = "Off"; -App::$strings["On"] = "On"; -App::$strings["Additional Features"] = "Funzionalità opzionali"; -App::$strings["Connector Settings"] = "Impostazioni del connettore"; -App::$strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; -App::$strings["%s - (Experimental)"] = "%s - (Sperimentale)"; -App::$strings["mobile"] = "mobile"; -App::$strings["Display Settings"] = "Aspetto"; -App::$strings["Theme Settings"] = "Impostazioni del tema"; -App::$strings["Custom Theme Settings"] = "Personalizzazione del tema"; -App::$strings["Content Settings"] = "Impostazioni dei contenuti"; -App::$strings["Display Theme:"] = "Tema per schermi medio grandi:"; -App::$strings["Select scheme"] = "Scegli uno schema"; -App::$strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; -App::$strings["Preload images before rendering the page"] = "Carica le immagini prima del rendering della pagina"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo"; -App::$strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili"; -App::$strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; -App::$strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:"; -App::$strings["Maximum of 100 items"] = "Massimo 100"; -App::$strings["Show emoticons (smilies) as images"] = "Mostra le faccine (smilies) come immagini"; -App::$strings["Link post titles to source"] = "Il link del titolo di un post porta al sito originale"; -App::$strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)"; -App::$strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog"; -App::$strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)"; -App::$strings["Use blog/list mode on grid page"] = "Mostra la tua rete in modalità blog"; -App::$strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)"; -App::$strings["click to expand content exceeding this height"] = "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori"; -App::$strings["Grid page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)"; -App::$strings["Nobody except yourself"] = "Nessuno tranne te"; -App::$strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso"; -App::$strings["Approved connections"] = "Contatti approvati"; -App::$strings["Any connections"] = "Tutti i contatti"; -App::$strings["Anybody on this website"] = "Chiunque su questo hub"; -App::$strings["Anybody in this network"] = "Chiunque su questa rete"; -App::$strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso"; -App::$strings["Anybody on the internet"] = "Chiunque su internet"; -App::$strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito negli elenchi pubblici dei canali"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; -App::$strings["or"] = "o"; -App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è"; -App::$strings["Channel Settings"] = "Impostazioni del canale"; -App::$strings["Basic Settings"] = "Impostazioni di base"; -App::$strings["Full Name:"] = "Nome completo:"; -App::$strings["Your Timezone:"] = "Il tuo fuso orario:"; -App::$strings["Default Post Location:"] = "Località predefinita:"; -App::$strings["Geographical location to display on your posts"] = "La posizione geografica da mostrare sui tuoi post"; -App::$strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; -App::$strings["Adult Content"] = "Contenuto per adulti"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"; -App::$strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"; -App::$strings["Hide my online presence"] = "Nascondi la mia presenza online"; -App::$strings["Prevents displaying in your profile that you are online"] = "Non mostrare sul tuo profilo quando sei online"; -App::$strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"; -App::$strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; -App::$strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi post"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; -App::$strings["Channel Permission Limits"] = "Limiti sui permessi del canale"; -App::$strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; -App::$strings["0 or blank to use the website limit."] = "0 o vuoto per usare i valori predefiniti."; -App::$strings["This website expires after %d days."] = "Per questo sito la scadenza è %d giorni. "; -App::$strings["This website does not expire imported content."] = "I contenuti di questo sito non hanno scadenza."; -App::$strings["The website limit takes precedence if lower than your limit."] = "Il limite del server ha la precedenza, se minore di quello impostato da te."; -App::$strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; -App::$strings["May reduce spam activity"] = "Serve a ridurre lo spam"; -App::$strings["Default Access Control List (ACL)"] = "Lista di accesso ai contenuti (ACL)"; -App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -App::$strings["Use my default audience setting for the type of object published"] = "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto"; -App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"; -App::$strings["Useful to reduce spamming"] = "Serve e ridurre lo spam"; -App::$strings["Notification Settings"] = "Impostazioni di notifica"; -App::$strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:"; -App::$strings["accepting a friend request"] = "accetto una nuova amicizia"; -App::$strings["joining a forum/community"] = "entro a far parte di un forum"; -App::$strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo"; -App::$strings["Send a notification email when:"] = "Invia una email di notifica quando:"; -App::$strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto"; -App::$strings["Your connections are confirmed"] = "I tuoi contatti sono confermati"; -App::$strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca"; -App::$strings["Someone writes a followup comment"] = "Qualcuno scrive un commento dopo di te"; -App::$strings["You receive a private message"] = "Ricevi un messaggio privato"; -App::$strings["You receive a friend suggestion"] = "Ti viene suggerito un amico"; -App::$strings["You are tagged in a post"] = "Sei taggato in un post"; -App::$strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un post"; -App::$strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:"; -App::$strings["Unseen grid activity"] = "Nuove attività nella rete"; -App::$strings["Unseen channel activity"] = "Novità nei canali"; -App::$strings["Unseen private messages"] = "Nuovi messaggi privati"; -App::$strings["Recommended"] = "Consigliato"; -App::$strings["Upcoming events"] = "Prossimi eventi"; -App::$strings["Events today"] = "Eventi di oggi"; -App::$strings["Upcoming birthdays"] = "Prossimi compleanni"; -App::$strings["Not available in all themes"] = "Non disponibile in tutti i temi"; -App::$strings["System (personal) notifications"] = "Notifiche personali dal sistema"; -App::$strings["System info messages"] = "Notifiche di sistema"; -App::$strings["System critical alerts"] = "Avvisi critici di sistema"; -App::$strings["New connections"] = "Nuovi contatti"; -App::$strings["System Registrations"] = "Registrazioni"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti"; -App::$strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi"; -App::$strings["Must be greater than 0"] = "Maggiore di 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; -App::$strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; -App::$strings["Miscellaneous Settings"] = "Impostazioni varie"; -App::$strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate"; -App::$strings["%Y - current year, %m - current month"] = "%Y - anno corrente, %m - mese corrente"; -App::$strings["Default file upload folder"] = "Cartella predefinita per i file caricati"; -App::$strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale"; -App::$strings["Remove Channel"] = "Elimina questo canale"; -App::$strings["Remove this channel."] = "Elimina questo canale."; -App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; -App::$strings["Start calendar week on monday"] = "La settimana inizia il lunedì"; -App::$strings["Photos"] = "Foto"; -App::$strings["Invalid item."] = "Elemento non valido."; -App::$strings["Channel not found."] = "Canale non trovato."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Salva nella cartella:"; -App::$strings["- select -"] = "- scegli -"; -App::$strings["Save"] = "Salva"; -App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; -App::$strings["Item not found."] = "Elemento non trovato."; -App::$strings["# Accounts"] = "# account"; -App::$strings["# blocked accounts"] = "# account bloccati"; -App::$strings["# expired accounts"] = "# account scaduti"; -App::$strings["# expiring accounts"] = "# account in scadenza"; -App::$strings["# Channels"] = "# canali"; -App::$strings["# primary"] = "# primari"; -App::$strings["# clones"] = "# cloni"; -App::$strings["Message queues"] = "Coda messaggi in uscita"; -App::$strings["Your software should be updated"] = "Il tuo software necessita di un aggiornamento"; -App::$strings["Administration"] = "Amministrazione"; -App::$strings["Summary"] = "Riepilogo"; -App::$strings["Registered accounts"] = "Account creati"; -App::$strings["Pending registrations"] = "Registrazioni da approvare"; -App::$strings["Registered channels"] = "Canali creati"; -App::$strings["Active plugins"] = "Plugin attivi"; -App::$strings["Version"] = "Versione"; -App::$strings["Repository version (master)"] = "Versione del repository (master)"; -App::$strings["Repository version (dev)"] = "Versione del repository (dev)"; -App::$strings["Site settings updated."] = "Impostazioni del sito salvate correttamente."; -App::$strings["Default"] = "Predefinito"; -App::$strings["experimental"] = "sperimentale"; -App::$strings["unsupported"] = "non supportato"; -App::$strings["Yes - with approval"] = "Sì - con approvazione"; -App::$strings["My site is not a public server"] = "Non è un server pubblico"; -App::$strings["My site has paid access only"] = "È un servizio a pagamento"; -App::$strings["My site has free access only"] = "È un servizio gratuito"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; -App::$strings["Site"] = "Sito"; -App::$strings["File upload"] = "Caricamento file"; -App::$strings["Policies"] = "Politiche"; -App::$strings["Advanced"] = "Avanzate"; -App::$strings["Site name"] = "Nome del sito"; -App::$strings["Banner/Logo"] = "Banner o logo"; -App::$strings["Administrator Information"] = "Informazioni sull'amministratore"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; -App::$strings["System language"] = "Lingua di sistema"; -App::$strings["System theme"] = "Tema di sistema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; -App::$strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili"; -App::$strings["Theme for mobile devices"] = "Tema per i dispositivi mobili"; -App::$strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti"; -App::$strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)"; -App::$strings["Maximum image size"] = "Dimensione massima immagini"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; -App::$strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; -App::$strings["Invitation only"] = "Solo con invito"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; -App::$strings["Register text"] = "Testo di registrazione"; -App::$strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)"; -App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file."; -App::$strings["Preserve site homepage URL"] = "Conserva l'URL della homepage"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect."; -App::$strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; -App::$strings["Allowed friend domains"] = "Domini fidati e consentiti"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; -App::$strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; -App::$strings["Force publish"] = "Forza la publicazione del profilo"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito."; -App::$strings["Import Public Streams"] = "Suggerisci contenuti pubblici della rete Hubzilla"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione."; -App::$strings["Login on Homepage"] = "Login sulla homepage"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti."; -App::$strings["Enable context help"] = "Abilita la guida contestuale"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente"; -App::$strings["Directory Server URL"] = "URL del directory server"; -App::$strings["Default directory server"] = "Directory server predefinito"; -App::$strings["Proxy user"] = "Utente proxy"; -App::$strings["Proxy URL"] = "URL proxy"; -App::$strings["Network timeout"] = "Timeout rete"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; -App::$strings["Delivery interval"] = "Recapito ritardato"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; -App::$strings["Deliveries per process"] = "Tentativi di recapito per processo"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5"; -App::$strings["Poll interval"] = "Intervallo di polling"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; -App::$strings["Maximum Load Average"] = "Carico massimo medio"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)"; -App::$strings["0 for no expiration of imported content"] = "0 per non avere scadenza"; -App::$strings["Lock feature %s"] = "Rendi non modificabile %s"; -App::$strings["Manage Additional Features"] = "Funzionalità opzionali"; -App::$strings["No server found"] = "Server non trovato"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "per il canale"; -App::$strings["on server"] = "sul server"; -App::$strings["Status"] = "Stato"; -App::$strings["Server"] = "Server"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:"; -App::$strings["https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "] = "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato."; -App::$strings["Security"] = "Sicurezza"; -App::$strings["Block public"] = "Blocca pagine pubbliche"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Imposta il \"Transport Security\" HTTP header"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Imposta il \"Content Security Policy\" HTTP header"; -App::$strings["Allowed email domains"] = "Domini email consentiti"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; -App::$strings["Not allowed email domains"] = "Domini email non consentiti"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; -App::$strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti"; -App::$strings["Block communications from these sites"] = "Blocca la comunicazione da questi siti"; -App::$strings["Allow communications only from these channels"] = "Permetti la comunicazione solo da questi canali"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali"; -App::$strings["Block communications from these channels"] = "Blocca la comunicazione da questi canali"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Permetti di incorporare contenuti solamente da siti sicuri (SSL)."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Incorpora i contenuti HTML non filtrati solo da questi domini"; -App::$strings["One site per line. By default embedded content is filtered."] = "Un sito per riga. Normalmente i contenuti incorporati sono filtrati."; -App::$strings["Block embedded HTML from these domains"] = "Blocca i contenuti incorporati HTML da questi domini"; -App::$strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; -App::$strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; -App::$strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; -App::$strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; -App::$strings["No failed updates."] = "Nessun aggiornamento fallito."; -App::$strings["Failed Updates"] = "Aggiornamenti falliti."; -App::$strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; -App::$strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; -App::$strings["Queue Statistics"] = "Statistiche della coda"; -App::$strings["Total Entries"] = "Totale"; -App::$strings["Priority"] = "Priorità"; -App::$strings["Destination URL"] = "URL di destinazione"; -App::$strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline"; -App::$strings["Empty queue for this hub"] = "Svuota la coda per questo hub"; -App::$strings["Last known contact"] = "Ultimo scambio dati"; App::$strings["%s account blocked/unblocked"] = array( 0 => "Modificato il blocco su %s account", 1 => "Modificato il blocco verso %s", @@ -541,7 +131,9 @@ App::$strings["Account not found"] = "Account non trovato"; App::$strings["Account '%s' deleted"] = "Account '%s' eliminato"; App::$strings["Account '%s' blocked"] = "Aggiunto un blocco verso '%s'"; App::$strings["Account '%s' unblocked"] = "Rimosso il blocco verso '%s'"; +App::$strings["Administration"] = "Amministrazione"; App::$strings["Accounts"] = "Account"; +App::$strings["Submit"] = "Salva"; App::$strings["select all"] = "seleziona tutti"; App::$strings["Registrations waiting for confirm"] = "Registrazioni in attesa di conferma"; App::$strings["Request date"] = "Data richiesta"; @@ -551,6 +143,7 @@ App::$strings["Approve"] = "Approva"; App::$strings["Deny"] = "Nega"; App::$strings["Block"] = "Blocca"; App::$strings["Unblock"] = "Sblocca"; +App::$strings["ID"] = "ID"; App::$strings["All Channels"] = "Tutti i canali"; App::$strings["Register date"] = "Data registrazione"; App::$strings["Last login"] = "Ultimo accesso"; @@ -586,6 +179,27 @@ App::$strings["UID"] = "UID"; App::$strings["Address"] = "Indirizzo"; App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +App::$strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; +App::$strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; +App::$strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; +App::$strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; +App::$strings["No failed updates."] = "Nessun aggiornamento fallito."; +App::$strings["Failed Updates"] = "Aggiornamenti falliti."; +App::$strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; +App::$strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; +App::$strings["Off"] = "Off"; +App::$strings["On"] = "On"; +App::$strings["Lock feature %s"] = "Rendi non modificabile %s"; +App::$strings["Manage Additional Features"] = "Funzionalità opzionali"; +App::$strings["Log settings updated."] = "Impostazioni di log aggiornate."; +App::$strings["Logs"] = "Log"; +App::$strings["Clear"] = "Pulisci"; +App::$strings["Debugging"] = "Debugging"; +App::$strings["Log file"] = "File di log"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Relativo alla directory base del server web. Deve essere scrivibile."; +App::$strings["Log level"] = "Livello di log"; +App::$strings["Item not found."] = "Elemento non trovato."; App::$strings["Plugin %s disabled."] = "Plugin %s non attivo."; App::$strings["Plugin %s enabled."] = "Plugin %s attivo."; App::$strings["Disable"] = "Disattiva"; @@ -608,23 +222,13 @@ App::$strings["(optional)"] = "(facoltativo)"; App::$strings["Download Plugin Repo"] = "Scarica il repository del plugin"; App::$strings["Install new repo"] = "Installa un nuovo repository"; App::$strings["Install"] = "Installa"; +App::$strings["Cancel"] = "Annulla"; App::$strings["Manage Repos"] = "Gestisci i repository"; App::$strings["Installed Plugin Repositories"] = "Repository per i plugin installati"; App::$strings["Install a New Plugin Repository"] = "Installa un nuovo repository per i plugin"; +App::$strings["Update"] = "Aggiorna"; App::$strings["Switch branch"] = "Cambia branch"; App::$strings["Remove"] = "Rimuovi"; -App::$strings["No themes found."] = "Nessun tema trovato."; -App::$strings["Screenshot"] = "Istantanea dello schermo"; -App::$strings["Themes"] = "Temi"; -App::$strings["[Experimental]"] = "[Sperimentale]"; -App::$strings["[Unsupported]"] = "[Non supportato]"; -App::$strings["Log settings updated."] = "Impostazioni di log aggiornate."; -App::$strings["Logs"] = "Log"; -App::$strings["Clear"] = "Pulisci"; -App::$strings["Debugging"] = "Debugging"; -App::$strings["Log file"] = "File di log"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Relativo alla directory base del server web. Deve essere scrivibile."; -App::$strings["Log level"] = "Livello di log"; App::$strings["New Profile Field"] = "Nuovo campo del profilo"; App::$strings["Field nickname"] = "Nome breve del campo"; App::$strings["System name of field"] = "Nome di sistema del campo"; @@ -633,6 +237,7 @@ App::$strings["Field Name"] = "Nome del campo"; App::$strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo"; App::$strings["Help text"] = "Testo di aiuto"; App::$strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)"; +App::$strings["Save"] = "Salva"; App::$strings["Field definition not found"] = "Impossibile trovare la definizione del campo"; App::$strings["Edit Profile Field"] = "Modifica campo del profilo"; App::$strings["Profile Fields"] = "Campi del profilo"; @@ -642,73 +247,145 @@ App::$strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base) App::$strings["All available fields"] = "Tutti i campi disponibili"; App::$strings["Custom Fields"] = "Campi personalizzati"; App::$strings["Create Custom Field"] = "Aggiungi campo personalizzato"; -App::$strings["Blocked"] = "Bloccati"; -App::$strings["Ignored"] = "Ignorati"; -App::$strings["Hidden"] = "Nascosti"; -App::$strings["Archived"] = "Archiviati"; -App::$strings["New"] = "Novità"; -App::$strings["All"] = "Tutti"; -App::$strings["New Connections"] = "Nuovi contatti"; -App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; -App::$strings["All Connections"] = "Tutti i contatti"; -App::$strings["Show all connections"] = "Mostra tutti i contatti"; -App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; -App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; -App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; -App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; -App::$strings["Pending approval"] = "In attesa di conferma"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifica il contatto"; -App::$strings["Delete connection"] = "Elimina il contatto"; -App::$strings["Channel address"] = "Indirizzo del canale"; -App::$strings["Network"] = "Network"; -App::$strings["Connected"] = "In contatto"; -App::$strings["Approve connection"] = "Approva questo contatto"; -App::$strings["Ignore connection"] = "Ignora il contatto"; -App::$strings["Ignore"] = "Ignora"; -App::$strings["Recent activity"] = "Attività recenti"; -App::$strings["Connections"] = "Contatti"; -App::$strings["Search"] = "Cerca"; -App::$strings["Search your connections"] = "Cerca tra i contatti"; -App::$strings["Connections search"] = "Ricerca tra i contatti"; -App::$strings["Find"] = "Cerca"; -App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -App::$strings["Cover Photos"] = "Copertine del canale"; -App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; -App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; -App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; -App::$strings["female"] = "femmina"; -App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["male"] = "maschio"; -App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["cover photo"] = "Copertina del canale"; -App::$strings["Photo not available."] = "Foto non disponibile."; -App::$strings["Upload File:"] = "Carica un file:"; -App::$strings["Select a profile:"] = "Seleziona un profilo:"; -App::$strings["Upload Cover Photo"] = "Carica una copertina"; -App::$strings["skip this step"] = "salta questo passaggio"; -App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -App::$strings["Crop Image"] = "Ritaglia immagine"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; -App::$strings["Done Editing"] = "Modifica terminata"; -App::$strings["Invalid message"] = "Messaggio non valido"; -App::$strings["no results"] = "nessun risultato"; -App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; -App::$strings["queued"] = "in coda"; -App::$strings["posted"] = "inviato"; -App::$strings["accepted for delivery"] = "accettato per la spedizione"; -App::$strings["updated"] = "aggiornato"; -App::$strings["update ignored"] = "aggiornamento ignorato"; -App::$strings["permission denied"] = "permessi non sufficienti"; -App::$strings["recipient not found"] = "Destinatario non trovato"; -App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; -App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; -App::$strings["mail delivered"] = "messaggio recapitato"; -App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; -App::$strings["Options"] = "Opzioni"; -App::$strings["Redeliver"] = "Reinvia"; +App::$strings["Queue Statistics"] = "Statistiche della coda"; +App::$strings["Total Entries"] = "Totale"; +App::$strings["Priority"] = "Priorità"; +App::$strings["Destination URL"] = "URL di destinazione"; +App::$strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline"; +App::$strings["Empty queue for this hub"] = "Svuota la coda per questo hub"; +App::$strings["Last known contact"] = "Ultimo scambio dati"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:"; +App::$strings["https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "] = "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    "; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato."; +App::$strings["Security"] = "Sicurezza"; +App::$strings["Block public"] = "Blocca pagine pubbliche"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; +App::$strings["Set \"Transport Security\" HTTP header"] = "Imposta il \"Transport Security\" HTTP header"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Imposta il \"Content Security Policy\" HTTP header"; +App::$strings["Allowed email domains"] = "Domini email consentiti"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; +App::$strings["Not allowed email domains"] = "Domini email non consentiti"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; +App::$strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti"; +App::$strings["Block communications from these sites"] = "Blocca la comunicazione da questi siti"; +App::$strings["Allow communications only from these channels"] = "Permetti la comunicazione solo da questi canali"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali"; +App::$strings["Block communications from these channels"] = "Blocca la comunicazione da questi canali"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Permetti di incorporare contenuti solamente da siti sicuri (SSL)."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Incorpora i contenuti HTML non filtrati solo da questi domini"; +App::$strings["One site per line. By default embedded content is filtered."] = "Un sito per riga. Normalmente i contenuti incorporati sono filtrati."; +App::$strings["Block embedded HTML from these domains"] = "Blocca i contenuti incorporati HTML da questi domini"; +App::$strings["Site settings updated."] = "Impostazioni del sito salvate correttamente."; +App::$strings["Default"] = "Predefinito"; +App::$strings["mobile"] = "mobile"; +App::$strings["experimental"] = "sperimentale"; +App::$strings["unsupported"] = "non supportato"; +App::$strings["No"] = "No"; +App::$strings["Yes - with approval"] = "Sì - con approvazione"; +App::$strings["Yes"] = "Sì"; +App::$strings["My site is not a public server"] = "Non è un server pubblico"; +App::$strings["My site has paid access only"] = "È un servizio a pagamento"; +App::$strings["My site has free access only"] = "È un servizio gratuito"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; +App::$strings["Basic/Minimal Social Networking"] = "Social network minimale"; +App::$strings["Standard Configuration (default)"] = "Configurazione standard (predefinita)"; +App::$strings["Professional"] = "Professionale"; +App::$strings["Beginner/Basic"] = "Principiante"; +App::$strings["Novice - not skilled but willing to learn"] = "Novizio - disposto a imparare"; +App::$strings["Intermediate - somewhat comfortable"] = "Intermedio - con alcune conoscenze tecniche"; +App::$strings["Advanced - very comfortable"] = "Avanzato - a mio agio con gli aspetti tecnici"; +App::$strings["Expert - I can write computer code"] = "Esperto - posso scrivere codice"; +App::$strings["Wizard - I probably know more than you do"] = "Genio - probabilmente ne so più di te"; +App::$strings["Site"] = "Sito"; +App::$strings["File upload"] = "Caricamento file"; +App::$strings["Policies"] = "Politiche"; +App::$strings["Advanced"] = "Avanzate"; +App::$strings["Site name"] = "Nome del sito"; +App::$strings["Server Configuration/Role"] = "Configurazione del server"; +App::$strings["Site default technical skill level"] = "Livello tecnico predefinito per gli utenti del sito"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Utile a fornire agli utenti un livello tecnico del sito che rispetti le loro conoscenze"; +App::$strings["Lock the technical skill level setting"] = "Il livello tecnico non potrà essere modificato"; +App::$strings["Members can set their own technical comfort level by default"] = "Gli utenti possono scegliere il livello tecnico preferito"; +App::$strings["Banner/Logo"] = "Banner o logo"; +App::$strings["Administrator Information"] = "Informazioni sull'amministratore"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; +App::$strings["System language"] = "Lingua di sistema"; +App::$strings["System theme"] = "Tema di sistema"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; +App::$strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili"; +App::$strings["Theme for mobile devices"] = "Tema per i dispositivi mobili"; +App::$strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti"; +App::$strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)"; +App::$strings["Maximum image size"] = "Dimensione massima immagini"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; +App::$strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; +App::$strings["Invitation only"] = "Solo con invito"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; +App::$strings["Register text"] = "Testo di registrazione"; +App::$strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)"; +App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file."; +App::$strings["Preserve site homepage URL"] = "Conserva l'URL della homepage"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect."; +App::$strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; +App::$strings["Allowed friend domains"] = "Domini fidati e consentiti"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; +App::$strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; +App::$strings["Force publish"] = "Forza la publicazione del profilo"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito."; +App::$strings["Import Public Streams"] = "Suggerisci contenuti pubblici della rete Hubzilla"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione."; +App::$strings["Login on Homepage"] = "Login sulla homepage"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti."; +App::$strings["Enable context help"] = "Abilita la guida contestuale"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente"; +App::$strings["Directory Server URL"] = "URL del directory server"; +App::$strings["Default directory server"] = "Directory server predefinito"; +App::$strings["Proxy user"] = "Utente proxy"; +App::$strings["Proxy URL"] = "URL proxy"; +App::$strings["Network timeout"] = "Timeout rete"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; +App::$strings["Delivery interval"] = "Recapito ritardato"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; +App::$strings["Deliveries per process"] = "Tentativi di recapito per processo"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5"; +App::$strings["Poll interval"] = "Intervallo di polling"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; +App::$strings["Maximum Load Average"] = "Carico massimo medio"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)"; +App::$strings["0 for no expiration of imported content"] = "0 per non avere scadenza"; +App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; +App::$strings["No themes found."] = "Nessun tema trovato."; +App::$strings["Screenshot"] = "Istantanea dello schermo"; +App::$strings["Themes"] = "Temi"; +App::$strings["[Experimental]"] = "[Sperimentale]"; +App::$strings["[Unsupported]"] = "[Non supportato]"; +App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; +App::$strings["Nothing to import."] = "Non c'è niente da importare."; +App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; +App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; +App::$strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; +App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; +App::$strings["Import completed."] = "L'importazione è terminata con successo."; +App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; +App::$strings["Import Channel"] = "Importa un canale"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."; +App::$strings["File to Upload"] = "File da caricare"; +App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; +App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; +App::$strings["Your old login password"] = "La password per il vecchio hub"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."; +App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; App::$strings["Public access denied."] = "Accesso pubblico negato."; App::$strings["%d rating"] = array( 0 => "%d valutazione", @@ -729,6 +406,7 @@ App::$strings["Don't suggest"] = "Non fornire suggerimenti"; App::$strings["Common connections:"] = "Contatti in comune:"; App::$strings["Global Directory"] = "Elenchi pubblici globali"; App::$strings["Local Directory"] = "Elenco canali su questo hub"; +App::$strings["Find"] = "Cerca"; App::$strings["Finding:"] = "Ricerca:"; App::$strings["Channel Suggestions"] = "Canali suggeriti"; App::$strings["next page"] = "pagina successiva"; @@ -739,8 +417,73 @@ App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; App::$strings["Newest to Oldest"] = "Prima i più recenti"; App::$strings["Oldest to Newest"] = "Prima i più vecchi"; App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; -App::$strings["This site is not a directory server"] = "Questo non è un directory server"; -App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; +App::$strings["Bookmark added"] = "Segnalibro aggiunto"; +App::$strings["My Bookmarks"] = "I miei segnalibri"; +App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; +App::$strings["Edit post"] = "Modifica post"; +App::$strings["No ratings"] = "Nessuna valutazione"; +App::$strings["Ratings"] = "Valutazioni"; +App::$strings["Rating: "] = "Valutazione:"; +App::$strings["Website: "] = "Sito web:"; +App::$strings["Description: "] = "Descrizione:"; +App::$strings["Photos"] = "Foto"; +App::$strings["Invalid item."] = "Elemento non valido."; +App::$strings["Channel not found."] = "Canale non trovato."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Salva nella cartella:"; +App::$strings["- select -"] = "- scegli -"; +App::$strings["Blocked"] = "Bloccati"; +App::$strings["Ignored"] = "Ignorati"; +App::$strings["Hidden"] = "Nascosti"; +App::$strings["Archived"] = "Archiviati"; +App::$strings["New"] = "Novità"; +App::$strings["All"] = "Tutti"; +App::$strings["New Connections"] = "Nuovi contatti"; +App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; +App::$strings["All Connections"] = "Tutti i contatti"; +App::$strings["Show all connections"] = "Mostra tutti i contatti"; +App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; +App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; +App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; +App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; +App::$strings["Pending approval"] = "In attesa di conferma"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Modifica il contatto"; +App::$strings["Delete connection"] = "Elimina il contatto"; +App::$strings["Channel address"] = "Indirizzo del canale"; +App::$strings["Network"] = "Network"; +App::$strings["Status"] = "Stato"; +App::$strings["Connected"] = "In contatto"; +App::$strings["Approve connection"] = "Approva questo contatto"; +App::$strings["Ignore connection"] = "Ignora il contatto"; +App::$strings["Ignore"] = "Ignora"; +App::$strings["Recent activity"] = "Attività recenti"; +App::$strings["Connections"] = "Contatti"; +App::$strings["Search"] = "Cerca"; +App::$strings["Search your connections"] = "Cerca tra i contatti"; +App::$strings["Connections search"] = "Ricerca tra i contatti"; +App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +App::$strings["Cover Photos"] = "Copertine del canale"; +App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; +App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; +App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +App::$strings["female"] = "femmina"; +App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["male"] = "maschio"; +App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["cover photo"] = "Copertina del canale"; +App::$strings["Photo not available."] = "Foto non disponibile."; +App::$strings["Upload File:"] = "Carica un file:"; +App::$strings["Select a profile:"] = "Seleziona un profilo:"; +App::$strings["Upload Cover Photo"] = "Carica una copertina"; +App::$strings["or"] = "o"; +App::$strings["skip this step"] = "salta questo passaggio"; +App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +App::$strings["Crop Image"] = "Ritaglia immagine"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; +App::$strings["Done Editing"] = "Modifica terminata"; App::$strings["Item not found"] = "Elemento non trovato"; App::$strings["Block Name"] = "Nome del block"; App::$strings["Insert web link"] = "Inserisci un indirizzo web"; @@ -793,16 +536,37 @@ App::$strings["Categories (optional, comma separated list)"] = "Categorie (facol App::$strings["Version ID"] = "ID versione"; App::$strings["Price of app"] = "Prezzo app"; App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; -App::$strings["Edit post"] = "Modifica post"; +App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; +App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; +App::$strings["Messages"] = "Messaggi"; +App::$strings["Message recalled."] = "Messaggio revocato."; +App::$strings["Conversation removed."] = "Conversazione rimossa."; +App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; +App::$strings["Send Private Message"] = "Invia un messaggio privato"; +App::$strings["To:"] = "A:"; +App::$strings["Subject:"] = "Oggetto:"; +App::$strings["Your message:"] = "Il tuo messaggio:"; +App::$strings["Attach file"] = "Allega file"; +App::$strings["Send"] = "Invia"; +App::$strings["Set expiration date"] = "Data di scadenza"; +App::$strings["Encrypt text"] = "Cifratura del messaggio"; +App::$strings["Delete message"] = "Elimina il messaggio"; +App::$strings["Delivery report"] = "Rapporto di trasmissione"; +App::$strings["Recall message"] = "Revoca il messaggio"; +App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; +App::$strings["Delete Conversation"] = "Elimina la conversazione"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; +App::$strings["Send Reply"] = "Invia la risposta"; +App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; App::$strings["Item not available."] = "Elemento non disponibile."; -App::$strings["Layout updated."] = "Layout aggiornato."; -App::$strings["Feature disabled."] = "Funzionalità disattivata."; -App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; -App::$strings["Layout not found."] = "Layout non trovato."; -App::$strings["Module Name:"] = "Nome del modulo:"; -App::$strings["Layout Help"] = "Guida al layout"; App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; +App::$strings["Documentation Search"] = "Ricerca nella guida"; +App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; App::$strings["\$Projectname"] = "\$Projectname"; App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; @@ -819,8 +583,16 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incol App::$strings["Share this file"] = "Condividi questo file"; App::$strings["Show URL to this file"] = "Mostra l'URL del file"; App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; -App::$strings["network"] = "rete"; -App::$strings["RSS"] = "RSS"; +App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["Continue"] = "Continua"; +App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; +App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; +App::$strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; App::$strings["Privacy group created."] = "Gruppo di canali creato."; App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; @@ -834,90 +606,31 @@ App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; App::$strings["Members"] = "Membri"; App::$strings["All Connected Channels"] = "Tutti i canali connessi"; App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; -App::$strings["Profile Photos"] = "Foto del profilo"; -App::$strings["Album not found."] = "Album non trovato."; -App::$strings["Delete Album"] = "Elimina album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file "; -App::$strings["Delete Photo"] = "Elimina foto"; -App::$strings["No photos selected"] = "Nessuna foto selezionata"; -App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; -App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; -App::$strings["Upload Photos"] = "Carica foto"; -App::$strings["Enter an album name"] = "Scegli il nome dell'album"; -App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; -App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; -App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; -App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; -App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; -App::$strings["Contact Photos"] = "Foto dei contatti"; -App::$strings["Show Newest First"] = "Prima i più recenti"; -App::$strings["Show Oldest First"] = "Prima i più vecchi"; -App::$strings["View Photo"] = "Guarda la foto"; -App::$strings["Edit Album"] = "Modifica album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; -App::$strings["Photo not available"] = "Foto non disponibile"; -App::$strings["Use as profile photo"] = "Usa come foto del profilo"; -App::$strings["Use as cover photo"] = "Usa come copertina del canale"; -App::$strings["Private Photo"] = "Foto privata"; -App::$strings["Previous"] = "Precendente"; -App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; -App::$strings["Edit photo"] = "Modifica la foto"; -App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; -App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; -App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; -App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; -App::$strings["Caption"] = "Didascalia"; -App::$strings["Add a Tag"] = "Aggiungi tag"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; -App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; +App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; +App::$strings["Import selected"] = "Importa i selezionati"; +App::$strings["Export Webpage Elements"] = "Esporta gli elementi della pagina web"; +App::$strings["Export selected"] = "Esporta i selezionati"; +App::$strings["Webpages"] = "Pagine web"; App::$strings["Share"] = "Condividi"; -App::$strings["Please wait"] = "Attendere"; -App::$strings["This is you"] = "Questo sei tu"; -App::$strings["Comment"] = "Commento"; +App::$strings["View"] = "Guarda"; App::$strings["Preview"] = "Anteprima"; -App::$strings["__ctx:title__ Likes"] = "Mi piace"; -App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; -App::$strings["__ctx:title__ Agree"] = "D'accordo"; -App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; -App::$strings["__ctx:title__ Abstain"] = "Astenuti"; -App::$strings["__ctx:title__ Attending"] = "Partecipano"; -App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; -App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; -App::$strings["View all"] = "Vedi tutto"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); -App::$strings["Photo Tools"] = "Gestione foto"; -App::$strings["In This Photo:"] = "In questa foto:"; -App::$strings["Map"] = "Mappa"; -App::$strings["__ctx:noun__ Likes"] = "Mi piace"; -App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; -App::$strings["Close"] = "Chiudi"; -App::$strings["View Album"] = "Guarda l'album"; -App::$strings["Recent Photos"] = "Foto recenti"; +App::$strings["Actions"] = "Azioni"; +App::$strings["Page Link"] = "Link alla pagina"; +App::$strings["Page Title"] = "Titolo della pagina"; +App::$strings["Invalid file type."] = "Tipo di file non valido."; +App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; +App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; +App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; +App::$strings["Import complete."] = "Importazione completata."; App::$strings["webpage"] = "pagina web"; App::$strings["block"] = "block"; App::$strings["layout"] = "layout"; App::$strings["menu"] = "menu"; App::$strings["%s element installed"] = "%s elemento installato"; App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; -App::$strings["Nothing to import."] = "Non c'è niente da importare."; -App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; -App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; App::$strings["Import completed"] = "Importazione completata"; App::$strings["Import Items"] = "Importa i contenuti"; App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; -App::$strings["File to Upload"] = "File da caricare"; App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; @@ -930,7 +643,6 @@ App::$strings["%d message sent."] = array( App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; App::$strings["Send invitations"] = "Spedisci inviti"; App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -App::$strings["Your message:"] = "Il tuo messaggio:"; App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; @@ -949,7 +661,13 @@ App::$strings["Sync Now"] = "Sincronizza ora"; App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; -App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; +App::$strings["No such channel"] = "Canale sconosciuto"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Cerca risultati con:"; +App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; +App::$strings["Privacy group: "] = "Gruppo di canali:"; +App::$strings["Invalid connection."] = "Contatto non valido."; App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; @@ -986,6 +704,7 @@ App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; App::$strings["Menu Item Permissions"] = "Permessi del menu"; +App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; App::$strings["Link Name"] = "Nome link"; App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; @@ -1010,14 +729,11 @@ App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato." App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; App::$strings["Link text"] = "Testo del link"; -App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; -App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; -App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; -App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; -App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; +App::$strings["Rating"] = "Valutazioni"; +App::$strings["Website:"] = "Sito web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; App::$strings["No valid account found."] = "Nessun account valido trovato."; App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; @@ -1111,20 +827,10 @@ App::$strings["Profile Match"] = "Profili corrispondenti"; App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; App::$strings["is interested in:"] = "interessi personali:"; App::$strings["No matches"] = "Nessun risultato"; -App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; -App::$strings["Import selected"] = "Importa i selezionati"; -App::$strings["Export Webpage Elements"] = "Esporta gli elementi della pagina web"; -App::$strings["Export selected"] = "Esporta i selezionati"; -App::$strings["Webpages"] = "Pagine web"; -App::$strings["View"] = "Guarda"; -App::$strings["Actions"] = "Azioni"; -App::$strings["Page Link"] = "Link alla pagina"; -App::$strings["Page Title"] = "Titolo della pagina"; -App::$strings["Invalid file type."] = "Tipo di file non valido."; -App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; -App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; -App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; -App::$strings["Import complete."] = "Importazione completata."; +App::$strings["Authorize application connection"] = "Autorizza la app"; +App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; +App::$strings["Please login to continue."] = "Accedi al sito per continuare."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; @@ -1155,6 +861,8 @@ App::$strings["Link to Source"] = "Link al sito d'origine"; App::$strings["calendar"] = "calendario"; App::$strings["Edit Event"] = "Modifica l'evento"; App::$strings["Create Event"] = "Crea un evento"; +App::$strings["Previous"] = "Precendente"; +App::$strings["Next"] = "Successivo"; App::$strings["Export"] = "Esporta"; App::$strings["Month"] = "Mese"; App::$strings["Week"] = "Settimana"; @@ -1162,21 +870,14 @@ App::$strings["Day"] = "Giorno"; App::$strings["Today"] = "Oggi"; App::$strings["Event removed"] = "Evento eliminato"; App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; -App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; -App::$strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; -App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; -App::$strings["Import completed."] = "L'importazione è terminata con successo."; -App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; -App::$strings["Import Channel"] = "Importa un canale"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."; -App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; -App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; -App::$strings["Your old login password"] = "La password per il vecchio hub"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."; -App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; +App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; +App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; +App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; +App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; +App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; App::$strings["Create Channel"] = "Crea un canale"; App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati."; App::$strings["or import an existing channel from another location."] = "oppure importa un canale esistente da un altro server/hub."; @@ -1195,6 +896,91 @@ App::$strings["Poke, prod or do other things to somebody"] = "Manda un poke o al App::$strings["Recipient"] = "Destinatario"; App::$strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; App::$strings["Make this post private"] = "Rendi privato questo post"; +App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; +App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; +App::$strings["Could not create table."] = "Impossibile creare le tabelle."; +App::$strings["Your site database has been installed."] = "Il database del sito è stato installato."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; +App::$strings["System check"] = "Verifica del sistema"; +App::$strings["Check again"] = "Verifica di nuovo"; +App::$strings["Database connection"] = "Connessione al database"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per poter installare \$Projectname è necessario fornire i parametri di connessione al tuo database."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database deve già esistere. Se non esiste, crealo prima di continuare."; +App::$strings["Database Server Name"] = "Server del database"; +App::$strings["Default is 127.0.0.1"] = "Il valore predefinito è 127.0.0.1"; +App::$strings["Database Port"] = "Port del database"; +App::$strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard"; +App::$strings["Database Login Name"] = "Utente database"; +App::$strings["Database Login Password"] = "Password database"; +App::$strings["Database Name"] = "Nome database"; +App::$strings["Database Type"] = "Tipo database"; +App::$strings["Site administrator email address"] = "Indirizzo email dell'amministratore del hub"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla."; +App::$strings["Website URL"] = "URL completo del sito"; +App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; +App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub"; +App::$strings["Site settings"] = "Impostazioni del hub"; +App::$strings["PHP version 5.5 or greater is required."] = "E' necessario PHP versione 5.5 o superiore."; +App::$strings["PHP version"] = "Versione PHP"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web"; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron."; +App::$strings["PHP executable path"] = "Path del comando PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."; +App::$strings["Command line PHP"] = "PHP da riga di comando"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; +App::$strings["This is required for message delivery to work."] = "E' necessario perché funzioni la consegna dei messaggi."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta."; +App::$strings["You can adjust these settings in the servers php.ini."] = "Puoi regolare queste impostazioni sul server in php.ini"; +App::$strings["PHP upload limits"] = "Limiti PHP in upload"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Genera chiavi di cifratura"; +App::$strings["libCurl PHP module"] = "modulo PHP libCurl"; +App::$strings["GD graphics PHP module"] = "modulo PHP GD graphics"; +App::$strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; +App::$strings["mysqli or postgres PHP module"] = "modulo PHP per mysqli oppure prostgres"; +App::$strings["mb_string PHP module"] = "modulo PHP mb_string"; +App::$strings["xml PHP module"] = "modulo xml PHP"; +App::$strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato"; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato."; +App::$strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; +App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato"; +App::$strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è installato."; +App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo."; +App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi."; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla."; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP."; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s"; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene."; +App::$strings["%s is writable"] = "%s è scrivibile"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo"; +App::$strings["store is writable"] = "l'archivio è scrivibile"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito."; +App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!"; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; +App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser."; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server."; +App::$strings["SSL certificate validation"] = "Validazione del certificato SSL"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:"; +App::$strings["Url rewrite is working"] = "Url rewrite funziona correttamente"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito."; +App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; +App::$strings["

    What next

    "] = "

    I prossimi passi

    "; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; App::$strings["Post successful."] = "Inviato!"; App::$strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; @@ -1205,15 +991,7 @@ App::$strings["Visible To"] = "Visibile a"; App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; App::$strings["Configuration Editor"] = "Editor di configurazione"; App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."; -App::$strings["Public Hubs"] = "Hub pubblici"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; -App::$strings["Hub URL"] = "URL del hub"; -App::$strings["Access Type"] = "Tipo di accesso"; -App::$strings["Registration Policy"] = "Politica di registrazione"; -App::$strings["Stats"] = "Statistiche"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valutazioni"; -App::$strings["Rate"] = "Valuta"; +App::$strings["Apps"] = "App"; App::$strings["Version %s"] = "Versione %s"; App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; @@ -1234,11 +1012,7 @@ App::$strings["Help"] = "Guida"; App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; App::$strings["Layout Description"] = "Descrizione del layout"; App::$strings["Download PDL file"] = "Scarica il file PDL"; -App::$strings["Rating"] = "Valutazioni"; -App::$strings["Website:"] = "Sito web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; -App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; +App::$strings["Profile Photos"] = "Foto del profilo"; App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."; App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; App::$strings["Permissions denied."] = "Permesso negato."; @@ -1246,35 +1020,22 @@ App::$strings["Import"] = "Importa"; App::$strings["No channel."] = "Nessun canale."; App::$strings["Common connections"] = "Contatti in comune"; App::$strings["No connections in common."] = "Nessun contatto in comune."; -App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; -App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; -App::$strings["Messages"] = "Messaggi"; -App::$strings["Message recalled."] = "Messaggio revocato."; -App::$strings["Conversation removed."] = "Conversazione rimossa."; -App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; -App::$strings["Send Private Message"] = "Invia un messaggio privato"; -App::$strings["To:"] = "A:"; -App::$strings["Subject:"] = "Oggetto:"; -App::$strings["Attach file"] = "Allega file"; -App::$strings["Send"] = "Invia"; -App::$strings["Set expiration date"] = "Data di scadenza"; -App::$strings["Encrypt text"] = "Cifratura del messaggio"; -App::$strings["Delete message"] = "Elimina il messaggio"; -App::$strings["Delivery report"] = "Rapporto di trasmissione"; -App::$strings["Recall message"] = "Revoca il messaggio"; -App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; -App::$strings["Delete Conversation"] = "Elimina la conversazione"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; -App::$strings["Send Reply"] = "Invia la risposta"; -App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; -App::$strings["No ratings"] = "Nessuna valutazione"; -App::$strings["Rating: "] = "Valutazione:"; -App::$strings["Website: "] = "Sito web:"; -App::$strings["Description: "] = "Descrizione:"; +App::$strings["network"] = "rete"; +App::$strings["RSS"] = "RSS"; +App::$strings["Public Hubs"] = "Hub pubblici"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; +App::$strings["Hub URL"] = "URL del hub"; +App::$strings["Access Type"] = "Tipo di accesso"; +App::$strings["Registration Policy"] = "Politica di registrazione"; +App::$strings["Stats"] = "Statistiche"; +App::$strings["Software"] = "Software"; +App::$strings["Rate"] = "Valuta"; +App::$strings["Layout updated."] = "Layout aggiornato."; +App::$strings["Feature disabled."] = "Funzionalità disattivata."; +App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; +App::$strings["Layout not found."] = "Layout non trovato."; +App::$strings["Module Name:"] = "Nome del modulo:"; +App::$strings["Layout Help"] = "Guida al layout"; App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; App::$strings["Connection updated."] = "Contatto aggiornato."; @@ -1306,6 +1067,7 @@ App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle App::$strings["Delete this connection"] = "Elimina questo contatto"; App::$strings["Me"] = "Me"; App::$strings["Family"] = "Famiglia"; +App::$strings["Friends"] = "Amici"; App::$strings["Acquaintances"] = "Conoscenti"; App::$strings["Approve this connection"] = "Approva questo contatto"; App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; @@ -1330,25 +1092,19 @@ App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank App::$strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave"; App::$strings["This information is public!"] = "Questa informazione è pubblica!"; App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; +App::$strings["inherited"] = "derivato"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; +App::$strings["Their Settings"] = "Permessi concessi a te"; +App::$strings["My Settings"] = "Permessi che concedo"; +App::$strings["Individual Permissions"] = "Permessi individuali"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle."; App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; App::$strings["Last update:"] = "Ultimo aggiornamento:"; -App::$strings["Documentation Search"] = "Ricerca nella guida"; -App::$strings["Help:"] = "Guida:"; -App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; -App::$strings["Continue"] = "Continua"; -App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; -App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; -App::$strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; App::$strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; App::$strings["Save Bookmark"] = "Salva segnalibro"; App::$strings["URL of bookmark"] = "URL del segnalibro"; App::$strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; +App::$strings["This site is not a directory server"] = "Questo non è un directory server"; App::$strings["Authentication failed."] = "Autenticazione fallita."; App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub"; App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; @@ -1362,11 +1118,13 @@ App::$strings["This action is permanent and can not be undone!"] = "Questo coman App::$strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati."; App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete."; +App::$strings["Remove Account"] = "Elimina l'account"; App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password."; App::$strings["Remove This Channel"] = "Elimina questo canale"; App::$strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete."; App::$strings["Remove this channel and all its clones from the network"] = "Elimina questo canale e tutti i suoi cloni dalla rete"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; +App::$strings["Remove Channel"] = "Elimina questo canale"; App::$strings["Export Channel"] = "Esporta il canale"; App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato."; App::$strings["Export Content"] = "Esporta i contenuti"; @@ -1379,6 +1137,10 @@ App::$strings["These content files may be imported or restored by visiting "Mi piace", + 1 => "Mi piace", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +App::$strings["Photo Tools"] = "Gestione foto"; +App::$strings["In This Photo:"] = "In questa foto:"; +App::$strings["Map"] = "Mappa"; +App::$strings["__ctx:noun__ Likes"] = "Mi piace"; +App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; +App::$strings["Close"] = "Chiudi"; +App::$strings["View Album"] = "Guarda l'album"; +App::$strings["Recent Photos"] = "Foto recenti"; App::$strings["Channel added."] = "Canale aggiunto."; App::$strings["No connections."] = "Nessun contatto."; App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; @@ -1468,6 +1294,179 @@ App::$strings["Expiration"] = "Scadenza"; App::$strings["min"] = "min"; App::$strings["Xchan Lookup"] = "Ricerca canale"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; +App::$strings["# Accounts"] = "# account"; +App::$strings["# blocked accounts"] = "# account bloccati"; +App::$strings["# expired accounts"] = "# account scaduti"; +App::$strings["# expiring accounts"] = "# account in scadenza"; +App::$strings["# Channels"] = "# canali"; +App::$strings["# primary"] = "# primari"; +App::$strings["# clones"] = "# cloni"; +App::$strings["Message queues"] = "Coda messaggi in uscita"; +App::$strings["Your software should be updated"] = "Il tuo software necessita di un aggiornamento"; +App::$strings["Summary"] = "Riepilogo"; +App::$strings["Registered accounts"] = "Account creati"; +App::$strings["Pending registrations"] = "Registrazioni da approvare"; +App::$strings["Registered channels"] = "Canali creati"; +App::$strings["Active plugins"] = "Plugin attivi"; +App::$strings["Version"] = "Versione"; +App::$strings["Repository version (master)"] = "Versione del repository (master)"; +App::$strings["Repository version (dev)"] = "Versione del repository (dev)"; +App::$strings["Not valid email."] = "Email non valida."; +App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; +App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; +App::$strings["Technical skill level updated"] = "Livello tecnico aggiornato"; +App::$strings["Password verification failed."] = "Verifica della password fallita."; +App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; +App::$strings["Password changed."] = "Password cambiata."; +App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; +App::$strings["Account Settings"] = "Il tuo account"; +App::$strings["Current Password"] = "Password attuale"; +App::$strings["Enter New Password"] = "Nuova password"; +App::$strings["Confirm New Password"] = "Conferma la nuova password"; +App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; +App::$strings["Your technical skill level"] = "Il tuo livello tecnico"; +App::$strings["Used to provide a member experience matched to your comfort level"] = "Serve a vedere solo gli aspetti tecnici adeguati alle tue conoscenze"; +App::$strings["Email Address:"] = "Indirizzo email:"; +App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; +App::$strings["Settings updated."] = "Impostazioni aggiornate."; +App::$strings["Nobody except yourself"] = "Nessuno tranne te"; +App::$strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso"; +App::$strings["Approved connections"] = "Contatti approvati"; +App::$strings["Any connections"] = "Tutti i contatti"; +App::$strings["Anybody on this website"] = "Chiunque su questo hub"; +App::$strings["Anybody in this network"] = "Chiunque su questa rete"; +App::$strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso"; +App::$strings["Anybody on the internet"] = "Chiunque su internet"; +App::$strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito negli elenchi pubblici dei canali"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; +App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è"; +App::$strings["Channel Settings"] = "Impostazioni del canale"; +App::$strings["Basic Settings"] = "Impostazioni di base"; +App::$strings["Full Name:"] = "Nome completo:"; +App::$strings["Your Timezone:"] = "Il tuo fuso orario:"; +App::$strings["Default Post Location:"] = "Località predefinita:"; +App::$strings["Geographical location to display on your posts"] = "La posizione geografica da mostrare sui tuoi post"; +App::$strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; +App::$strings["Adult Content"] = "Contenuto per adulti"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"; +App::$strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"; +App::$strings["Hide my online presence"] = "Nascondi la mia presenza online"; +App::$strings["Prevents displaying in your profile that you are online"] = "Non mostrare sul tuo profilo quando sei online"; +App::$strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"; +App::$strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico"; +App::$strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; +App::$strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi post"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; +App::$strings["Channel Permission Limits"] = "Limiti sui permessi del canale"; +App::$strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; +App::$strings["0 or blank to use the website limit."] = "0 o vuoto per usare i valori predefiniti."; +App::$strings["This website expires after %d days."] = "Per questo sito la scadenza è %d giorni. "; +App::$strings["This website does not expire imported content."] = "I contenuti di questo sito non hanno scadenza."; +App::$strings["The website limit takes precedence if lower than your limit."] = "Il limite del server ha la precedenza, se minore di quello impostato da te."; +App::$strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; +App::$strings["May reduce spam activity"] = "Serve a ridurre lo spam"; +App::$strings["Default Access Control List (ACL)"] = "Lista di accesso ai contenuti (ACL)"; +App::$strings["Use my default audience setting for the type of object published"] = "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto"; +App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; +App::$strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"; +App::$strings["Useful to reduce spamming"] = "Serve e ridurre lo spam"; +App::$strings["Notification Settings"] = "Impostazioni di notifica"; +App::$strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:"; +App::$strings["accepting a friend request"] = "accetto una nuova amicizia"; +App::$strings["joining a forum/community"] = "entro a far parte di un forum"; +App::$strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo"; +App::$strings["Send a notification email when:"] = "Invia una email di notifica quando:"; +App::$strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto"; +App::$strings["Your connections are confirmed"] = "I tuoi contatti sono confermati"; +App::$strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca"; +App::$strings["Someone writes a followup comment"] = "Qualcuno scrive un commento dopo di te"; +App::$strings["You receive a private message"] = "Ricevi un messaggio privato"; +App::$strings["You receive a friend suggestion"] = "Ti viene suggerito un amico"; +App::$strings["You are tagged in a post"] = "Sei taggato in un post"; +App::$strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un post"; +App::$strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:"; +App::$strings["Unseen grid activity"] = "Nuove attività nella rete"; +App::$strings["Unseen channel activity"] = "Novità nei canali"; +App::$strings["Unseen private messages"] = "Nuovi messaggi privati"; +App::$strings["Recommended"] = "Consigliato"; +App::$strings["Upcoming events"] = "Prossimi eventi"; +App::$strings["Events today"] = "Eventi di oggi"; +App::$strings["Upcoming birthdays"] = "Prossimi compleanni"; +App::$strings["Not available in all themes"] = "Non disponibile in tutti i temi"; +App::$strings["System (personal) notifications"] = "Notifiche personali dal sistema"; +App::$strings["System info messages"] = "Notifiche di sistema"; +App::$strings["System critical alerts"] = "Avvisi critici di sistema"; +App::$strings["New connections"] = "Nuovi contatti"; +App::$strings["System Registrations"] = "Registrazioni"; +App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti"; +App::$strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi"; +App::$strings["Must be greater than 0"] = "Maggiore di 0"; +App::$strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; +App::$strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; +App::$strings["Miscellaneous Settings"] = "Impostazioni varie"; +App::$strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate"; +App::$strings["%Y - current year, %m - current month"] = "%Y - anno corrente, %m - mese corrente"; +App::$strings["Default file upload folder"] = "Cartella predefinita per i file caricati"; +App::$strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale"; +App::$strings["Remove this channel."] = "Elimina questo canale."; +App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; +App::$strings["Start calendar week on monday"] = "La settimana inizia il lunedì"; +App::$strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; +App::$strings["%s - (Experimental)"] = "%s - (Sperimentale)"; +App::$strings["Display Settings"] = "Aspetto"; +App::$strings["Theme Settings"] = "Impostazioni del tema"; +App::$strings["Custom Theme Settings"] = "Personalizzazione del tema"; +App::$strings["Content Settings"] = "Impostazioni dei contenuti"; +App::$strings["Display Theme:"] = "Tema per schermi medio grandi:"; +App::$strings["Select scheme"] = "Scegli uno schema"; +App::$strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; +App::$strings["Preload images before rendering the page"] = "Carica le immagini prima del rendering della pagina"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo"; +App::$strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili"; +App::$strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; +App::$strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:"; +App::$strings["Maximum of 100 items"] = "Massimo 100"; +App::$strings["Show emoticons (smilies) as images"] = "Mostra le faccine (smilies) come immagini"; +App::$strings["Link post titles to source"] = "Il link del titolo di un post porta al sito originale"; +App::$strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)"; +App::$strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog"; +App::$strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)"; +App::$strings["Use blog/list mode on grid page"] = "Mostra la tua rete in modalità blog"; +App::$strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)"; +App::$strings["click to expand content exceeding this height"] = "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori"; +App::$strings["Grid page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)"; +App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; +App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; +App::$strings["Additional Features"] = "Funzionalità opzionali"; +App::$strings["Name is required"] = "Il nome è obbligatorio"; +App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; +App::$strings["Add application"] = "Aggiungi una app"; +App::$strings["Name of application"] = "Nome dell'applicazione"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Redirect"] = "Redirect"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"; +App::$strings["Icon url"] = "Url icona"; +App::$strings["Application not found."] = "Applicazione non trovata."; +App::$strings["Connected Apps"] = "App connesse"; +App::$strings["Client key starts with"] = "La client key inizia con"; +App::$strings["No name"] = "Nessun nome"; +App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; +App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token"; +App::$strings["Name and Password are required."] = "Nome e password sono obbligatori."; +App::$strings["Token saved."] = "Token salvato."; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; +App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; +App::$strings["Login Name"] = "Nome utente"; +App::$strings["Login Password"] = "Password"; +App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)"; App::$strings["Missing room name"] = "Chat senza nome"; App::$strings["Duplicate room name"] = "Il nome della chat è duplicato"; App::$strings["Invalid room specifier."] = "Il nome della chat non è valido."; @@ -1613,64 +1612,92 @@ App::$strings["Zot"] = "Zot"; App::$strings["LinkedIn"] = "LinkedIn"; App::$strings["XMPP/IM"] = "XMPP/IM"; App::$strings["MySpace"] = "MySpace"; -App::$strings["Embedded content"] = "Contenuti incorporati"; -App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; -App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; -App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; -App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; -App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -App::$strings["New window"] = "Nuova finestra"; -App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; -App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; -App::$strings["Public Timeline"] = "Diario pubblico"; -App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; -App::$strings["Empty name"] = "Nome vuoto"; -App::$strings["Name too long"] = "Nome troppo lungo"; -App::$strings["No account identifier"] = "Account senza identificativo"; -App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; -App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; -App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; -App::$strings["Default Profile"] = "Profilo predefinito"; -App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; -App::$strings["Create New Profile"] = "Crea un nuovo profilo"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; +App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; +App::$strings["a new photo"] = "una nuova foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; +App::$strings["Photo Albums"] = "Album foto"; +App::$strings["Upload New Photos"] = "Carica nuove foto"; +App::$strings["Logout"] = "Esci"; +App::$strings["End this session"] = "Chiudi questa sessione"; +App::$strings["Home"] = "Bacheca"; +App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; +App::$strings["Your profile page"] = "Il tuo profilo"; +App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; App::$strings["Edit Profile"] = "Modifica il profilo"; -App::$strings["Visible to everybody"] = "Visibile a tutti"; -App::$strings["Gender:"] = "Sesso:"; -App::$strings["Status:"] = "Stato:"; -App::$strings["Homepage:"] = "Home page:"; -App::$strings["Online Now"] = "Online adesso"; -App::$strings["Like this channel"] = "Mi piace questo canale"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Compleanno:"; -App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; -App::$strings["Tags:"] = "Tag:"; -App::$strings["Political Views:"] = "Orientamento politico:"; -App::$strings["Religion:"] = "Religione:"; -App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; -App::$strings["Likes:"] = "Mi piace:"; -App::$strings["Dislikes:"] = "Non mi piace:"; -App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; -App::$strings["My other channels:"] = "I miei altri canali:"; -App::$strings["Musical interests:"] = "Gusti musicali:"; -App::$strings["Books, literature:"] = "Libri, letteratura:"; -App::$strings["Television:"] = "Televisione:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; -App::$strings["Love/Romance:"] = "Amore:"; -App::$strings["Work/employment:"] = "Lavoro:"; -App::$strings["School/education:"] = "Scuola:"; -App::$strings["Like this thing"] = "Mi piace"; +App::$strings["Edit your profile"] = "Modifica il tuo profilo"; +App::$strings["Your photos"] = "Le tue foto"; +App::$strings["Your files"] = "I tuoi file"; +App::$strings["Your chatrooms"] = "Le tue chat"; +App::$strings["Bookmarks"] = "Segnalibri"; +App::$strings["Your bookmarks"] = "I tuoi segnalibri"; +App::$strings["Your webpages"] = "Le tue pagine web"; +App::$strings["Your wiki"] = "La tua wiki"; +App::$strings["Sign in"] = "Accedi"; +App::$strings["%s - click to logout"] = "%s - clicca per uscire"; +App::$strings["Remote authentication"] = "Accedi dal tuo hub"; +App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; +App::$strings["Home Page"] = "Bacheca"; +App::$strings["Create an account"] = "Crea un account"; +App::$strings["Help and documentation"] = "Guida e documentazione"; +App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; +App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; +App::$strings["Your grid"] = "La tua rete"; +App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; +App::$strings["Channel home"] = "Bacheca del canale"; +App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; +App::$strings["Notices"] = "Avvisi"; +App::$strings["Notifications"] = "Notifiche"; +App::$strings["See all notifications"] = "Vedi tutte le notifiche"; +App::$strings["Private mail"] = "Messaggi privati"; +App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; +App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; +App::$strings["Inbox"] = "In arrivo"; +App::$strings["Outbox"] = "Inviati"; +App::$strings["New Message"] = "Nuovo messaggio"; +App::$strings["Event Calendar"] = "Calendario"; +App::$strings["See all events"] = "Guarda tutti gli eventi"; +App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; +App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; +App::$strings["Admin"] = "Amministrazione"; +App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; +App::$strings["Loading..."] = "Caricamento in corso..."; +App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; +App::$strings["Please wait..."] = "Attendere..."; +App::$strings["Embedded content"] = "Contenuti incorporati"; +App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; +App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; +App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; +App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; +App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; +App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; +App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +App::$strings["Unable to import element \""] = "Impossibile importare l'elemento \""; +App::$strings["(Unknown)"] = "(Sconosciuto)"; +App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; +App::$strings["Visible to you only."] = "Visibile solo a te."; +App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; +App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; +App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; +App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; +App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; +App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; +App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; +App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; +App::$strings["Connection not found."] = "Contatto non trovato."; +App::$strings["profile photo"] = "foto del profilo"; App::$strings["Birthday"] = "Compleanno"; App::$strings["Age: "] = "Età:"; App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; @@ -1707,6 +1734,22 @@ App::$strings["__ctx:relative_date__ second"] = array( ); App::$strings["%1\$s's birthday"] = "Compleanno di %1\$s"; App::$strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s"; +App::$strings["Not a valid email address"] = "Email non valida"; +App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; +App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; +App::$strings["An invitation is required."] = "È necessario un invito."; +App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; +App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; +App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; +App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +App::$strings["your registration password"] = "la password di registrazione"; +App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +App::$strings["Account approved."] = "Account approvato."; +App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; +App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; App::$strings["Frequently"] = "Frequentemente"; App::$strings["Hourly"] = "Ogni ora"; App::$strings["Twice daily"] = "Due volte al giorno"; @@ -1769,25 +1812,27 @@ App::$strings["Uncertain"] = "Incerto/a"; App::$strings["It's complicated"] = "Relazione complicata"; App::$strings["Don't care"] = "Chi se ne frega"; App::$strings["Ask me"] = "Chiedimelo"; -App::$strings["(Unknown)"] = "(Sconosciuto)"; -App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; -App::$strings["Visible to you only."] = "Visibile solo a te."; -App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; -App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; -App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; -App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; -App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; -App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; -App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; -App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; -App::$strings["Connection not found."] = "Contatto non trovato."; -App::$strings["profile photo"] = "foto del profilo"; +App::$strings["Image/photo"] = "Immagine"; +App::$strings["Encrypted content"] = "Contenuto cifrato"; +App::$strings["Install %s element: "] = "Installa l'elemento %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; +App::$strings["$1 wrote:"] = "$1 ha scritto:"; +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["Starts:"] = "Inizio:"; +App::$strings["Finishes:"] = "Fine:"; +App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; +App::$strings["Not specified"] = "Non specificato"; +App::$strings["Needs Action"] = "Necessita di un intervento"; +App::$strings["Completed"] = "Completato"; +App::$strings["In Process"] = "In corso"; +App::$strings["Cancelled"] = "Annullato"; App::$strings["guest:"] = "ospite:"; App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; -App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; -App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["Help:"] = "Guida:"; App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; @@ -1797,16 +1842,6 @@ App::$strings["Edit group"] = "Modifica il gruppo"; App::$strings["Add privacy group"] = "Crea un gruppo di canali"; App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; App::$strings["add"] = "aggiungi"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; -App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; -App::$strings["a new photo"] = "una nuova foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; -App::$strings["Photo Albums"] = "Album foto"; -App::$strings["Upload New Photos"] = "Carica nuove foto"; -App::$strings["New Page"] = "Nuova pagina web"; -App::$strings["Title"] = "Titolo"; -App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; App::$strings["Item was not found."] = "Elemento non trovato."; App::$strings["No source file."] = "Nessun file di origine."; App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; @@ -1822,11 +1857,10 @@ App::$strings["Path not found."] = "Percorso del file non trovato."; App::$strings["mkdir failed."] = "mkdir fallito."; App::$strings["database storage failed."] = "scrittura su database fallita."; App::$strings["Empty path"] = "La posizione è vuota"; +App::$strings["New Page"] = "Nuova pagina web"; +App::$strings["Title"] = "Titolo"; App::$strings["Attachments:"] = "Allegati:"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; -App::$strings["Starts:"] = "Inizio:"; -App::$strings["Finishes:"] = "Fine:"; App::$strings["Delete this item?"] = "Eliminare questo elemento?"; App::$strings["%s show less"] = "%s riduci"; App::$strings["%s expand"] = "%s mostra tutto"; @@ -1916,94 +1950,66 @@ App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you overrid App::$strings["Show"] = "Mostra"; App::$strings["Don't show"] = "Non mostrare"; App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post."; -App::$strings["prev"] = "prec"; -App::$strings["first"] = "inizio"; -App::$strings["last"] = "fine"; -App::$strings["next"] = "succ"; -App::$strings["older"] = "più recenti"; -App::$strings["newer"] = "più nuovi"; -App::$strings["No connections"] = "Nessun contatto"; -App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; -App::$strings["poke"] = "poke"; -App::$strings["poked"] = "ha mandato un poke"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "ha effettuato un ping"; -App::$strings["prod"] = "spintone"; -App::$strings["prodded"] = "ha ricevuto uno spintone"; -App::$strings["slap"] = "schiaffo"; -App::$strings["slapped"] = "ha ricevuto uno schiaffo"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "ha ricevuto un finger"; -App::$strings["rebuff"] = "rifiuto"; -App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; -App::$strings["happy"] = "felice"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "calmo"; -App::$strings["tired"] = "stanco"; -App::$strings["perky"] = "vivace"; -App::$strings["angry"] = "arrabbiato"; -App::$strings["stupefied"] = "stupito"; -App::$strings["puzzled"] = "confuso"; -App::$strings["interested"] = "attento"; -App::$strings["bitter"] = "amaro"; -App::$strings["cheerful"] = "allegro"; -App::$strings["alive"] = "vivace"; -App::$strings["annoyed"] = "seccato"; -App::$strings["anxious"] = "ansioso"; -App::$strings["cranky"] = "irritabile"; -App::$strings["disturbed"] = "turbato"; -App::$strings["frustrated"] = "frustrato"; -App::$strings["depressed"] = "in depressione"; -App::$strings["motivated"] = "motivato"; -App::$strings["relaxed"] = "rilassato"; -App::$strings["surprised"] = "sorpreso"; -App::$strings["May"] = "Mag"; -App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; -App::$strings["unknown"] = "sconosciuta"; -App::$strings["remove category"] = "rimuovi la categoria"; -App::$strings["remove from file"] = "rimuovi dal file"; -App::$strings["default"] = "predefinito"; -App::$strings["Page layout"] = "Layout della pagina"; -App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; -App::$strings["Page content type"] = "Tipo di contenuto della pagina"; -App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; -App::$strings["activity"] = "l'attività"; -App::$strings["Design Tools"] = "Strumenti di design"; -App::$strings["Pages"] = "Pagine"; -App::$strings["Import website..."] = "Importazione sito web..."; -App::$strings["Select folder to import"] = "Scegli la cartella da importare"; -App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; -App::$strings["Import from cloud files:"] = "Importa da un file su cloud:"; -App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/percorso/alla/cartella"; -App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; -App::$strings["Select folder"] = "Scegli la cartella"; -App::$strings["Export website..."] = "Esporta il sito web..."; -App::$strings["Export to a zip file"] = "Esporta come file zip"; -App::$strings["website.zip"] = "sitoweb.zip"; -App::$strings["Enter a name for the zip file."] = "Scegli il nome del file zip."; -App::$strings["Export to cloud files"] = "Esporta nell'archivio cloud"; -App::$strings["/path/to/export/folder"] = "/percorso/alla/cartella"; -App::$strings["Enter a path to a cloud files destination."] = "Scegli la posizione su una cartella cloud."; -App::$strings["Specify folder"] = "Scegli la cartella"; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; -App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; -App::$strings["Unable to import element \""] = "Impossibile importare l'elemento \""; -App::$strings["Not a valid email address"] = "Email non valida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; -App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; -App::$strings["An invitation is required."] = "È necessario un invito."; -App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; -App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; -App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; -App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; -App::$strings["your registration password"] = "la password di registrazione"; -App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -App::$strings["Account approved."] = "Account approvato."; -App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; -App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; +App::$strings["Empty name"] = "Nome vuoto"; +App::$strings["Name too long"] = "Nome troppo lungo"; +App::$strings["No account identifier"] = "Account senza identificativo"; +App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; +App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; +App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; +App::$strings["Default Profile"] = "Profilo predefinito"; +App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +App::$strings["Create New Profile"] = "Crea un nuovo profilo"; +App::$strings["Visible to everybody"] = "Visibile a tutti"; +App::$strings["Gender:"] = "Sesso:"; +App::$strings["Status:"] = "Stato:"; +App::$strings["Homepage:"] = "Home page:"; +App::$strings["Online Now"] = "Online adesso"; +App::$strings["Like this channel"] = "Mi piace questo canale"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Compleanno:"; +App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; +App::$strings["Tags:"] = "Tag:"; +App::$strings["Political Views:"] = "Orientamento politico:"; +App::$strings["Religion:"] = "Religione:"; +App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; +App::$strings["Likes:"] = "Mi piace:"; +App::$strings["Dislikes:"] = "Non mi piace:"; +App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; +App::$strings["My other channels:"] = "I miei altri canali:"; +App::$strings["Musical interests:"] = "Gusti musicali:"; +App::$strings["Books, literature:"] = "Libri, letteratura:"; +App::$strings["Television:"] = "Televisione:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; +App::$strings["Love/Romance:"] = "Amore:"; +App::$strings["Work/employment:"] = "Lavoro:"; +App::$strings["School/education:"] = "Scuola:"; +App::$strings["Like this thing"] = "Mi piace"; +App::$strings["New window"] = "Nuova finestra"; +App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; +App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; +App::$strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +App::$strings["Find Channels"] = "Ricerca canali"; +App::$strings["Enter name or interest"] = "Scrivi un nome o un interesse"; +App::$strings["Connect/Follow"] = "Aggiungi"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; +App::$strings["Random Profile"] = "Profilo casuale"; +App::$strings["Invite Friends"] = "Invita amici"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; +App::$strings["Saved Folders"] = "Cartelle salvate"; +App::$strings["Everything"] = "Tutto"; +App::$strings["Categories"] = "Categorie"; +App::$strings["%d connection in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +App::$strings["show more"] = "mostra tutto"; App::$strings["Logged out."] = "Uscita effettuata."; App::$strings["Failed authentication"] = "Autenticazione fallita"; App::$strings["Login failed."] = "Accesso fallito."; @@ -2014,12 +2020,12 @@ App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; +App::$strings["poked"] = "ha mandato un poke"; App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; App::$strings["Categories:"] = "Categorie:"; App::$strings["Filed under:"] = "Classificato come:"; App::$strings["View in context"] = "Vedi nel contesto"; App::$strings["remove"] = "rimuovi"; -App::$strings["Loading..."] = "Caricamento in corso..."; App::$strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; App::$strings["View Source"] = "Vedi il sorgente"; App::$strings["Follow Thread"] = "Segui la discussione"; @@ -2075,7 +2081,6 @@ App::$strings["About"] = "Informazioni"; App::$strings["Profile Details"] = "Dettagli del profilo"; App::$strings["Files and Storage"] = "Archivio file"; App::$strings["Chatrooms"] = "Chat"; -App::$strings["Bookmarks"] = "Segnalibri"; App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; App::$strings["Manage Webpages"] = "Gestisci le pagine web"; App::$strings["__ctx:noun__ Attending"] = array( @@ -2102,7 +2107,6 @@ App::$strings["__ctx:noun__ Abstain"] = array( 0 => "Astenuto", 1 => "Astenuti", ); -App::$strings["Categories"] = "Categorie"; App::$strings["Tags"] = "Tag"; App::$strings["Keywords"] = "Parole chiave"; App::$strings["have"] = "ho"; @@ -2111,6 +2115,137 @@ App::$strings["want"] = "voglio"; App::$strings["wants"] = "vuole"; App::$strings["likes"] = "gli piace"; App::$strings["dislikes"] = "non gli piace"; +App::$strings["prev"] = "prec"; +App::$strings["first"] = "inizio"; +App::$strings["last"] = "fine"; +App::$strings["next"] = "succ"; +App::$strings["older"] = "più recenti"; +App::$strings["newer"] = "più nuovi"; +App::$strings["No connections"] = "Nessun contatto"; +App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; +App::$strings["poke"] = "poke"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "ha effettuato un ping"; +App::$strings["prod"] = "spintone"; +App::$strings["prodded"] = "ha ricevuto uno spintone"; +App::$strings["slap"] = "schiaffo"; +App::$strings["slapped"] = "ha ricevuto uno schiaffo"; +App::$strings["finger"] = "finger"; +App::$strings["fingered"] = "ha ricevuto un finger"; +App::$strings["rebuff"] = "rifiuto"; +App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; +App::$strings["happy"] = "felice"; +App::$strings["sad"] = "triste"; +App::$strings["mellow"] = "calmo"; +App::$strings["tired"] = "stanco"; +App::$strings["perky"] = "vivace"; +App::$strings["angry"] = "arrabbiato"; +App::$strings["stupefied"] = "stupito"; +App::$strings["puzzled"] = "confuso"; +App::$strings["interested"] = "attento"; +App::$strings["bitter"] = "amaro"; +App::$strings["cheerful"] = "allegro"; +App::$strings["alive"] = "vivace"; +App::$strings["annoyed"] = "seccato"; +App::$strings["anxious"] = "ansioso"; +App::$strings["cranky"] = "irritabile"; +App::$strings["disturbed"] = "turbato"; +App::$strings["frustrated"] = "frustrato"; +App::$strings["depressed"] = "in depressione"; +App::$strings["motivated"] = "motivato"; +App::$strings["relaxed"] = "rilassato"; +App::$strings["surprised"] = "sorpreso"; +App::$strings["May"] = "Mag"; +App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; +App::$strings["unknown"] = "sconosciuta"; +App::$strings["remove category"] = "rimuovi la categoria"; +App::$strings["remove from file"] = "rimuovi dal file"; +App::$strings["default"] = "predefinito"; +App::$strings["Page layout"] = "Layout della pagina"; +App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; +App::$strings["Page content type"] = "Tipo di contenuto della pagina"; +App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; +App::$strings["activity"] = "l'attività"; +App::$strings["Design Tools"] = "Strumenti di design"; +App::$strings["Pages"] = "Pagine"; +App::$strings["Import website..."] = "Importazione sito web..."; +App::$strings["Select folder to import"] = "Scegli la cartella da importare"; +App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; +App::$strings["Import from cloud files:"] = "Importa da un file su cloud:"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/posizione/della/cartella"; +App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; +App::$strings["Select folder"] = "Scegli la cartella"; +App::$strings["Export website..."] = "Esporta il sito web..."; +App::$strings["Export to a zip file"] = "Esporta come file zip"; +App::$strings["website.zip"] = "sitoweb.zip"; +App::$strings["Enter a name for the zip file."] = "Scegli il nome del file zip."; +App::$strings["Export to cloud files"] = "Esporta nell'archivio cloud"; +App::$strings["/path/to/export/folder"] = "/percorso/alla/cartella"; +App::$strings["Enter a path to a cloud files destination."] = "Scegli la posizione su una cartella cloud."; +App::$strings["Specify folder"] = "Scegli la cartella"; +App::$strings["Public Timeline"] = "Diario pubblico"; +App::$strings["Directory Options"] = "Visibilità negli elenchi pubblici"; +App::$strings["Safe Mode"] = "Modalità SafeSearch"; +App::$strings["Public Forums Only"] = "Solo forum pubblici"; +App::$strings["This Website Only"] = "Solo in questo sito"; +App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; +App::$strings["[no subject]"] = "[nessun titolo]"; +App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; +App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nuova app"; +App::$strings["Suggestions"] = "Suggerimenti"; +App::$strings["See more..."] = "Altro..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; +App::$strings["Add New Connection"] = "Aggiungi un contatto"; +App::$strings["Enter channel address"] = "Indirizzo del canale"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; +App::$strings["Notes"] = "Note"; +App::$strings["Remove term"] = "Rimuovi termine"; +App::$strings["Saved Searches"] = "Ricerche salvate"; +App::$strings["Archives"] = "Archivi"; +App::$strings["Refresh"] = "Aggiorna"; +App::$strings["Account settings"] = "Il tuo account"; +App::$strings["Channel settings"] = "Impostazioni del canale"; +App::$strings["Additional features"] = "Funzionalità opzionali"; +App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; +App::$strings["Display settings"] = "Aspetto"; +App::$strings["Manage locations"] = "Gestione cloni"; +App::$strings["Export channel"] = "Esporta il canale"; +App::$strings["Connected apps"] = "App connesse"; +App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +App::$strings["Private Mail Menu"] = "Menu messaggi privati"; +App::$strings["Combined View"] = "Vista combinata"; +App::$strings["Conversations"] = "Conversazioni"; +App::$strings["Received Messages"] = "Ricevuti"; +App::$strings["Sent Messages"] = "Inviati"; +App::$strings["No messages."] = "Nessun messaggio."; +App::$strings["Delete conversation"] = "Elimina la conversazione"; +App::$strings["Events Tools"] = "Gestione eventi"; +App::$strings["Export Calendar"] = "Esporta calendario"; +App::$strings["Import Calendar"] = "Importa calendario"; +App::$strings["Overview"] = "Riepilogo"; +App::$strings["Chat Members"] = "Partecipanti"; +App::$strings["Wiki List"] = "Elenco wiki"; +App::$strings["Wiki Pages"] = "Pagine wiki"; +App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +App::$strings["Suggested Chatrooms"] = "Chat suggerite"; +App::$strings["photo/image"] = "foto/immagine"; +App::$strings["Click to show more"] = "Clicca per mostrare tutto"; +App::$strings["Rating Tools"] = "Valutazione"; +App::$strings["Rate Me"] = "Valutami"; +App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Attività"; +App::$strings["Documentation"] = "Guida"; +App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; +App::$strings["Inspect queue"] = "Coda di attesa"; +App::$strings["DB updates"] = "Aggiornamenti al DB"; +App::$strings["Plugin Features"] = "Plugin"; +App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; +App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; App::$strings["General Features"] = "Funzionalità di base"; App::$strings["Content Expiration"] = "Scadenza"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; @@ -2151,7 +2286,6 @@ App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; App::$strings["Search by Date"] = "Ricerca per data"; App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; -App::$strings["Saved Searches"] = "Ricerche salvate"; App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; App::$strings["Network Personal Tab"] = "Attività personale"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; @@ -2167,7 +2301,6 @@ App::$strings["Post Categories"] = "Categorie dei post"; App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; App::$strings["Emoji Reactions"] = "Risposte emoji"; App::$strings["Add emoji reaction ability to posts"] = "Permetti di rispondere ai post con degli emoji"; -App::$strings["Saved Folders"] = "Cartelle salvate"; App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; App::$strings["Dislike Posts"] = "Non mi piace"; App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; @@ -2183,143 +2316,6 @@ App::$strings["Advanced Directory Search"] = "Ricerca avanzata sugli elenchi pub App::$strings["Allows creation of complex directory search queries"] = "Permette la creazione di ricerche complesse negli elenchi"; App::$strings["Advanced Theme and Layout Settings"] = "Impostazioni avanzate del tema e dei layout"; App::$strings["Allows fine tuning of themes and page layouts"] = "Permette una personalizzazione accurata del tema e dei layout"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nuova app"; -App::$strings["Suggestions"] = "Suggerimenti"; -App::$strings["See more..."] = "Altro..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; -App::$strings["Add New Connection"] = "Aggiungi un contatto"; -App::$strings["Enter channel address"] = "Indirizzo del canale"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; -App::$strings["Notes"] = "Note"; -App::$strings["Remove term"] = "Rimuovi termine"; -App::$strings["Everything"] = "Tutto"; -App::$strings["Archives"] = "Archivi"; -App::$strings["Refresh"] = "Aggiorna"; -App::$strings["Account settings"] = "Il tuo account"; -App::$strings["Channel settings"] = "Impostazioni del canale"; -App::$strings["Additional features"] = "Funzionalità opzionali"; -App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; -App::$strings["Display settings"] = "Aspetto"; -App::$strings["Manage locations"] = "Gestione repliche"; -App::$strings["Export channel"] = "Esporta il canale"; -App::$strings["Connected apps"] = "App connesse"; -App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -App::$strings["Private Mail Menu"] = "Menu messaggi privati"; -App::$strings["Combined View"] = "Vista combinata"; -App::$strings["Inbox"] = "In arrivo"; -App::$strings["Outbox"] = "Inviati"; -App::$strings["New Message"] = "Nuovo messaggio"; -App::$strings["Conversations"] = "Conversazioni"; -App::$strings["Received Messages"] = "Ricevuti"; -App::$strings["Sent Messages"] = "Inviati"; -App::$strings["No messages."] = "Nessun messaggio."; -App::$strings["Delete conversation"] = "Elimina la conversazione"; -App::$strings["Events Tools"] = "Gestione eventi"; -App::$strings["Export Calendar"] = "Esporta calendario"; -App::$strings["Import Calendar"] = "Importa calendario"; -App::$strings["Overview"] = "Riepilogo"; -App::$strings["Chat Members"] = "Partecipanti"; -App::$strings["Wiki List"] = "Elenco wiki"; -App::$strings["Wiki Pages"] = "Pagine wiki"; -App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; -App::$strings["Suggested Chatrooms"] = "Chat suggerite"; -App::$strings["photo/image"] = "foto/immagine"; -App::$strings["Click to show more"] = "Clicca per mostrare tutto"; -App::$strings["Rating Tools"] = "Valutazione"; -App::$strings["Rate Me"] = "Valutami"; -App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Attività"; -App::$strings["Documentation"] = "Guida"; -App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; -App::$strings["For Members"] = "Per gli utenti"; -App::$strings["For Administrators"] = "Per gli amministratori"; -App::$strings["For Developers"] = "Per sviluppatori"; -App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; -App::$strings["Inspect queue"] = "Coda di attesa"; -App::$strings["DB updates"] = "Aggiornamenti al DB"; -App::$strings["Admin"] = "Amministrazione"; -App::$strings["Plugin Features"] = "Plugin"; -App::$strings["Image/photo"] = "Immagine"; -App::$strings["Encrypted content"] = "Contenuto cifrato"; -App::$strings["Install %s element: "] = "Installa l'elemento %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["$1 wrote:"] = "$1 ha scritto:"; -App::$strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -App::$strings["Find Channels"] = "Ricerca canali"; -App::$strings["Enter name or interest"] = "Scrivi un nome o un interesse"; -App::$strings["Connect/Follow"] = "Aggiungi"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; -App::$strings["Random Profile"] = "Profilo casuale"; -App::$strings["Invite Friends"] = "Invita amici"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; -App::$strings["%d connection in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -App::$strings["show more"] = "mostra tutto"; -App::$strings["Directory Options"] = "Visibilità negli elenchi pubblici"; -App::$strings["Safe Mode"] = "Modalità SafeSearch"; -App::$strings["Public Forums Only"] = "Solo forum pubblici"; -App::$strings["This Website Only"] = "Solo in questo sito"; -App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; -App::$strings["[no subject]"] = "[nessun titolo]"; -App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; -App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; -App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; -App::$strings["Not specified"] = "Non specificato"; -App::$strings["Needs Action"] = "Necessita di un intervento"; -App::$strings["Completed"] = "Completato"; -App::$strings["In Process"] = "In corso"; -App::$strings["Cancelled"] = "Annullato"; -App::$strings["Logout"] = "Esci"; -App::$strings["End this session"] = "Chiudi questa sessione"; -App::$strings["Home"] = "Bacheca"; -App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; -App::$strings["Your profile page"] = "Il tuo profilo"; -App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; -App::$strings["Edit your profile"] = "Modifica il tuo profilo"; -App::$strings["Your photos"] = "Le tue foto"; -App::$strings["Your files"] = "I tuoi file"; -App::$strings["Your chatrooms"] = "Le tue chat"; -App::$strings["Your bookmarks"] = "I tuoi segnalibri"; -App::$strings["Your webpages"] = "Le tue pagine web"; -App::$strings["Your wiki"] = "La tua wiki"; -App::$strings["Sign in"] = "Accedi"; -App::$strings["%s - click to logout"] = "%s - clicca per uscire"; -App::$strings["Remote authentication"] = "Accedi dal tuo hub"; -App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; -App::$strings["Home Page"] = "Bacheca"; -App::$strings["Create an account"] = "Crea un account"; -App::$strings["Help and documentation"] = "Guida e documentazione"; -App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; -App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; -App::$strings["Your grid"] = "La tua rete"; -App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; -App::$strings["Channel home"] = "Bacheca del canale"; -App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; -App::$strings["Notices"] = "Avvisi"; -App::$strings["Notifications"] = "Notifiche"; -App::$strings["See all notifications"] = "Vedi tutte le notifiche"; -App::$strings["Private mail"] = "Messaggi privati"; -App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; -App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; -App::$strings["Event Calendar"] = "Calendario"; -App::$strings["See all events"] = "Guarda tutti gli eventi"; -App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; -App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; -App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; -App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; -App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; -App::$strings["Please wait..."] = "Attendere..."; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)"; App::$strings["Theme settings"] = "Impostazioni del tema"; App::$strings["Narrow navbar"] = "Barra di navigazione ristretta"; -- cgit v1.2.3 From 8b8712c15b968542c8fe770d1b99e296642a958c Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 22 Sep 2016 16:52:25 -0700 Subject: issue #524 --- include/items.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/items.php b/include/items.php index ba39fd7ac..55bdcf8ef 100755 --- a/include/items.php +++ b/include/items.php @@ -1590,6 +1590,9 @@ function item_store($arr, $allow_exec = false, $deliver = true) { $arr['item_wall'] = ((x($arr,'item_wall')) ? intval($arr['item_wall']) : 0 ); $arr['item_type'] = ((x($arr,'item_type')) ? intval($arr['item_type']) : 0 ); + // obsolete, but needed so as not to throw not-null constraints on some database driveres + $arr['item_flags'] = ((x($arr,'item_flags')) ? intval($arr['item_flags']) : 0 ); + // only detect language if we have text content, and if the post is private but not yet // obscured, make it so. -- cgit v1.2.3 From 9981cbb72c223873987b75e890a3e6297e5983dc Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 22 Sep 2016 16:58:29 -0700 Subject: issue #519 continued --- include/attach.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/include/attach.php b/include/attach.php index 237b06217..9d993a330 100644 --- a/include/attach.php +++ b/include/attach.php @@ -709,6 +709,9 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { $os_relpath .= $hash; + // not yet used + $os_path = ''; + if($src) @file_put_contents($os_basepath . $os_relpath,@file_get_contents($src)); @@ -723,7 +726,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { $edited = $created; if($options === 'replace') { - $r = q("update attach set filename = '%s', filetype = '%s', folder = '%s', filesize = %d, os_storage = %d, is_photo = %d, content = '%s', edited = '%s' where id = %d and uid = %d", + $r = q("update attach set filename = '%s', filetype = '%s', folder = '%s', filesize = %d, os_storage = %d, is_photo = %d, content = '%s', edited = '%s', os_path = '%s' where id = %d and uid = %d", dbesc($filename), dbesc($mimetype), dbesc($folder_hash), @@ -732,13 +735,14 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { intval($is_photo), dbesc($os_basepath . $os_relpath), dbesc($created), + dbesc($os_path), intval($existing_id), intval($channel_id) ); } elseif($options === 'revise') { - $r = q("insert into attach ( aid, uid, hash, creator, filename, filetype, folder, filesize, revision, os_storage, is_photo, content, created, edited, allow_cid, allow_gid, deny_cid, deny_gid ) - VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ", + $r = q("insert into attach ( aid, uid, hash, creator, filename, filetype, folder, filesize, revision, os_storage, is_photo, content, created, edited, os_path, allow_cid, allow_gid, deny_cid, deny_gid ) + VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ", intval($x[0]['aid']), intval($channel_id), dbesc($x[0]['hash']), @@ -753,6 +757,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { dbesc($os_basepath . $os_relpath), dbesc($created), dbesc($created), + dbesc($os_path), dbesc($x[0]['allow_cid']), dbesc($x[0]['allow_gid']), dbesc($x[0]['deny_cid']), @@ -760,7 +765,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { ); } elseif($options === 'update') { - $r = q("update attach set filename = '%s', filetype = '%s', folder = '%s', edited = '%s', os_storage = %d, is_photo = %d, + $r = q("update attach set filename = '%s', filetype = '%s', folder = '%s', edited = '%s', os_storage = %d, is_photo = %d, os_path = '%s', allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s' where id = %d and uid = %d", dbesc((array_key_exists('filename',$arr)) ? $arr['filename'] : $x[0]['filename']), dbesc((array_key_exists('filetype',$arr)) ? $arr['filetype'] : $x[0]['filetype']), @@ -768,6 +773,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { dbesc($created), dbesc((array_key_exists('os_storage',$arr)) ? $arr['os_storage'] : $x[0]['os_storage']), dbesc((array_key_exists('is_photo',$arr)) ? $arr['is_photo'] : $x[0]['is_photo']), + dbesc((array_key_exists('os_path',$arr)) ? $arr['os_path'] : $x[0]['os_path']), dbesc((array_key_exists('allow_cid',$arr)) ? $arr['allow_cid'] : $x[0]['allow_cid']), dbesc((array_key_exists('allow_gid',$arr)) ? $arr['allow_gid'] : $x[0]['allow_gid']), dbesc((array_key_exists('deny_cid',$arr)) ? $arr['deny_cid'] : $x[0]['deny_cid']), @@ -778,7 +784,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { } else { - $r = q("INSERT INTO attach ( aid, uid, hash, creator, filename, filetype, folder, filesize, revision, os_storage, is_photo, content, created, edited, allow_cid, allow_gid,deny_cid, deny_gid ) + $r = q("INSERT INTO attach ( aid, uid, hash, creator, filename, filetype, folder, filesize, revision, os_storage, is_photo, content, created, edited, os_path, allow_cid, allow_gid,deny_cid, deny_gid ) VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ", intval($channel['channel_account_id']), intval($channel_id), @@ -794,6 +800,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { dbesc($os_basepath . $os_relpath), dbesc($created), dbesc($created), + dbesc($os_path), dbesc(($arr && array_key_exists('allow_cid',$arr)) ? $arr['allow_cid'] : $str_contact_allow), dbesc(($arr && array_key_exists('allow_gid',$arr)) ? $arr['allow_gid'] : $str_group_allow), dbesc(($arr && array_key_exists('deny_cid',$arr)) ? $arr['deny_cid'] : $str_contact_deny), -- cgit v1.2.3 From 24ddc8e026472368eb57cfa0abc522eb4a568e71 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 22 Sep 2016 17:00:32 -0700 Subject: issue #523 --- install/schema_postgres.sql | 2 +- install/update.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index caa182b14..ab9a5cff4 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -396,7 +396,7 @@ create index "conv_created_idx" on conv ("created"); create index "conv_updated_idx" on conv ("updated"); CREATE TABLE IF NOT EXISTS "dreport" ( - "dreport_id" int NOT NULL, + "dreport_id" serial NOT NULL, "dreport_channel" int NOT NULL DEFAULT '0', "dreport_mid" char(255) NOT NULL DEFAULT '', "dreport_site" char(255) NOT NULL DEFAULT '', diff --git a/install/update.php b/install/update.php index 9fd362fff..5e5a25966 100644 --- a/install/update.php +++ b/install/update.php @@ -1810,7 +1810,7 @@ function update_r1152() { if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) { $r1 = q("CREATE TABLE IF NOT EXISTS \"dreport\" ( - \"dreport_id\" int(11) NOT NULL, + \"dreport_id\" serial NOT NULL, \"dreport_channel\" int(11) NOT NULL DEFAULT '0', \"dreport_mid\" char(255) NOT NULL DEFAULT '', \"dreport_site\" char(255) NOT NULL DEFAULT '', -- cgit v1.2.3 From 7b90b0dfd937c17eac61d6a1ca0f0619a3f4cdfd Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 22 Sep 2016 17:08:16 -0700 Subject: issue #526 --- include/import.php | 3 +++ include/photo/photo_driver.php | 11 +++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/include/import.php b/include/import.php index ddffb2ac3..15aa7c2b3 100644 --- a/include/import.php +++ b/include/import.php @@ -1217,6 +1217,9 @@ function sync_files($channel,$files) { $p['content'] = base64_decode($p['content']); + if(!isset($p['display_path'])) + $p['display_path'] = ''; + $exists = q("select * from photo where resource_id = '%s' and imgscale = %d and uid = %d limit 1", dbesc($p['resource_id']), intval($p['imgscale']), diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php index 35cf77707..9b6d38cc1 100644 --- a/include/photo/photo_driver.php +++ b/include/photo/photo_driver.php @@ -328,6 +328,7 @@ abstract class photo_driver { $p['photo_usage'] = intval($arr['photo_usage']); $p['os_storage'] = intval($arr['os_storage']); $p['os_path'] = $arr['os_path']; + $p['display_path'] = (($arr['display_path']) ? $arr['display_path'] : ''); if(! intval($p['imgscale'])) logger('save: ' . print_r($arr,true), LOGGER_DATA); @@ -359,6 +360,7 @@ abstract class photo_driver { `title` = '%s', `description` = '%s', `os_path` = '%s', + `display_path` = '%s', `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', @@ -384,6 +386,7 @@ abstract class photo_driver { dbesc($p['title']), dbesc($p['description']), dbesc($p['os_path']), + dbesc($p['display_path']), dbesc($p['allow_cid']), dbesc($p['allow_gid']), dbesc($p['deny_cid']), @@ -393,8 +396,8 @@ abstract class photo_driver { } else { $r = q("INSERT INTO `photo` - ( `aid`, `uid`, `xchan`, `resource_id`, `created`, `edited`, `filename`, mimetype, `album`, `height`, `width`, `content`, `os_storage`, `filesize`, `imgscale`, `photo_usage`, `title`, `description`, `os_path`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid` ) - VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' )", + ( `aid`, `uid`, `xchan`, `resource_id`, `created`, `edited`, `filename`, mimetype, `album`, `height`, `width`, `content`, `os_storage`, `filesize`, `imgscale`, `photo_usage`, `title`, `description`, `os_path`, `display_path`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid` ) + VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )", intval($p['aid']), intval($p['uid']), dbesc($p['xchan']), @@ -414,6 +417,7 @@ abstract class photo_driver { dbesc($p['title']), dbesc($p['description']), dbesc($p['os_path']), + dbesc($p['display_path']), dbesc($p['allow_cid']), dbesc($p['allow_gid']), dbesc($p['deny_cid']), @@ -423,6 +427,9 @@ abstract class photo_driver { return $r; } + + // should be obsolete now + public function store($aid, $uid, $xchan, $rid, $filename, $album, $scale, $usage = PHOTO_NORMAL, $allow_cid = '', $allow_gid = '', $deny_cid = '', $deny_gid = '') { $x = q("select id from photo where `resource_id` = '%s' and uid = %d and `xchan` = '%s' and `imgscale` = %d limit 1", -- cgit v1.2.3 From 9ab6029280f9a6c2f29281da928d2f436e2d322d Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 22 Sep 2016 17:15:12 -0700 Subject: issue #527 --- include/zot.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/zot.php b/include/zot.php index 49b66bc62..e0a86abc0 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3643,8 +3643,7 @@ function zot_reply_message_request($data) { if ($messages) { $env_recips = null; - $r = q("select * from hubloc where hubloc_hash = '%s' and hubloc_error = 0 and hubloc_deleted = 0 - group by hubloc_sitekey", + $r = q("select * from hubloc where hubloc_hash = '%s' and hubloc_error = 0 and hubloc_deleted = 0", dbesc($sender_hash) ); if (! $r) { -- cgit v1.2.3 From 97d472380ff4bc0aedaa461c1a2ea0ff9d26995a Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 23 Sep 2016 01:16:59 -0700 Subject: attach sql issue --- include/attach.php | 2 +- util/hmessages.po | 8962 ++++++++++++++++++++++++++-------------------------- 2 files changed, 4483 insertions(+), 4481 deletions(-) diff --git a/include/attach.php b/include/attach.php index 9d993a330..f832427bb 100644 --- a/include/attach.php +++ b/include/attach.php @@ -785,7 +785,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { else { $r = q("INSERT INTO attach ( aid, uid, hash, creator, filename, filetype, folder, filesize, revision, os_storage, is_photo, content, created, edited, os_path, allow_cid, allow_gid,deny_cid, deny_gid ) - VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ", + VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ", intval($channel['channel_account_id']), intval($channel_id), dbesc($hash), diff --git a/util/hmessages.po b/util/hmessages.po index ffd91669f..3cce678eb 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 14:51-0700\n" +"POT-Creation-Date: 2016-09-23 00:02-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -91,9 +91,9 @@ msgstr "" #: ../../Zotlabs/Module/Register.php:213 #: ../../Zotlabs/Module/New_channel.php:132 #: ../../Zotlabs/Module/Settings/Channel.php:442 -#: ../../include/permissions.php:949 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:949 msgid "Other" msgstr "" @@ -197,8 +197,8 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:789 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1033 -#: ../../include/widgets.php:1679 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1679 +#: ../../include/conversation.php:1033 msgid "Unknown" msgstr "" @@ -254,35 +254,37 @@ msgid "Last Modified" msgstr "" #: ../../Zotlabs/Storage/Browser.php:240 -#: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 #: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:959 -#: ../../include/channel.php:963 ../../include/menu.php:113 +#: ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Admin/Profs.php:154 +#: ../../Zotlabs/Module/Editpost.php:84 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../Zotlabs/Lib/Apps.php:341 +#: ../../include/page_widgets.php:9 ../../include/page_widgets.php:39 +#: ../../include/menu.php:113 ../../include/channel.php:959 +#: ../../include/channel.php:963 msgid "Edit" msgstr "" #: ../../Zotlabs/Storage/Browser.php:241 -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Admin/Channels.php:153 -#: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Photos.php:1179 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Editwebpage.php:170 +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Channels.php:153 +#: ../../Zotlabs/Module/Admin/Profs.php:155 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../Zotlabs/Lib/Apps.php:342 +#: ../../include/conversation.php:660 msgid "Delete" msgstr "" @@ -314,63 +316,62 @@ msgstr "" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 #: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Item.php:214 ../../Zotlabs/Module/Item.php:222 +#: ../../Zotlabs/Module/Item.php:1066 ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 #: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Webpages.php:116 #: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Block.php:26 #: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Mitem.php:115 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Api.php:12 -#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Item.php:214 -#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Manage.php:10 #: ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Setup.php:220 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Setup.php:220 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Pdledit.php:29 -#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Photos.php:73 +#: ../../Zotlabs/Module/Regmod.php:21 ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 #: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Photos.php:73 +#: ../../Zotlabs/Module/Rate.php:113 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 #: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/items.php:3496 +#: ../../include/items.php:3506 ../../include/photos.php:27 #: ../../include/attach.php:142 ../../include/attach.php:190 #: ../../include/attach.php:253 ../../include/attach.php:267 #: ../../include/attach.php:274 ../../include/attach.php:339 #: ../../include/attach.php:353 ../../include/attach.php:360 -#: ../../include/attach.php:440 ../../include/attach.php:902 -#: ../../include/attach.php:973 ../../include/attach.php:1125 +#: ../../include/attach.php:440 ../../include/attach.php:909 +#: ../../include/attach.php:980 ../../include/attach.php:1132 msgid "Permission denied." msgstr "" @@ -378,16 +379,16 @@ msgstr "" msgid "Not Found" msgstr "" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 -#: ../../Zotlabs/Module/Display.php:120 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Block.php:79 #: ../../include/help.php:56 msgid "Page not found." msgstr "" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Group.php:72 #: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Subthread.php:62 #: ../../include/items.php:403 msgid "Permission denied" msgstr "" @@ -407,10 +408,11 @@ msgstr "" #: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Layouts.php:31 ../../include/channel.php:859 +#: ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Layouts.php:31 +#: ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "" @@ -426,4601 +428,4778 @@ msgstr "" msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Register.php:55 +#: ../../Zotlabs/Module/Import.php:556 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." +"Import existing posts if possible (experimental - limited by available memory" msgstr "" -#: ../../Zotlabs/Module/Register.php:131 +#: ../../Zotlabs/Module/Import.php:557 msgid "" -"Registration successful. Please check your email for validation instructions." +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." msgstr "" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." +#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Mitem.php:243 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 +#: ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Plugins.php:429 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:241 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Settings/Account.php:126 +#: ../../Zotlabs/Module/Settings/Channel.php:452 +#: ../../Zotlabs/Module/Settings/Display.php:194 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/js_strings.php:22 +#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" msgstr "" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." +#: ../../Zotlabs/Module/Admin.php:62 ../../Zotlabs/Module/Display.php:40 +#: ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin/Plugins.php:254 +#: ../../Zotlabs/Module/Admin/Themes.php:69 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3427 +msgid "Item not found." msgstr "" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# Accounts" msgstr "" -#: ../../Zotlabs/Module/Register.php:194 -msgid "
    Register at another affiliated hub." +#: ../../Zotlabs/Module/Admin.php:98 +msgid "# blocked accounts" msgstr "" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +#: ../../Zotlabs/Module/Admin.php:99 +msgid "# expired accounts" msgstr "" -#: ../../Zotlabs/Module/Register.php:221 -msgid "Terms of Service" +#: ../../Zotlabs/Module/Admin.php:100 +msgid "# expiring accounts" msgstr "" -#: ../../Zotlabs/Module/Register.php:227 -#, php-format -msgid "I accept the %s for this website" +#: ../../Zotlabs/Module/Admin.php:111 +msgid "# Channels" msgstr "" -#: ../../Zotlabs/Module/Register.php:229 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" +#: ../../Zotlabs/Module/Admin.php:112 +msgid "# primary" msgstr "" -#: ../../Zotlabs/Module/Register.php:233 -msgid "Your email address" +#: ../../Zotlabs/Module/Admin.php:113 +msgid "# clones" msgstr "" -#: ../../Zotlabs/Module/Register.php:234 -msgid "Choose a password" +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Message queues" msgstr "" -#: ../../Zotlabs/Module/Register.php:235 -msgid "Please re-enter your password" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Register.php:236 -msgid "Please enter your invitation code" +#: ../../Zotlabs/Module/Admin.php:141 +#: ../../Zotlabs/Module/Admin/Accounts.php:165 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Plugins.php:336 +#: ../../Zotlabs/Module/Admin/Plugins.php:427 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Themes.php:120 +#: ../../Zotlabs/Module/Admin/Themes.php:154 +msgid "Administration" msgstr "" -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 -msgid "Name or caption" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" msgstr "" -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" msgstr "" -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "Choose a short nickname" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" msgstr "" -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" msgstr "" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Channel role and privacy" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active plugins" msgstr "" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Select a channel role with your privacy requirements." +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" msgstr "" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Read more about roles" +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Module/Register.php:241 -msgid "no" +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Module/Register.php:241 -msgid "yes" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." msgstr "" -#: ../../Zotlabs/Module/Register.php:253 -#: ../../Zotlabs/Module/Admin/Site.php:268 -msgid "Registration" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../Zotlabs/Module/Register.php:258 -msgid "Membership on this site is by invitation only." +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." msgstr "" -#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 -#: ../../boot.php:1721 -msgid "Register" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../Zotlabs/Module/Register.php:271 +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 +msgid "Your message:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1243 +msgid "Attach file" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1288 +msgid "Set expiration date" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 +#: ../../include/conversation.php:1293 +msgid "Encrypt text" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:355 msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:36 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#: ../../Zotlabs/Module/Mail.php:364 #, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" +msgid "Your message for %s (%s):" +msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:79 -msgid "Account not found" +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Photos.php:509 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:90 -#, php-format -msgid "Account '%s' deleted" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:98 -#, php-format -msgid "Account '%s' blocked" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:106 -#, php-format -msgid "Account '%s' unblocked" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:165 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Plugins.php:336 -#: ../../Zotlabs/Module/Admin/Plugins.php:427 -#: ../../Zotlabs/Module/Admin/Security.php:86 -#: ../../Zotlabs/Module/Admin/Site.php:265 -#: ../../Zotlabs/Module/Admin/Themes.php:120 -#: ../../Zotlabs/Module/Admin/Themes.php:154 -#: ../../Zotlabs/Module/Admin.php:141 -msgid "Administration" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557 -msgid "Accounts" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:95 ../../include/conversation.php:1671 +msgid "Photos" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Channels.php:151 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Plugins.php:429 -#: ../../Zotlabs/Module/Admin/Profs.php:157 -#: ../../Zotlabs/Module/Admin/Security.php:104 -#: ../../Zotlabs/Module/Admin/Site.php:267 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Connedit.php:779 -#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 -#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Settings/Account.php:126 -#: ../../Zotlabs/Module/Settings/Channel.php:452 -#: ../../Zotlabs/Module/Settings/Display.php:194 -#: ../../Zotlabs/Module/Settings/Features.php:47 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/js_strings.php:22 -#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 -msgid "Submit" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../include/conversation.php:1247 ../../include/conversation.php:1296 +msgid "Cancel" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "select all" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -msgid "Registrations waiting for confirm" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Request date" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2208 -msgid "Email" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "No registrations." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -#: ../../Zotlabs/Module/Connections.php:275 -msgid "Approve" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/widgets.php:201 +#: ../../include/text.php:972 ../../include/text.php:984 +msgid "Save" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -msgid "Deny" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Block" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Unblock" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:181 -msgid "ID" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 -msgid "All Channels" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1572 +msgid "New" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "Register date" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 +msgid "All" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Last login" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Expires" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Service Class" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:189 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:30 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:39 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:45 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:66 -msgid "Channel not found" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:76 +#: ../../Zotlabs/Module/Connections.php:254 #, php-format -msgid "Channel '%s' deleted" +msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:88 -#, php-format -msgid "Channel '%s' censored" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:88 -#, php-format -msgid "Channel '%s' uncensored" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:99 -#, php-format -msgid "Channel '%s' code allowed" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:99 -#, php-format -msgid "Channel '%s' code disallowed" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558 -msgid "Channels" +#: ../../Zotlabs/Module/Connections.php:270 +msgid "Status" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:154 -msgid "Censor" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:155 -msgid "Uncensor" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:156 -msgid "Allow Code" +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "Approve" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:157 -msgid "Disallow Code" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:158 -#: ../../include/conversation.php:1650 -msgid "Channel" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Connedit.php:583 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "UID" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:164 -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -msgid "Address" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:191 ../../include/text.php:901 +msgid "Connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:166 -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?" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:174 +#: ../../include/nav.php:170 ../../include/widgets.php:315 +#: ../../include/text.php:971 ../../include/text.php:983 +msgid "Search" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:167 -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?" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:29 -#, php-format -msgid "Executing %s failed. Check system logs." +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4341 +msgid "female" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4342 #, php-format -msgid "Update %s was successfully applied." +msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4343 +msgid "male" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4344 #, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4346 #, php-format -msgid "Update function %s could not be found." +msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:55 -msgid "No failed updates." +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 +msgid "cover photo" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "Off" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "On" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings/Channel.php:399 +msgid "or" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583 -#: ../../include/widgets.php:1593 -msgid "Logs" +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 +msgid "Public Hubs" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:254 -#: ../../Zotlabs/Module/Admin/Themes.php:69 -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Thing.php:89 ../../Zotlabs/Module/Viewsrc.php:24 -#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3417 -msgid "Item not found." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:284 -#, php-format -msgid "Plugin %s disabled." +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:960 +msgid "Ratings" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:289 -#, php-format -msgid "Plugin %s enabled." +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:305 -#: ../../Zotlabs/Module/Admin/Themes.php:93 -msgid "Disable" +#: ../../Zotlabs/Module/Pubsites.php:51 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:308 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Enable" +#: ../../Zotlabs/Module/Pubsites.php:59 ../../Zotlabs/Module/Webpages.php:246 +#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 +msgid "View" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:337 -#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561 -msgid "Plugins" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:338 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -msgid "Toggle" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:339 -#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 -#: ../../include/nav.php:213 ../../include/widgets.php:680 -msgid "Settings" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:346 -#: ../../Zotlabs/Module/Admin/Themes.php:132 -msgid "Author: " +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:347 -#: ../../Zotlabs/Module/Admin/Themes.php:133 -msgid "Maintainer: " +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Admin/Site.php:223 +#: ../../Zotlabs/Module/Photos.php:653 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "Yes" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:348 -msgid "Minimum project version: " +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "No" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:349 -msgid "Maximum project version: " +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:350 -msgid "Minimum PHP version: " +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:351 -msgid "Compatible Server Roles: " +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:352 -msgid "Requires: " +#: ../../Zotlabs/Module/Item.php:851 +msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:353 -#: ../../Zotlabs/Module/Admin/Plugins.php:433 -msgid "Disabled - version incompatibility" +#: ../../Zotlabs/Module/Item.php:984 +msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:402 -msgid "Enter the public git repository URL of the plugin repo." +#: ../../Zotlabs/Module/Item.php:1105 +msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:403 -msgid "Plugin repo git URL" +#: ../../Zotlabs/Module/Item.php:1112 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:404 -msgid "Custom repo name" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:404 -msgid "(optional)" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:405 -msgid "Download Plugin Repo" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:412 -msgid "Install new repo" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1259 +msgid "Title (optional)" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:414 -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../include/conversation.php:1247 ../../include/conversation.php:1296 -msgid "Cancel" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:435 -msgid "Manage Repos" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:436 -msgid "Installed Plugin Repositories" +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:437 -msgid "Install a New Plugin Repository" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:443 -#: ../../Zotlabs/Module/Settings/Oauth.php:42 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:444 -msgid "Switch branch" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:445 -#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Photos.php:989 -msgid "Remove" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:69 -msgid "New Profile Field" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:70 -#: ../../Zotlabs/Module/Admin/Profs.php:90 -msgid "Field nickname" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:70 -#: ../../Zotlabs/Module/Admin/Profs.php:90 -msgid "System name of field" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:71 -#: ../../Zotlabs/Module/Admin/Profs.php:91 -msgid "Input type" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:72 -#: ../../Zotlabs/Module/Admin/Profs.php:92 -msgid "Field Name" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:72 -#: ../../Zotlabs/Module/Admin/Profs.php:92 -msgid "Label on profile pages" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Help text" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Additional info (optional)" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 +msgid "Menus" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:74 -#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 -#: ../../include/text.php:972 ../../include/text.php:984 -#: ../../include/widgets.php:201 -msgid "Save" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:83 -msgid "Field definition not found" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "Edit Profile Field" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564 -msgid "Profile Fields" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:148 -msgid "Basic Profile Fields" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "Advanced Profile Fields" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "(In addition to basic fields)" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:151 -msgid "All available fields" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:152 -msgid "Custom Fields" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:156 -msgid "Create Custom Field" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Queue Statistics" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Total Entries" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Priority" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Destination URL" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Mark hub permanently offline" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Empty queue for this hub" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:42 -msgid "Last known contact" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:77 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:80 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:81 -msgid "" -"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/" -"
    https://vimeo.com/
    https://soundcloud.com/
    " +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:82 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 -msgid "Security" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "Block public" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:90 -msgid "Set \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:91 -msgid "Set \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "Allowed email domains" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "Not allowed email domains" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "Allow communications only from these sites" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block communications from these sites" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Allow communications only from these channels" +#: ../../Zotlabs/Module/Webpages.php:52 +msgid "Import Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import selected" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Block communications from these channels" +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Only allow embeds from secure (SSL) websites and links." +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Allow unfiltered embedded HTML content only from these domains" +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:109 ../../include/conversation.php:1724 +msgid "Webpages" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "One site per line. By default embedded content is filtered." +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1078 +#: ../../include/conversation.php:1231 +msgid "Share" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Block embedded HTML from these domains" +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:721 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 +msgid "Preview" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:135 -msgid "Site settings updated." +#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 +msgid "Actions" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2942 -msgid "Default" +#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 +msgid "Page Link" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:172 -#: ../../Zotlabs/Module/Settings/Display.php:141 -msgid "mobile" +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:174 -msgid "experimental" +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:176 -msgid "unsupported" +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Photos.php:653 -#: ../../Zotlabs/Module/Settings/Channel.php:289 -#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 -msgid "No" +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:222 -msgid "Yes - with approval" +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:223 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Photos.php:653 -#: ../../Zotlabs/Module/Settings/Channel.php:289 -#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 -msgid "Yes" +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:228 -msgid "My site is not a public server" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:229 -msgid "My site has paid access only" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:230 -msgid "My site has free access only" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:231 -msgid "My site offers free accounts with optional paid upgrades" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:242 ../../Zotlabs/Module/Setup.php:336 -msgid "Basic/Minimal Social Networking" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:243 ../../Zotlabs/Module/Setup.php:337 -msgid "Standard Configuration (default)" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:244 ../../Zotlabs/Module/Setup.php:338 -msgid "Professional" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:249 -#: ../../Zotlabs/Module/Settings/Account.php:105 -msgid "Beginner/Basic" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:250 -#: ../../Zotlabs/Module/Settings/Account.php:106 -msgid "Novice - not skilled but willing to learn" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:251 -#: ../../Zotlabs/Module/Settings/Account.php:107 -msgid "Intermediate - somewhat comfortable" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:252 -#: ../../Zotlabs/Module/Settings/Account.php:108 -msgid "Advanced - very comfortable" +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:658 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:253 -#: ../../Zotlabs/Module/Settings/Account.php:109 -msgid "Expert - I can write computer code" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:254 -#: ../../Zotlabs/Module/Settings/Account.php:110 -msgid "Wizard - I probably know more than you do" +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 -msgid "Site" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:269 -msgid "File upload" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:270 -msgid "Policies" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:271 -#: ../../include/contact_widgets.php:16 -msgid "Advanced" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:275 -msgid "Site name" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:277 ../../Zotlabs/Module/Setup.php:359 -msgid "Server Configuration/Role" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:279 -msgid "Site default technical skill level" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:279 -msgid "Used to provide a member experience matched to technical comfort level" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:281 -msgid "Lock the technical skill level setting" +#: ../../Zotlabs/Module/Help.php:27 +msgid "Documentation Search" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:281 -msgid "Members can set their own technical comfort level by default" +#: ../../Zotlabs/Module/Help.php:57 +msgid "$Projectname Documentation" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:284 -msgid "Banner/Logo" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "Administrator Information" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3960 +msgid "Privacy group not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:286 -msgid "System language" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:287 -msgid "System theme" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:287 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "Mobile system theme" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "Theme for mobile devices" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:290 -msgid "Allow Feeds as Connections" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:290 -msgid "(Heavy system resource usage)" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:291 -msgid "Maximum image size" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:291 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:292 -msgid "Does this site allow new member registration?" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "Invitation only" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:294 -msgid "Which best describes the types of account offered by this hub?" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:295 -msgid "Register text" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:295 -msgid "Will be displayed prominently on the registration page." +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:296 -msgid "Site homepage to show visitors (default: login box)" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:296 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:297 -msgid "Preserve site homepage URL" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:297 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "Accounts abandoned after x days" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:89 ../../include/conversation.php:955 +msgid "View Profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Allowed friend domains" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "Verify Email Addresses" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "" -"Check to verify email addresses used in account registration (recommended)." +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "Force publish" +#: ../../Zotlabs/Module/Connedit.php:575 +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +msgid "Unblock" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +#: ../../Zotlabs/Module/Connedit.php:575 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +msgid "Block" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:302 -msgid "Import Public Streams" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:302 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "Login on Homepage" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "Enable context help" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "" -"Display contextual help for the current page when the help button is pressed." +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Directory Server URL" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Default directory server" +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Proxy user" +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:309 -msgid "Proxy URL" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Network timeout" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Delivery interval" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:311 -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." +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Deliveries per process" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 +msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 +msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Poll interval" +#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Settings/Channel.php:61 +#: ../../Zotlabs/Module/Settings/Channel.php:65 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:80 +#: ../../include/selectors.php:123 ../../include/widgets.php:531 +#: ../../include/channel.php:402 ../../include/channel.php:403 +#: ../../include/channel.php:410 +msgid "Friends" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 +msgid "Acquaintances" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "Maximum Load Average" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "Expiration period in days for imported (grid/network) content" +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "0 for no expiration of imported content" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:18 -msgid "Theme settings updated." +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:58 -msgid "No themes found." +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:114 -msgid "Screenshot" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 +msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:121 -#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 -msgid "Themes" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3993 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:160 -msgid "[Experimental]" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:161 -msgid "[Unsupported]" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" msgstr "" -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." +#: ../../Zotlabs/Module/Connedit.php:762 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" msgstr "" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" msgstr "" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 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." +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" msgstr "" -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" msgstr "" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" +#: ../../Zotlabs/Module/Connedit.php:778 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" msgstr "" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../Zotlabs/Module/Import.php:554 -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." +#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Their Settings" msgstr "" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" +#: ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "My Settings" msgstr "" -#: ../../Zotlabs/Module/Import.php:556 +#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 +msgid "Individual Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 msgid "" -"Import existing posts if possible (experimental - limited by available memory" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can not change those settings here." msgstr "" -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Photos.php:509 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" msgstr "" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" msgstr "" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" msgstr "" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/bb2diaspora.php:507 -#: ../../include/channel.php:1049 -msgid "Location:" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" msgstr "" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" msgstr "" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "Use this form to import existing posts and content from an export file." msgstr "" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 -#: ../../include/connections.php:78 ../../include/conversation.php:957 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 -msgid "Connect" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" msgstr "" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." msgstr "" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "1. Register at any $Projectname location (they are all inter-connected)" msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" msgstr "" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" msgstr "" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." msgstr "" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." msgstr "" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary " +"location." msgstr "" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" msgstr "" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin/Channels.php:164 +msgid "Address" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" msgstr "" -#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." msgstr "" -#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../include/conversation.php:960 -msgid "Ratings" +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." msgstr "" -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." msgstr "" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:95 ../../include/conversation.php:1671 -msgid "Photos" +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" msgstr "" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." msgstr "" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" msgstr "" -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." msgstr "" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" msgstr "" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1572 -msgid "New" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." msgstr "" -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 -msgid "All" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1991 +msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1997 +msgid "status" msgstr "" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:961 +#: ../../include/conversation.php:123 ../../include/text.php:1994 +msgid "event" msgstr "" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:254 +#: ../../Zotlabs/Module/Like.php:431 #, php-format -msgid "%1$s [%2$s]" +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." msgstr "" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Connections.php:270 -msgid "Status" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" msgstr "" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" +#: ../../Zotlabs/Module/Network.php:218 +msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" +#: ../../Zotlabs/Module/Network.php:227 +msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Ignore" +#: ../../Zotlabs/Module/Network.php:253 +msgid "Invalid connection." msgstr "" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." msgstr "" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:191 ../../include/text.php:901 -msgid "Connections" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." msgstr "" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:170 -#: ../../include/acl_selectors.php:174 ../../include/text.php:971 -#: ../../include/text.php:983 ../../include/widgets.php:315 -msgid "Search" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." msgstr "" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" msgstr "" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:486 +msgid "(click to open/close)" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 -msgid "female" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 -#, php-format -msgid "%1$s updated her %2$s" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 -msgid "male" +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 -#, php-format -msgid "%1$s updated his %2$s" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 -#, php-format -msgid "%1$s updated their %2$s" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 -msgid "cover photo" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings/Channel.php:399 -msgid "or" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 -#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1148 -msgid "Insert web link" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1259 -msgid "Title (optional)" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." msgstr "" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." msgstr "" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" +#: ../../Zotlabs/Module/Register.php:229 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" msgstr "" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 -msgid "Menus" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Name or caption" msgstr "" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" msgstr "" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:251 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "Choose a short nickname" msgstr "" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:252 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" msgstr "" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Channel role and privacy" msgstr "" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Select a channel role with your privacy requirements." msgstr "" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Read more about roles" msgstr "" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" msgstr "" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" msgstr "" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." +#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Admin/Site.php:268 +msgid "Registration" msgstr "" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1721 +msgid "Register" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" +#: ../../Zotlabs/Module/Register.php:271 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 +msgid "Password Reset" msgstr "" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." msgstr "" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" msgstr "" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" msgstr "" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" msgstr "" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" msgstr "" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" msgstr "" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." msgstr "" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." msgstr "" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" msgstr "" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." msgstr "" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." msgstr "" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." msgstr "" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." msgstr "" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" msgstr "" -#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 -msgid "Please enter a link URL:" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" msgstr "" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" msgstr "" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" msgstr "" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" msgstr "" -#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 -msgid "Your message:" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" msgstr "" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1243 -msgid "Attach file" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" msgstr "" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" msgstr "" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1288 -msgid "Set expiration date" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" msgstr "" -#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 -#: ../../include/conversation.php:1293 -msgid "Encrypt text" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." msgstr "" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" msgstr "" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" msgstr "" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" msgstr "" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" msgstr "" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" msgstr "" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" msgstr "" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Help.php:27 -msgid "Documentation Search" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1563 +msgid "Personal" msgstr "" -#: ../../Zotlabs/Module/Help.php:57 -msgid "$Projectname Documentation" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" msgstr "" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" msgstr "" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 -#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Photos.php:658 -#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Module/Chat.php:234 -#: ../../include/acl_selectors.php:179 -msgid "Permissions" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" msgstr "" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" msgstr "" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" msgstr "" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" msgstr "" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" msgstr "" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" msgstr "" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" msgstr "" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" msgstr "" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" msgstr "" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" msgstr "" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" msgstr "" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" msgstr "" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3950 -msgid "Privacy group not found." +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" msgstr "" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" msgstr "" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" msgstr "" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" msgstr "" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" msgstr "" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" msgstr "" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:91 +#: ../../include/channel.php:959 +msgid "Edit Profiles" msgstr "" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" +#: ../../Zotlabs/Module/Profiles.php:778 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" msgstr "" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." msgstr "" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:52 -msgid "Import Webpage Elements" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import selected" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:76 -msgid "Export Webpage Elements" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:77 -msgid "Export selected" +#: ../../Zotlabs/Module/Match.php:68 ../../Zotlabs/Module/Directory.php:325 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/channel.php:1034 +#: ../../include/conversation.php:957 ../../include/connections.php:78 +msgid "Connect" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:109 ../../include/conversation.php:1724 -msgid "Webpages" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Module/Blocks.php:161 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1078 -#: ../../include/conversation.php:1231 -msgid "Share" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Events.php:680 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:59 ../../include/page_widgets.php:42 -msgid "View" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:721 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 -msgid "Preview" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 -msgid "Actions" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 -msgid "Page Link" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:250 -msgid "Page Title" +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid file type." +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Error opening zip file" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:303 -msgid "Invalid folder path." +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:330 -msgid "No webpage elements detected." +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:405 -msgid "Import complete." +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" msgstr "" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" msgstr "" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" msgstr "" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" msgstr "" -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" msgstr "" -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "Use this form to import existing posts and content from an export file." +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" msgstr "" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." +#: ../../Zotlabs/Module/Events.php:463 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." msgstr "" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" msgstr "" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" msgstr "" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" msgstr "" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1263 +msgid "Permission settings" msgstr "" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" msgstr "" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" msgstr "" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" msgstr "" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" msgstr "" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "1. Register at any $Projectname location (they are all inter-connected)" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1762 +msgid "Link to Source" msgstr "" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" msgstr "" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" msgstr "" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" msgstr "" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." +#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Previous" msgstr "" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cal.php:333 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Photos.php:949 +msgid "Next" msgstr "" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary " -"location." +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" msgstr "" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" msgstr "" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" msgstr "" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" msgstr "" -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 -#: ../../Zotlabs/Module/Pubsites.php:51 ../../include/js_strings.php:25 -msgid "Location" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" msgstr "" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" msgstr "" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" msgstr "" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" msgstr "" -#: ../../Zotlabs/Module/Network.php:95 -msgid "No such group" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" msgstr "" -#: ../../Zotlabs/Module/Network.php:135 -msgid "No such channel" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../Zotlabs/Module/Network.php:140 -msgid "forum" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" msgstr "" -#: ../../Zotlabs/Module/Network.php:152 -msgid "Search Results For:" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" msgstr "" -#: ../../Zotlabs/Module/Network.php:218 -msgid "Privacy group is empty" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" msgstr "" -#: ../../Zotlabs/Module/Network.php:227 -msgid "Privacy group: " +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" msgstr "" -#: ../../Zotlabs/Module/Network.php:253 -msgid "Invalid connection." +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" msgstr "" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" msgstr "" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." +#: ../../Zotlabs/Module/New_channel.php:141 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." msgstr "" -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/New_channel.php:142 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +"or import an existing channel from another location." msgstr "" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" msgstr "" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" msgstr "" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" msgstr "" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "" + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1991 -msgid "photo" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1997 -msgid "status" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 +msgid "Mark all system notifications seen" msgstr "" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:958 -#: ../../include/conversation.php:123 ../../include/text.php:1994 -msgid "event" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" msgstr "" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" msgstr "" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" msgstr "" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" msgstr "" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" msgstr "" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." msgstr "" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." msgstr "" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." msgstr "" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Create New" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" msgstr "" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:211 -msgid "Channel Manager" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." msgstr "" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" msgstr "" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." msgstr "" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:486 -msgid "(click to open/close)" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " msgstr "" -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2308 +msgid "Blocks" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2310 +msgid "Layouts" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:164 ../../include/help.php:44 +#: ../../include/help.php:49 +msgid "Help" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." +#: ../../Zotlabs/Module/Setup.php:192 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." msgstr "" -#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 -#: ../../include/js_strings.php:20 -msgid "Rating" +#: ../../Zotlabs/Module/Setup.php:208 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" msgstr "" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" msgstr "" -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 -msgid "Password Reset" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin/Site.php:242 +msgid "Basic/Minimal Social Networking" msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" +#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin/Site.php:243 +msgid "Standard Configuration (default)" msgstr "" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" +#: ../../Zotlabs/Module/Setup.php:338 ../../Zotlabs/Module/Admin/Site.php:244 +msgid "Professional" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." +#: ../../Zotlabs/Module/Setup.php:359 ../../Zotlabs/Module/Admin/Site.php:277 +msgid "Server Configuration/Role" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." +#: ../../Zotlabs/Module/Setup.php:417 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" +#: ../../Zotlabs/Module/Setup.php:457 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" +#: ../../Zotlabs/Module/Setup.php:488 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" +#: ../../Zotlabs/Module/Setup.php:512 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" +#: ../../Zotlabs/Module/Setup.php:518 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" +#: ../../Zotlabs/Module/Setup.php:530 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1563 -#: ../../include/widgets.php:105 -msgid "Personal" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" +#: ../../Zotlabs/Module/Setup.php:538 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" +#: ../../Zotlabs/Module/Setup.php:567 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." +#: ../../Zotlabs/Module/Setup.php:584 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" +#: ../../Zotlabs/Module/Setup.php:585 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" +#: ../../Zotlabs/Module/Setup.php:587 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" +#: ../../Zotlabs/Module/Setup.php:590 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" +#: ../../Zotlabs/Module/Setup.php:606 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" +#: ../../Zotlabs/Module/Setup.php:671 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" +#: ../../Zotlabs/Module/Setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 +#: ../../include/photo/photo_driver.php:728 +msgid "Profile Photos" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 +msgid "Import" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:91 -#: ../../include/channel.php:959 -msgid "Edit Profiles" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." msgstr "" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "" +#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" +#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:79 +msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" +#: ../../Zotlabs/Module/Admin/Accounts.php:90 +#, php-format +msgid "Account '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#, php-format +msgid "Account '%s' blocked" msgstr "" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" +#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#, php-format +msgid "Account '%s' unblocked" msgstr "" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557 +msgid "Accounts" msgstr "" -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "select all" msgstr "" -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +msgid "Registrations waiting for confirm" msgstr "" -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Request date" msgstr "" -#: ../../Zotlabs/Module/Api.php:83 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2210 +msgid "Email" msgstr "" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "No registrations." msgstr "" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +msgid "Deny" msgstr "" -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." +#: ../../Zotlabs/Module/Admin/Accounts.php:181 +msgid "ID" msgstr "" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 +msgid "All Channels" msgstr "" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "Register date" msgstr "" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Last login" msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit event title" +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Expires" msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Event title" +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Service Class" msgstr "" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Categories (comma-separated list)" +#: ../../Zotlabs/Module/Admin/Accounts.php:189 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit Category" +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Category" +#: ../../Zotlabs/Module/Admin/Channels.php:30 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:39 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:45 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:66 +msgid "Channel not found" msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit start date and time" +#: ../../Zotlabs/Module/Admin/Channels.php:76 +#, php-format +msgid "Channel '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Start date and time" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' censored" msgstr "" -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 -msgid "Finish date and time are not known or not relevant" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' uncensored" msgstr "" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit finish date and time" +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code allowed" msgstr "" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Finish date and time" +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 -msgid "Adjust for viewer timezone" +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558 +msgid "Channels" msgstr "" -#: ../../Zotlabs/Module/Events.php:463 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +#: ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Censor" msgstr "" -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Description" +#: ../../Zotlabs/Module/Admin/Channels.php:155 +msgid "Uncensor" msgstr "" -#: ../../Zotlabs/Module/Events.php:467 -msgid "Edit Location" +#: ../../Zotlabs/Module/Admin/Channels.php:156 +msgid "Allow Code" msgstr "" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 -msgid "Share this event" +#: ../../Zotlabs/Module/Admin/Channels.php:157 +msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1263 -msgid "Permission settings" +#: ../../Zotlabs/Module/Admin/Channels.php:158 +#: ../../include/conversation.php:1650 +msgid "Channel" msgstr "" -#: ../../Zotlabs/Module/Events.php:485 -msgid "Advanced Options" +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "UID" msgstr "" -#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" +#: ../../Zotlabs/Module/Admin/Channels.php:166 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Events.php:619 -msgid "Edit event" +#: ../../Zotlabs/Module/Admin/Channels.php:167 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Events.php:621 -msgid "Delete event" +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1762 -msgid "Link to Source" +#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#, php-format +msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Events.php:655 -msgid "calendar" +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" +#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Previous" +#: ../../Zotlabs/Module/Admin/Dbsync.php:55 +msgid "No failed updates." msgstr "" -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cal.php:333 -#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Photos.php:949 -msgid "Next" +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" msgstr "" -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../Zotlabs/Module/Events.php:681 -msgid "Month" +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" msgstr "" -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" msgstr "" -#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" msgstr "" -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Item.php:180 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583 +#: ../../include/widgets.php:1593 +msgid "Logs" msgstr "" -#: ../../Zotlabs/Module/Item.php:433 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" msgstr "" -#: ../../Zotlabs/Module/Item.php:473 -msgid "Executable content type not permitted to this channel." +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" msgstr "" -#: ../../Zotlabs/Module/Item.php:858 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" msgstr "" -#: ../../Zotlabs/Module/Item.php:991 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." msgstr "" -#: ../../Zotlabs/Module/Item.php:1112 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" msgstr "" -#: ../../Zotlabs/Module/Item.php:1119 +#: ../../Zotlabs/Module/Admin/Plugins.php:284 #, php-format -msgid "You have reached your limit of %1$.0f top level posts." +msgid "Plugin %s disabled." msgstr "" -#: ../../Zotlabs/Module/Item.php:1126 +#: ../../Zotlabs/Module/Admin/Plugins.php:289 #, php-format -msgid "You have reached your limit of %1$.0f webpages." +msgid "Plugin %s enabled." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:140 -msgid "Create Channel" +#: ../../Zotlabs/Module/Admin/Plugins.php:305 +#: ../../Zotlabs/Module/Admin/Themes.php:93 +msgid "Disable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:308 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Enable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:337 +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561 +msgid "Plugins" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:141 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." +#: ../../Zotlabs/Module/Admin/Plugins.php:338 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +msgid "Toggle" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:142 -msgid "" -"or import an existing channel from another location." +#: ../../Zotlabs/Module/Admin/Plugins.php:339 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 +#: ../../include/nav.php:213 ../../include/widgets.php:680 +msgid "Settings" msgstr "" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" +#: ../../Zotlabs/Module/Admin/Plugins.php:346 +#: ../../Zotlabs/Module/Admin/Themes.php:132 +msgid "Author: " msgstr "" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" +#: ../../Zotlabs/Module/Admin/Plugins.php:347 +#: ../../Zotlabs/Module/Admin/Themes.php:133 +msgid "Maintainer: " msgstr "" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" +#: ../../Zotlabs/Module/Admin/Plugins.php:348 +msgid "Minimum project version: " msgstr "" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" +#: ../../Zotlabs/Module/Admin/Plugins.php:349 +msgid "Maximum project version: " msgstr "" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" +#: ../../Zotlabs/Module/Admin/Plugins.php:350 +msgid "Minimum PHP version: " msgstr "" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +msgid "Compatible Server Roles: " msgstr "" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +msgid "Requires: " msgstr "" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 -msgid "Mark all system notifications seen" +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +#: ../../Zotlabs/Module/Admin/Plugins.php:433 +msgid "Disabled - version incompatibility" msgstr "" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:961 -msgid "Poke" +#: ../../Zotlabs/Module/Admin/Plugins.php:402 +msgid "Enter the public git repository URL of the plugin repo." msgstr "" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" +#: ../../Zotlabs/Module/Admin/Plugins.php:403 +msgid "Plugin repo git URL" msgstr "" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "Custom repo name" msgstr "" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "(optional)" msgstr "" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" +#: ../../Zotlabs/Module/Admin/Plugins.php:405 +msgid "Download Plugin Repo" msgstr "" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" +#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" msgstr "" -#: ../../Zotlabs/Module/Setup.php:184 -msgid "$Projectname Server - Setup" +#: ../../Zotlabs/Module/Admin/Plugins.php:435 +msgid "Manage Repos" msgstr "" -#: ../../Zotlabs/Module/Setup.php:188 -msgid "Could not connect to database." +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +msgid "Installed Plugin Repositories" msgstr "" -#: ../../Zotlabs/Module/Setup.php:192 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +msgid "Install a New Plugin Repository" msgstr "" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Could not create table." +#: ../../Zotlabs/Module/Admin/Plugins.php:443 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" msgstr "" -#: ../../Zotlabs/Module/Setup.php:204 -msgid "Your site database has been installed." +#: ../../Zotlabs/Module/Admin/Plugins.php:444 +msgid "Switch branch" msgstr "" -#: ../../Zotlabs/Module/Setup.php:208 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +#: ../../Zotlabs/Module/Photos.php:989 ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" msgstr "" -#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 -#: ../../Zotlabs/Module/Setup.php:734 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" msgstr "" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "System check" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" msgstr "" -#: ../../Zotlabs/Module/Setup.php:273 -msgid "Check again" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "System name of field" msgstr "" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database connection" +#: ../../Zotlabs/Module/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" msgstr "" -#: ../../Zotlabs/Module/Setup.php:296 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Label on profile pages" msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Server Name" +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" msgstr "" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Port" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564 +msgid "Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Name" +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Login Password" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Name" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:307 -msgid "Database Type" +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" msgstr "" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "Site administrator email address" +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" msgstr "" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" msgstr "" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Website URL" +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Queue Statistics" msgstr "" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Total Entries" msgstr "" -#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 -msgid "Please select a default timezone for your website" +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Priority" msgstr "" -#: ../../Zotlabs/Module/Setup.php:344 -msgid "Site settings" +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Destination URL" msgstr "" -#: ../../Zotlabs/Module/Setup.php:400 -msgid "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Mark hub permanently offline" msgstr "" -#: ../../Zotlabs/Module/Setup.php:401 -msgid "PHP version" +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Empty queue for this hub" msgstr "" -#: ../../Zotlabs/Module/Setup.php:416 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Admin/Queue.php:42 +msgid "Last known contact" msgstr "" -#: ../../Zotlabs/Module/Setup.php:417 +#: ../../Zotlabs/Module/Admin/Security.php:77 msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:421 -msgid "PHP executable path" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." msgstr "" -#: ../../Zotlabs/Module/Setup.php:421 +#: ../../Zotlabs/Module/Admin/Security.php:80 msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:426 -msgid "Command line PHP" +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/" +"
    https://vimeo.com/
    https://soundcloud.com/
    " msgstr "" -#: ../../Zotlabs/Module/Setup.php:435 +#: ../../Zotlabs/Module/Admin/Security.php:82 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Setup.php:436 -msgid "This is required for message delivery to work." +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 +msgid "Security" msgstr "" -#: ../../Zotlabs/Module/Setup.php:439 -msgid "PHP register_argc_argv" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" msgstr "" -#: ../../Zotlabs/Module/Setup.php:457 -#, php-format +#: ../../Zotlabs/Module/Admin/Security.php:89 msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." msgstr "" -#: ../../Zotlabs/Module/Setup.php:462 -msgid "You can adjust these settings in the servers php.ini." +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Setup.php:464 -msgid "PHP upload limits" +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Setup.php:487 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:488 +#: ../../Zotlabs/Module/Admin/Security.php:92 msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "Generate encryption keys" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:503 -msgid "libCurl PHP module" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." msgstr "" -#: ../../Zotlabs/Module/Setup.php:504 -msgid "GD graphics PHP module" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" msgstr "" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "OpenSSL PHP module" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mysqli or postgres PHP module" +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" msgstr "" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "mb_string PHP module" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" msgstr "" -#: ../../Zotlabs/Module/Setup.php:508 -msgid "xml PHP module" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 -msgid "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" msgstr "" -#: ../../Zotlabs/Module/Setup.php:512 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." msgstr "" -#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 -msgid "proc_open" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:135 +msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2942 +msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:538 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." +#: ../../Zotlabs/Module/Admin/Site.php:172 +#: ../../Zotlabs/Module/Settings/Display.php:141 +msgid "mobile" msgstr "" -#: ../../Zotlabs/Module/Setup.php:542 -msgid "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:174 +msgid "experimental" msgstr "" -#: ../../Zotlabs/Module/Setup.php:546 -msgid "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:176 +msgid "unsupported" msgstr "" -#: ../../Zotlabs/Module/Setup.php:564 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: ../../Zotlabs/Module/Admin/Site.php:222 +msgid "Yes - with approval" msgstr "" -#: ../../Zotlabs/Module/Setup.php:565 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +#: ../../Zotlabs/Module/Admin/Site.php:228 +msgid "My site is not a public server" msgstr "" -#: ../../Zotlabs/Module/Setup.php:566 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." +#: ../../Zotlabs/Module/Admin/Site.php:229 +msgid "My site has paid access only" msgstr "" -#: ../../Zotlabs/Module/Setup.php:567 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../Zotlabs/Module/Admin/Site.php:230 +msgid "My site has free access only" msgstr "" -#: ../../Zotlabs/Module/Setup.php:570 -msgid ".htconfig.php is writable" +#: ../../Zotlabs/Module/Admin/Site.php:231 +msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Setup.php:584 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Beginner/Basic" msgstr "" -#: ../../Zotlabs/Module/Setup.php:585 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." +#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Novice - not skilled but willing to learn" msgstr "" -#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../Zotlabs/Module/Admin/Site.php:251 +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Intermediate - somewhat comfortable" msgstr "" -#: ../../Zotlabs/Module/Setup.php:587 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +#: ../../Zotlabs/Module/Admin/Site.php:252 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "Advanced - very comfortable" msgstr "" -#: ../../Zotlabs/Module/Setup.php:590 -#, php-format -msgid "%s is writable" +#: ../../Zotlabs/Module/Admin/Site.php:253 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Expert - I can write computer code" msgstr "" -#: ../../Zotlabs/Module/Setup.php:606 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" +#: ../../Zotlabs/Module/Admin/Site.php:254 +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Wizard - I probably know more than you do" msgstr "" -#: ../../Zotlabs/Module/Setup.php:610 -msgid "store is writable" +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 +msgid "Site" msgstr "" -#: ../../Zotlabs/Module/Setup.php:643 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "File upload" msgstr "" -#: ../../Zotlabs/Module/Setup.php:644 -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!" +#: ../../Zotlabs/Module/Admin/Site.php:270 +msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Setup.php:645 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" msgstr "" -#: ../../Zotlabs/Module/Setup.php:646 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "Site name" msgstr "" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Site default technical skill level" msgstr "" -#: ../../Zotlabs/Module/Setup.php:648 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Used to provide a member experience matched to technical comfort level" msgstr "" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Lock the technical skill level setting" msgstr "" -#: ../../Zotlabs/Module/Setup.php:653 -msgid "SSL certificate validation" +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Members can set their own technical comfort level by default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:659 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Banner/Logo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:662 -msgid "Url rewrite is working" +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Administrator Information" msgstr "" -#: ../../Zotlabs/Module/Setup.php:671 +#: ../../Zotlabs/Module/Admin/Site.php:285 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." +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Setup.php:695 -msgid "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "System language" msgstr "" -#: ../../Zotlabs/Module/Setup.php:732 -msgid "

    What next

    " +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "System theme" msgstr "" -#: ../../Zotlabs/Module/Setup.php:733 +#: ../../Zotlabs/Module/Admin/Site.php:287 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Mobile system theme" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "Allow Feeds as Connections" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 -msgid "Profile" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "(Heavy system resource usage)" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Maximum image size" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Does this site allow new member registration?" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Invitation only" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:49 +#: ../../Zotlabs/Module/Admin/Site.php:293 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." msgstr "" -#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 -#: ../../include/widgets.php:102 -msgid "Apps" +#: ../../Zotlabs/Module/Admin/Site.php:294 +msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Register text" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:49 +#: ../../Zotlabs/Module/Admin/Site.php:296 msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "Preserve site homepage URL" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "Accounts abandoned after x days" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:59 +#: ../../Zotlabs/Module/Admin/Site.php:298 msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Allowed friend domains" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Verify Email Addresses" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2308 -msgid "Blocks" +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "" +"Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Force publish" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2310 -msgid "Layouts" +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:164 ../../include/help.php:44 -#: ../../include/help.php:49 -msgid "Help" +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Import Public Streams" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Login on Homepage" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Enable context help" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:186 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +"Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Directory Server URL" msgstr "" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Default directory server" msgstr "" -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 -msgid "Import" +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Proxy user" msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Proxy URL" msgstr "" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Network timeout" msgstr "" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Delivery interval" msgstr "" -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 -msgid "Public Hubs" +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Deliveries per process" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:27 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Poll interval" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Maximum Load Average" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:48 -msgid "Rate" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "0 for no expiration of imported content" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." +#: ../../Zotlabs/Module/Admin/Themes.php:18 +msgid "Theme settings updated." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." +#: ../../Zotlabs/Module/Admin/Themes.php:58 +msgid "No themes found." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 -msgid "Edit System Page Description" +#: ../../Zotlabs/Module/Admin/Themes.php:114 +msgid "Screenshot" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:121 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 +msgid "Themes" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:64 -msgid "Layout not found." +#: ../../Zotlabs/Module/Admin/Themes.php:160 +msgid "[Experimental]" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:70 -msgid "Module Name:" +#: ../../Zotlabs/Module/Admin/Themes.php:161 +msgid "[Unsupported]" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:71 -msgid "Layout Help" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " msgstr "" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " msgstr "" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:440 -msgid "Could not access address book record." +#: ../../Zotlabs/Module/Photos.php:112 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:460 -msgid "Refresh failed - channel is currently unavailable." +#: ../../Zotlabs/Module/Photos.php:133 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 -#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 -#: ../../Zotlabs/Module/Connedit.php:515 -msgid "Unable to set address book parameters." +#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:538 -msgid "Connection has been removed." +#: ../../Zotlabs/Module/Photos.php:520 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:89 ../../include/conversation.php:955 -msgid "View Profile" +#: ../../Zotlabs/Module/Photos.php:569 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:557 +#: ../../Zotlabs/Module/Photos.php:608 #, php-format -msgid "View %s's profile" +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:561 -msgid "Refresh Permissions" +#: ../../Zotlabs/Module/Photos.php:611 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Fetch updated permissions" +#: ../../Zotlabs/Module/Photos.php:647 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Recent Activity" +#: ../../Zotlabs/Module/Photos.php:651 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "View recent posts and comments" +#: ../../Zotlabs/Module/Photos.php:652 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Block (or Unblock) all communications with this connection" +#: ../../Zotlabs/Module/Photos.php:653 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "This connection is blocked!" +#: ../../Zotlabs/Module/Photos.php:654 +msgid "Caption (optional):" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Unignore" +#: ../../Zotlabs/Module/Photos.php:655 +msgid "Description (optional):" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Ignore (or Unignore) all inbound communications from this connection" +#: ../../Zotlabs/Module/Photos.php:686 +msgid "Album name could not be decoded" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "This connection is ignored!" +#: ../../Zotlabs/Module/Photos.php:734 +msgid "Contact Photos" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Unarchive" +#: ../../Zotlabs/Module/Photos.php:757 +msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Archive" +#: ../../Zotlabs/Module/Photos.php:759 +msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "This connection is archived!" +#: ../../Zotlabs/Module/Photos.php:814 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Unhide" +#: ../../Zotlabs/Module/Photos.php:861 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Hide" +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide or Unhide this connection from your other connections" +#: ../../Zotlabs/Module/Photos.php:921 +msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:603 -msgid "This connection is hidden!" +#: ../../Zotlabs/Module/Photos.php:922 +msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Delete this connection" +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 -msgid "Me" +#: ../../Zotlabs/Module/Photos.php:944 +msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 -msgid "Family" +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:627 -#: ../../Zotlabs/Module/Settings/Channel.php:61 -#: ../../Zotlabs/Module/Settings/Channel.php:65 -#: ../../Zotlabs/Module/Settings/Channel.php:66 -#: ../../Zotlabs/Module/Settings/Channel.php:69 -#: ../../Zotlabs/Module/Settings/Channel.php:80 -#: ../../include/selectors.php:123 ../../include/channel.php:402 -#: ../../include/channel.php:403 ../../include/channel.php:410 -#: ../../include/widgets.php:531 -msgid "Friends" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 -msgid "Acquaintances" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CCW (left)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Approve this connection" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Move photo to album" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Accept connection to allow communication" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:691 -msgid "Set Affinity" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:694 -msgid "Set Profile" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:697 -msgid "Set Affinity & Profile" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:746 -msgid "none" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 -msgid "Connection Default Permissions" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 -#, php-format -msgid "Connection: %s" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Apply these permissions automatically" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 +msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Connection requests will be approved without your interaction" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 +#: ../../include/conversation.php:743 +msgid "Please wait" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "This connection's primary address is" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:709 +msgid "This is you" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:754 -msgid "Available locations:" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 +msgid "Comment" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:759 -msgid "Connection Tools" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Slide to adjust your degree of friendship" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:763 -msgid "Slide to adjust your rating" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 -msgid "Optionally explain your rating" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Custom Filter" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Only import posts with this text" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Do not import posts with this text" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1762 +msgid "View all" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "This information is public!" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/channel.php:1182 +#: ../../include/conversation.php:1786 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Connection Pending Approval" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:778 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -msgid "inherited" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:780 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:782 -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -msgid "Their Settings" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:783 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -msgid "My Settings" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 +#: ../../include/acl_selectors.php:181 +msgid "Close" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:785 -#: ../../Zotlabs/Module/Settings/Tokens.php:165 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:786 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:788 -msgid "Last update:" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" msgstr "" #: ../../Zotlabs/Module/Rbmark.php:94 @@ -5039,10 +5218,6 @@ msgstr "" msgid "Or enter new bookmark folder name" msgstr "" -#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 -msgid "This site is not a directory server" -msgstr "" - #: ../../Zotlabs/Module/Rmagic.php:35 msgid "Authentication failed." msgstr "" @@ -5212,21 +5387,110 @@ msgstr "" msgid "Search results for: %s" msgstr "" -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " msgstr "" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " msgstr "" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/bb2diaspora.php:507 +#: ../../include/channel.php:1049 +msgid "Location:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." msgstr "" #: ../../Zotlabs/Module/Service_limits.php:23 @@ -5290,8 +5554,69 @@ msgstr "" msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" msgstr "" #: ../../Zotlabs/Module/Sharedwithme.php:98 @@ -5315,8 +5640,8 @@ msgid "Not found" msgstr "" #: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:111 ../../include/conversation.php:1734 -#: ../../include/conversation.php:1737 ../../include/features.php:57 +#: ../../include/nav.php:111 ../../include/features.php:99 +#: ../../include/conversation.php:1734 ../../include/conversation.php:1737 msgid "Wiki" msgstr "" @@ -5403,8 +5728,8 @@ msgstr "" msgid "*" msgstr "" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:672 -#: ../../include/features.php:70 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:195 +#: ../../include/widgets.php:672 msgid "Channel Sources" msgstr "" @@ -5500,292 +5825,32 @@ msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" #: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 -msgid "Album not found." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:112 -msgid "Delete Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:133 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:520 -msgid "No photos selected" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:569 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:608 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:611 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:647 -msgid "Upload Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:651 -msgid "Enter an album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:652 -msgid "or select an existing album (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:653 -msgid "Create a status post for this upload" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:654 -msgid "Caption (optional):" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:655 -msgid "Description (optional):" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:686 -msgid "Album name could not be decoded" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:734 -msgid "Contact Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:757 -msgid "Show Newest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:759 -msgid "Show Oldest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 -msgid "View Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:814 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 -msgid "Edit Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:861 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:863 -msgid "Photo not available" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:921 -msgid "Use as profile photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:922 -msgid "Use as cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Private Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:944 -msgid "View Full Size" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Edit photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "Move photo to album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:709 -msgid "This is you" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1762 -msgid "View all" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1786 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1789 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" +msgid "Tag removed" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Likes" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 -msgctxt "noun" -msgid "Dislikes" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 -#: ../../include/acl_selectors.php:181 -msgid "Close" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" msgstr "" #: ../../Zotlabs/Module/Follow.php:34 @@ -5870,72 +5935,9 @@ msgstr "" msgid "Lookup xchan beginning with (or webbie): " msgstr "" -#: ../../Zotlabs/Module/Admin.php:97 -msgid "# Accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:98 -msgid "# blocked accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:99 -msgid "# expired accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:100 -msgid "# expiring accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:111 -msgid "# Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:112 -msgid "# primary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:113 -msgid "# clones" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:119 -msgid "Message queues" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Your software should be updated" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Summary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Registered accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Pending registrations" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Registered channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:148 -msgid "Active plugins" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:149 -msgid "Version" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:150 -msgid "Repository version (master)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:151 -msgid "Repository version (dev)" +#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 +#: ../../include/widgets.php:102 +msgid "Apps" msgstr "" #: ../../Zotlabs/Module/Settings/Account.php:20 @@ -6616,19 +6618,19 @@ msgstr "" msgid "Room is full" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1889 msgid "$Projectname Notification" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1890 msgid "$projectname" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1892 msgid "Thank You," msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1894 #, php-format msgid "%s Administrator" msgstr "" @@ -6662,319 +6664,162 @@ msgstr "" msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:164 +#: ../../Zotlabs/Lib/Enotify.php:167 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:172 +#: ../../Zotlabs/Lib/Enotify.php:175 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:181 +#: ../../Zotlabs/Lib/Enotify.php:184 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:192 +#: ../../Zotlabs/Lib/Enotify.php:195 #, php-format msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:193 +#: ../../Zotlabs/Lib/Enotify.php:196 #, php-format msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 +#: ../../Zotlabs/Lib/Enotify.php:199 ../../Zotlabs/Lib/Enotify.php:214 +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:258 +#: ../../Zotlabs/Lib/Enotify.php:272 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:202 +#: ../../Zotlabs/Lib/Enotify.php:205 #, php-format msgid "[Hubzilla:Notify] %s posted to your profile wall" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:204 +#: ../../Zotlabs/Lib/Enotify.php:207 #, php-format msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:206 +#: ../../Zotlabs/Lib/Enotify.php:209 #, php-format msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:230 +#: ../../Zotlabs/Lib/Enotify.php:233 #, php-format msgid "[Hubzilla:Notify] %s tagged you" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:231 +#: ../../Zotlabs/Lib/Enotify.php:234 #, php-format msgid "%1$s, %2$s tagged you at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:232 +#: ../../Zotlabs/Lib/Enotify.php:235 #, php-format msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:244 +#: ../../Zotlabs/Lib/Enotify.php:247 #, php-format msgid "[Hubzilla:Notify] %1$s poked you" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:245 +#: ../../Zotlabs/Lib/Enotify.php:248 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:246 +#: ../../Zotlabs/Lib/Enotify.php:249 #, php-format msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:262 +#: ../../Zotlabs/Lib/Enotify.php:265 #, php-format msgid "[Hubzilla:Notify] %s tagged your post" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:263 +#: ../../Zotlabs/Lib/Enotify.php:266 #, php-format msgid "%1$s, %2$s tagged your post at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:264 +#: ../../Zotlabs/Lib/Enotify.php:267 #, php-format msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:276 +#: ../../Zotlabs/Lib/Enotify.php:279 msgid "[Hubzilla:Notify] Introduction received" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:277 +#: ../../Zotlabs/Lib/Enotify.php:280 #, php-format msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:278 +#: ../../Zotlabs/Lib/Enotify.php:281 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#: ../../Zotlabs/Lib/Enotify.php:285 ../../Zotlabs/Lib/Enotify.php:304 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:284 +#: ../../Zotlabs/Lib/Enotify.php:287 #, php-format msgid "Please visit %s to approve or reject the connection request." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:291 +#: ../../Zotlabs/Lib/Enotify.php:294 msgid "[Hubzilla:Notify] Friend suggestion received" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:292 +#: ../../Zotlabs/Lib/Enotify.php:295 #, php-format msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:293 +#: ../../Zotlabs/Lib/Enotify.php:296 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:299 +#: ../../Zotlabs/Lib/Enotify.php:302 msgid "Name:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "" - #: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:124 -msgid "Visible to your default audience" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:165 -msgid "Only me" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" +msgid "Photo:" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../Zotlabs/Lib/Enotify.php:306 #, php-format -msgid "Any account on %s" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:88 -msgid "Suggest Channels" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 -#: ../../boot.php:1739 -msgid "Login" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:184 -msgid "Grid" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:187 -msgid "Channel Home" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 -#: ../../include/conversation.php:1688 ../../include/conversation.php:1691 -msgid "Events" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:172 -msgid "Directory" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:198 -msgid "Mail" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:99 -msgid "Chat" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1560 -msgid "Features" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" +msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" +#: ../../Zotlabs/Lib/Enotify.php:524 +msgid "[Hubzilla:Notify]" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" +#: ../../Zotlabs/Lib/Enotify.php:673 +msgid "created a new post" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" +#: ../../Zotlabs/Lib/Enotify.php:674 +#, php-format +msgid "commented on %s's post" msgstr "" #: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 @@ -7153,421 +6998,203 @@ msgstr "" msgid "Video" msgstr "" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "" - -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." -msgstr "" - -#: ../../include/dba/dba_driver.php:173 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "" - -#: ../../include/network.php:1935 ../../include/account.php:326 -#: ../../include/account.php:353 ../../include/account.php:413 -msgid "Administrator" -msgstr "" - -#: ../../include/network.php:1949 -msgid "No Subject" -msgstr "" - -#: ../../include/network.php:2203 ../../include/network.php:2204 -msgid "Friendica" -msgstr "" - -#: ../../include/network.php:2205 -msgid "OStatus" -msgstr "" - -#: ../../include/network.php:2206 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:2207 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/network.php:2209 -msgid "Diaspora" -msgstr "" - -#: ../../include/network.php:2210 -msgid "Facebook" -msgstr "" - -#: ../../include/network.php:2211 -msgid "Zot" -msgstr "" - -#: ../../include/network.php:2212 -msgid "LinkedIn" -msgstr "" - -#: ../../include/network.php:2213 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/network.php:2214 -msgid "MySpace" -msgstr "" - -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "" - -#: ../../include/photos.php:506 ../../include/conversation.php:1674 -msgid "Photo Albums" -msgstr "" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "" - -#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:85 ../../include/nav.php:118 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:88 ../../include/nav.php:149 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:88 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:89 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:91 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:93 ../../include/channel.php:963 -msgid "Edit Profile" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:95 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:96 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:99 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:105 ../../include/conversation.php:1714 -msgid "Bookmarks" -msgstr "" - -#: ../../include/nav.php:105 -msgid "Your bookmarks" +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:124 +msgid "Visible to your default audience" msgstr "" -#: ../../include/nav.php:109 -msgid "Your webpages" +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:165 +msgid "Only me" msgstr "" -#: ../../include/nav.php:111 -msgid "Your wiki" +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" msgstr "" -#: ../../include/nav.php:115 -msgid "Sign in" +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" msgstr "" -#: ../../include/nav.php:132 +#: ../../Zotlabs/Lib/PermissionDescription.php:109 #, php-format -msgid "%s - click to logout" -msgstr "" - -#: ../../include/nav.php:135 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:135 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:149 -msgid "Home Page" -msgstr "" - -#: ../../include/nav.php:152 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:164 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:168 -msgid "Applications, utilities, links, games" -msgstr "" - -#: ../../include/nav.php:170 -msgid "Search site @name, #tag, ?docs, content" -msgstr "" - -#: ../../include/nav.php:172 -msgid "Channel Directory" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Your grid" -msgstr "" - -#: ../../include/nav.php:185 -msgid "Mark all grid notifications seen" -msgstr "" - -#: ../../include/nav.php:187 -msgid "Channel home" -msgstr "" - -#: ../../include/nav.php:188 -msgid "Mark all channel notifications seen" -msgstr "" - -#: ../../include/nav.php:194 -msgid "Notices" -msgstr "" - -#: ../../include/nav.php:194 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:195 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:198 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:199 -msgid "See all private messages" -msgstr "" - -#: ../../include/nav.php:200 -msgid "Mark all private messages seen" -msgstr "" - -#: ../../include/nav.php:201 ../../include/widgets.php:700 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:202 ../../include/widgets.php:705 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:203 ../../include/widgets.php:710 -msgid "New Message" +msgid "Any account on %s" msgstr "" -#: ../../include/nav.php:206 -msgid "Event Calendar" +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" msgstr "" -#: ../../include/nav.php:207 -msgid "See all events" +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" msgstr "" -#: ../../include/nav.php:208 -msgid "Mark all events seen" +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" msgstr "" -#: ../../include/nav.php:211 -msgid "Manage Your Channels" +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" msgstr "" -#: ../../include/nav.php:213 -msgid "Account/Channel Settings" +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." msgstr "" -#: ../../include/nav.php:221 ../../include/widgets.php:1590 -msgid "Admin" +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" msgstr "" -#: ../../include/nav.php:221 -msgid "Site Setup and Configuration" +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" msgstr "" -#: ../../include/nav.php:252 ../../include/conversation.php:855 -msgid "Loading..." +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" msgstr "" -#: ../../include/nav.php:257 -msgid "@name, #tag, ?doc, content" +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" msgstr "" -#: ../../include/nav.php:258 -msgid "Please wait..." +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" msgstr "" -#: ../../include/oembed.php:349 -msgid "Embedded content" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" msgstr "" -#: ../../include/oembed.php:358 -msgid "Embedding disabled" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" msgstr "" -#: ../../include/permissions.php:35 -msgid "Can view my normal stream and posts" +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" msgstr "" -#: ../../include/permissions.php:39 -msgid "Can view my webpages" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" msgstr "" -#: ../../include/permissions.php:43 -msgid "Can post on my channel page (\"wall\")" +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" msgstr "" -#: ../../include/permissions.php:46 -msgid "Can like/dislike stuff" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:319 +msgid "Suggest Channels" msgstr "" -#: ../../include/permissions.php:46 -msgid "Profiles and things other than posts/comments" +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 +#: ../../boot.php:1739 +msgid "Login" msgstr "" -#: ../../include/permissions.php:48 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:184 +msgid "Grid" msgstr "" -#: ../../include/permissions.php:48 -msgid "Advanced - useful for creating group forum channels" +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:187 +msgid "Channel Home" msgstr "" -#: ../../include/permissions.php:49 -msgid "Can chat with me (when available)" +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 +#: ../../include/conversation.php:1688 ../../include/conversation.php:1691 +msgid "Events" msgstr "" -#: ../../include/permissions.php:50 -msgid "Can write to my file storage and photos" +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:172 +msgid "Directory" msgstr "" -#: ../../include/permissions.php:51 -msgid "Can edit my webpages" +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:198 +msgid "Mail" msgstr "" -#: ../../include/permissions.php:53 -msgid "Somewhat advanced - very useful in open communities" +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:99 +msgid "Chat" msgstr "" -#: ../../include/permissions.php:55 -msgid "Can administer my channel resources" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" msgstr "" -#: ../../include/permissions.php:55 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" msgstr "" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" msgstr "" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" msgstr "" -#: ../../include/import.php:1441 -msgid "Unable to import element \"" +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1560 +msgid "Features" msgstr "" -#: ../../include/items.php:918 ../../include/items.php:963 -msgid "(Unknown)" +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" msgstr "" -#: ../../include/items.php:1162 -msgid "Visible to anybody on the internet." +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" msgstr "" -#: ../../include/items.php:1164 -msgid "Visible to you only." +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" msgstr "" -#: ../../include/items.php:1166 -msgid "Visible to anybody in this network." +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" msgstr "" -#: ../../include/items.php:1168 -msgid "Visible to anybody authenticated." +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." msgstr "" -#: ../../include/items.php:1170 -#, php-format -msgid "Visible to anybody on %s." +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../include/items.php:1172 -msgid "Visible to all connections." +#: ../../include/dba/dba_driver.php:173 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/items.php:1174 -msgid "Visible to approved connections." +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" msgstr "" -#: ../../include/items.php:1176 -msgid "Visible to specific connections." +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" msgstr "" -#: ../../include/items.php:3966 -msgid "Privacy group is empty." +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." msgstr "" -#: ../../include/items.php:3973 -#, php-format -msgid "Privacy group: %s" +#: ../../include/acl_selectors.php:172 +msgid "Show" msgstr "" -#: ../../include/items.php:3985 -msgid "Connection not found." +#: ../../include/acl_selectors.php:173 +msgid "Don't show" msgstr "" -#: ../../include/items.php:4338 -msgid "profile photo" +#: ../../include/acl_selectors.php:207 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These " +"permissions set who is allowed to view the post." msgstr "" #: ../../include/datetime.php:135 @@ -7617,110 +7244,213 @@ msgid_plural "weeks" msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "" + +#: ../../include/contact_widgets.php:53 ../../include/features.php:372 +#: ../../include/widgets.php:346 +msgid "Saved Folders" +msgstr "" + +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:91 ../../include/widgets.php:46 +#: ../../include/widgets.php:465 ../../include/taxonomy.php:188 +#: ../../include/taxonomy.php:270 +msgid "Categories" +msgstr "" + +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" +#: ../../include/items.php:918 ../../include/items.php:963 +msgid "(Unknown)" +msgstr "" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +#: ../../include/items.php:1162 +msgid "Visible to anybody on the internet." +msgstr "" -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" +#: ../../include/items.php:1164 +msgid "Visible to you only." msgstr "" -#: ../../include/datetime.php:563 +#: ../../include/items.php:1166 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1168 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1170 #, php-format -msgid "Happy Birthday %1$s" +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/account.php:35 -msgid "Not a valid email address" +#: ../../include/items.php:1172 +msgid "Visible to all connections." msgstr "" -#: ../../include/account.php:37 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." msgstr "" -#: ../../include/account.php:43 -msgid "Your email address is already registered at this site." +#: ../../include/items.php:1176 +msgid "Visible to specific connections." msgstr "" -#: ../../include/account.php:75 -msgid "An invitation is required." +#: ../../include/items.php:3976 +msgid "Privacy group is empty." msgstr "" -#: ../../include/account.php:79 -msgid "Invitation could not be verified." +#: ../../include/items.php:3983 +#, php-format +msgid "Privacy group: %s" msgstr "" -#: ../../include/account.php:130 -msgid "Please enter the required information." +#: ../../include/items.php:3995 +msgid "Connection not found." msgstr "" -#: ../../include/account.php:198 -msgid "Failed to store account information." +#: ../../include/items.php:4348 +msgid "profile photo" msgstr "" -#: ../../include/account.php:258 -#, php-format -msgid "Registration confirmation for %s" +#: ../../include/message.php:20 +msgid "No recipient provided." msgstr "" -#: ../../include/account.php:324 -#, php-format -msgid "Registration request at %s" +#: ../../include/message.php:25 +msgid "[no subject]" msgstr "" -#: ../../include/account.php:348 -msgid "your registration password" +#: ../../include/message.php:45 +msgid "Unable to determine sender." msgstr "" -#: ../../include/account.php:351 ../../include/account.php:411 -#, php-format -msgid "Registration details for %s" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." msgstr "" -#: ../../include/account.php:423 -msgid "Account approved." +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/account.php:463 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" msgstr "" -#: ../../include/account.php:748 ../../include/account.php:750 -msgid "Click here to upgrade." +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" msgstr "" -#: ../../include/account.php:756 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/event.php:824 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/account.php:761 -msgid "This action is not available under your subscription plan." +#: ../../include/event.php:1024 +msgid "Not specified" +msgstr "" + +#: ../../include/event.php:1025 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1026 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1027 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1028 +msgid "Cancelled" msgstr "" #: ../../include/selectors.php:30 @@ -7971,104 +7701,91 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 -#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 -#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 -#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 -#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 -#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:920 -msgid "Image/photo" +#: ../../include/permissions.php:35 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 -msgid "Encrypted content" +#: ../../include/permissions.php:39 +msgid "Can view my webpages" msgstr "" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " +#: ../../include/permissions.php:43 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." +#: ../../include/permissions.php:46 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" +#: ../../include/permissions.php:46 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" +#: ../../include/permissions.php:48 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/bbcode.php:346 -msgid "spoiler" +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/bbcode.php:619 ../../include/wiki.php:525 -msgid "Different viewers will see this text differently" +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/bbcode.php:869 -msgid "$1 wrote:" +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" msgstr "" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" msgstr "" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." +#: ../../include/permissions.php:55 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/event.php:1021 -msgid "Not specified" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/event.php:1022 -msgid "Needs Action" +#: ../../include/photos.php:121 +msgid "Image file is empty." msgstr "" -#: ../../include/event.php:1023 -msgid "Completed" +#: ../../include/photos.php:259 +msgid "Photo storage failed." msgstr "" -#: ../../include/event.php:1024 -msgid "In Process" +#: ../../include/photos.php:299 +msgid "a new photo" msgstr "" -#: ../../include/event.php:1025 -msgid "Cancelled" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" msgstr "" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/photos.php:506 ../../include/conversation.php:1674 +msgid "Photo Albums" msgstr "" -#: ../../include/security.php:527 -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." +#: ../../include/photos.php:510 +msgid "Upload New Photos" msgstr "" -#: ../../include/help.php:25 -msgid "Help:" +#: ../../include/api.php:1330 +msgid "Public Timeline" msgstr "" #: ../../include/bookmarks.php:35 @@ -8091,7 +7808,7 @@ msgstr "" msgid "edit" msgstr "" -#: ../../include/group.php:311 ../../include/features.php:83 +#: ../../include/group.php:311 ../../include/features.php:274 msgid "Privacy Groups" msgstr "" @@ -8111,6 +7828,26 @@ msgstr "" msgid "add" msgstr "" +#: ../../include/oembed.php:349 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:358 +msgid "Embedding disabled" +msgstr "" + +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "" + +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "" + #: ../../include/attach.php:248 ../../include/attach.php:334 msgid "Item was not found." msgstr "" @@ -8137,48 +7874,40 @@ msgstr "" msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/attach.php:847 +#: ../../include/attach.php:854 msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/attach.php:860 +#: ../../include/attach.php:867 msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/attach.php:916 ../../include/attach.php:932 +#: ../../include/attach.php:923 ../../include/attach.php:939 msgid "Path not available." msgstr "" -#: ../../include/attach.php:978 ../../include/attach.php:1130 +#: ../../include/attach.php:985 ../../include/attach.php:1137 msgid "Empty pathname" msgstr "" -#: ../../include/attach.php:1004 +#: ../../include/attach.php:1011 msgid "duplicate filename or path" msgstr "" -#: ../../include/attach.php:1026 +#: ../../include/attach.php:1033 msgid "Path not found." msgstr "" -#: ../../include/attach.php:1084 +#: ../../include/attach.php:1091 msgid "mkdir failed." msgstr "" -#: ../../include/attach.php:1088 -msgid "database storage failed." -msgstr "" - -#: ../../include/attach.php:1136 -msgid "Empty path" -msgstr "" - -#: ../../include/page_widgets.php:7 -msgid "New Page" +#: ../../include/attach.php:1095 +msgid "database storage failed." msgstr "" -#: ../../include/page_widgets.php:46 -msgid "Title" +#: ../../include/attach.php:1143 +msgid "Empty path" msgstr "" #: ../../include/bb2diaspora.php:398 @@ -8345,453 +8074,691 @@ msgstr "" msgid "April" msgstr "" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:50 ../../include/text.php:1289 +msgid "June" +msgstr "" + +#: ../../include/js_strings.php:51 ../../include/text.php:1289 +msgid "July" +msgstr "" + +#: ../../include/js_strings.php:52 ../../include/text.php:1289 +msgid "August" +msgstr "" + +#: ../../include/js_strings.php:53 ../../include/text.php:1289 +msgid "September" +msgstr "" + +#: ../../include/js_strings.php:54 ../../include/text.php:1289 +msgid "October" +msgstr "" + +#: ../../include/js_strings.php:55 ../../include/text.php:1289 +msgid "November" +msgstr "" + +#: ../../include/js_strings.php:56 ../../include/text.php:1289 +msgid "December" +msgstr "" + +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "" + +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "" + +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "" + +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "" + +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "" + +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "" + +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "" + +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "" + +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "" + +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "" + +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "" + +#: ../../include/js_strings.php:69 ../../include/text.php:1285 +msgid "Sunday" +msgstr "" + +#: ../../include/js_strings.php:70 ../../include/text.php:1285 +msgid "Monday" +msgstr "" + +#: ../../include/js_strings.php:71 ../../include/text.php:1285 +msgid "Tuesday" +msgstr "" + +#: ../../include/js_strings.php:72 ../../include/text.php:1285 +msgid "Wednesday" +msgstr "" + +#: ../../include/js_strings.php:73 ../../include/text.php:1285 +msgid "Thursday" +msgstr "" + +#: ../../include/js_strings.php:74 ../../include/text.php:1285 +msgid "Friday" +msgstr "" + +#: ../../include/js_strings.php:75 ../../include/text.php:1285 +msgid "Saturday" +msgstr "" + +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "" + +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "" + +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "" + +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "" + +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "" + +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "" + +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "" + +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "" + +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "" + +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "" + +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "" + +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "" + +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 +msgid "Logout" +msgstr "" + +#: ../../include/nav.php:85 ../../include/nav.php:118 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:88 ../../include/nav.php:149 +msgid "Home" +msgstr "" + +#: ../../include/nav.php:88 +msgid "Your posts and conversations" +msgstr "" + +#: ../../include/nav.php:89 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:91 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:93 ../../include/channel.php:963 +msgid "Edit Profile" +msgstr "" + +#: ../../include/nav.php:93 +msgid "Edit your profile" +msgstr "" + +#: ../../include/nav.php:95 +msgid "Your photos" +msgstr "" + +#: ../../include/nav.php:96 +msgid "Your files" +msgstr "" + +#: ../../include/nav.php:99 +msgid "Your chatrooms" +msgstr "" + +#: ../../include/nav.php:105 ../../include/conversation.php:1714 +msgid "Bookmarks" +msgstr "" + +#: ../../include/nav.php:105 +msgid "Your bookmarks" +msgstr "" + +#: ../../include/nav.php:109 +msgid "Your webpages" +msgstr "" + +#: ../../include/nav.php:111 +msgid "Your wiki" +msgstr "" + +#: ../../include/nav.php:115 +msgid "Sign in" msgstr "" -#: ../../include/js_strings.php:50 ../../include/text.php:1289 -msgid "June" +#: ../../include/nav.php:132 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/js_strings.php:51 ../../include/text.php:1289 -msgid "July" +#: ../../include/nav.php:135 +msgid "Remote authentication" msgstr "" -#: ../../include/js_strings.php:52 ../../include/text.php:1289 -msgid "August" +#: ../../include/nav.php:135 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/js_strings.php:53 ../../include/text.php:1289 -msgid "September" +#: ../../include/nav.php:149 +msgid "Home Page" msgstr "" -#: ../../include/js_strings.php:54 ../../include/text.php:1289 -msgid "October" +#: ../../include/nav.php:152 +msgid "Create an account" msgstr "" -#: ../../include/js_strings.php:55 ../../include/text.php:1289 -msgid "November" +#: ../../include/nav.php:164 +msgid "Help and documentation" msgstr "" -#: ../../include/js_strings.php:56 ../../include/text.php:1289 -msgid "December" +#: ../../include/nav.php:168 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/js_strings.php:57 -msgid "Jan" +#: ../../include/nav.php:170 +msgid "Search site @name, #tag, ?docs, content" msgstr "" -#: ../../include/js_strings.php:58 -msgid "Feb" +#: ../../include/nav.php:172 +msgid "Channel Directory" msgstr "" -#: ../../include/js_strings.php:59 -msgid "Mar" +#: ../../include/nav.php:184 +msgid "Your grid" msgstr "" -#: ../../include/js_strings.php:60 -msgid "Apr" +#: ../../include/nav.php:185 +msgid "Mark all grid notifications seen" msgstr "" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" +#: ../../include/nav.php:187 +msgid "Channel home" msgstr "" -#: ../../include/js_strings.php:62 -msgid "Jun" +#: ../../include/nav.php:188 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/js_strings.php:63 -msgid "Jul" +#: ../../include/nav.php:194 +msgid "Notices" msgstr "" -#: ../../include/js_strings.php:64 -msgid "Aug" +#: ../../include/nav.php:194 +msgid "Notifications" msgstr "" -#: ../../include/js_strings.php:65 -msgid "Sep" +#: ../../include/nav.php:195 +msgid "See all notifications" msgstr "" -#: ../../include/js_strings.php:66 -msgid "Oct" +#: ../../include/nav.php:198 +msgid "Private mail" msgstr "" -#: ../../include/js_strings.php:67 -msgid "Nov" +#: ../../include/nav.php:199 +msgid "See all private messages" msgstr "" -#: ../../include/js_strings.php:68 -msgid "Dec" +#: ../../include/nav.php:200 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/js_strings.php:69 ../../include/text.php:1285 -msgid "Sunday" +#: ../../include/nav.php:201 ../../include/widgets.php:700 +msgid "Inbox" msgstr "" -#: ../../include/js_strings.php:70 ../../include/text.php:1285 -msgid "Monday" +#: ../../include/nav.php:202 ../../include/widgets.php:705 +msgid "Outbox" msgstr "" -#: ../../include/js_strings.php:71 ../../include/text.php:1285 -msgid "Tuesday" +#: ../../include/nav.php:203 ../../include/widgets.php:710 +msgid "New Message" msgstr "" -#: ../../include/js_strings.php:72 ../../include/text.php:1285 -msgid "Wednesday" +#: ../../include/nav.php:206 +msgid "Event Calendar" msgstr "" -#: ../../include/js_strings.php:73 ../../include/text.php:1285 -msgid "Thursday" +#: ../../include/nav.php:207 +msgid "See all events" msgstr "" -#: ../../include/js_strings.php:74 ../../include/text.php:1285 -msgid "Friday" +#: ../../include/nav.php:208 +msgid "Mark all events seen" msgstr "" -#: ../../include/js_strings.php:75 ../../include/text.php:1285 -msgid "Saturday" +#: ../../include/nav.php:211 +msgid "Manage Your Channels" msgstr "" -#: ../../include/js_strings.php:76 -msgid "Sun" +#: ../../include/nav.php:213 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/js_strings.php:77 -msgid "Mon" +#: ../../include/nav.php:221 ../../include/widgets.php:1590 +msgid "Admin" msgstr "" -#: ../../include/js_strings.php:78 -msgid "Tue" +#: ../../include/nav.php:221 +msgid "Site Setup and Configuration" msgstr "" -#: ../../include/js_strings.php:79 -msgid "Wed" +#: ../../include/nav.php:252 ../../include/conversation.php:855 +msgid "Loading..." msgstr "" -#: ../../include/js_strings.php:80 -msgid "Thu" +#: ../../include/nav.php:257 +msgid "@name, #tag, ?doc, content" msgstr "" -#: ../../include/js_strings.php:81 -msgid "Fri" +#: ../../include/nav.php:258 +msgid "Please wait..." msgstr "" -#: ../../include/js_strings.php:82 -msgid "Sat" +#: ../../include/security.php:109 +msgid "guest:" msgstr "" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" +#: ../../include/security.php:527 +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/js_strings.php:84 -msgctxt "calendar" -msgid "month" +#: ../../include/features.php:58 +msgid "General Features" msgstr "" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" +#: ../../include/features.php:63 +msgid "Multiple Profiles" msgstr "" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" +#: ../../include/features.php:64 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" +#: ../../include/features.php:72 +msgid "Advanced Profiles" msgstr "" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." +#: ../../include/features.php:73 +msgid "Additional profile sections and selections" msgstr "" -#: ../../include/follow.php:32 -msgid "Channel location missing." +#: ../../include/features.php:81 +msgid "Profile Import/Export" msgstr "" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." +#: ../../include/features.php:82 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." +#: ../../include/features.php:90 +msgid "Web Pages" msgstr "" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." +#: ../../include/features.php:91 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." +#: ../../include/features.php:100 +msgid "Provide a wiki for your channel" msgstr "" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." +#: ../../include/features.php:117 +msgid "Private Notes" msgstr "" -#: ../../include/acl_selectors.php:169 -msgid "Who can see this?" +#: ../../include/features.php:118 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "" -#: ../../include/acl_selectors.php:170 -msgid "Custom selection" +#: ../../include/features.php:126 +msgid "Navigation Channel Select" msgstr "" -#: ../../include/acl_selectors.php:171 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." +#: ../../include/features.php:127 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../include/acl_selectors.php:172 -msgid "Show" +#: ../../include/features.php:135 +msgid "Photo Location" msgstr "" -#: ../../include/acl_selectors.php:173 -msgid "Don't show" +#: ../../include/features.php:136 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../include/acl_selectors.php:207 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These " -"permissions set who is allowed to view the post." +#: ../../include/features.php:144 +msgid "Access Controlled Chatrooms" msgstr "" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" +#: ../../include/features.php:145 +msgid "Provide chatrooms and chat services with access control." msgstr "" -#: ../../include/channel.php:67 -msgid "Empty name" +#: ../../include/features.php:153 +msgid "Smart Birthdays" msgstr "" -#: ../../include/channel.php:70 -msgid "Name too long" +#: ../../include/features.php:154 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." msgstr "" -#: ../../include/channel.php:181 -msgid "No account identifier" +#: ../../include/features.php:162 +msgid "Advanced Directory Search" msgstr "" -#: ../../include/channel.php:193 -msgid "Nickname is required." +#: ../../include/features.php:163 +msgid "Allows creation of complex directory search queries" msgstr "" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." +#: ../../include/features.php:171 +msgid "Advanced Theme and Layout Settings" msgstr "" -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../include/features.php:172 +msgid "Allows fine tuning of themes and page layouts" msgstr "" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" +#: ../../include/features.php:182 +msgid "Post Composition Features" msgstr "" -#: ../../include/channel.php:341 -msgid "Default Profile" +#: ../../include/features.php:186 +msgid "Large Photos" msgstr "" -#: ../../include/channel.php:813 -msgid "Requested channel is not available." +#: ../../include/features.php:187 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -#: ../../include/channel.php:960 -msgid "Create New Profile" +#: ../../include/features.php:196 +msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../include/channel.php:980 -msgid "Visible to everybody" +#: ../../include/features.php:204 +msgid "Even More Encryption" msgstr "" -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" +#: ../../include/features.php:205 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" +#: ../../include/features.php:213 +msgid "Enable Voting Tools" msgstr "" -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" +#: ../../include/features.php:214 +msgid "Provide a class of post which others can vote on" msgstr "" -#: ../../include/channel.php:1056 -msgid "Online Now" +#: ../../include/features.php:222 +msgid "Disable Comments" msgstr "" -#: ../../include/channel.php:1171 -msgid "Like this channel" +#: ../../include/features.php:223 +msgid "Provide the option to disable comments for a post" msgstr "" -#: ../../include/channel.php:1195 -msgid "j F, Y" +#: ../../include/features.php:231 +msgid "Delayed Posting" msgstr "" -#: ../../include/channel.php:1196 -msgid "j F" +#: ../../include/features.php:232 +msgid "Allow posts to be published at a later date" msgstr "" -#: ../../include/channel.php:1203 -msgid "Birthday:" +#: ../../include/features.php:240 +msgid "Content Expiration" msgstr "" -#: ../../include/channel.php:1216 -#, php-format -msgid "for %1$d %2$s" +#: ../../include/features.php:241 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" +#: ../../include/features.php:249 +msgid "Suppress Duplicate Posts/Comments" msgstr "" -#: ../../include/channel.php:1225 -msgid "Tags:" +#: ../../include/features.php:250 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." msgstr "" -#: ../../include/channel.php:1227 -msgid "Political Views:" +#: ../../include/features.php:261 +msgid "Network and Stream Filtering" msgstr "" -#: ../../include/channel.php:1229 -msgid "Religion:" +#: ../../include/features.php:265 +msgid "Search by Date" msgstr "" -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" +#: ../../include/features.php:266 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/channel.php:1235 -msgid "Likes:" +#: ../../include/features.php:275 +msgid "Enable management and selection of privacy groups" msgstr "" -#: ../../include/channel.php:1237 -msgid "Dislikes:" +#: ../../include/features.php:283 ../../include/widgets.php:283 +msgid "Saved Searches" msgstr "" -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" +#: ../../include/features.php:284 +msgid "Save search terms for re-use" msgstr "" -#: ../../include/channel.php:1241 -msgid "My other channels:" +#: ../../include/features.php:292 +msgid "Network Personal Tab" msgstr "" -#: ../../include/channel.php:1243 -msgid "Musical interests:" +#: ../../include/features.php:293 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/channel.php:1245 -msgid "Books, literature:" +#: ../../include/features.php:301 +msgid "Network New Tab" msgstr "" -#: ../../include/channel.php:1247 -msgid "Television:" +#: ../../include/features.php:302 +msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" +#: ../../include/features.php:310 +msgid "Affinity Tool" msgstr "" -#: ../../include/channel.php:1251 -msgid "Love/Romance:" +#: ../../include/features.php:311 +msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/channel.php:1253 -msgid "Work/employment:" +#: ../../include/features.php:320 +msgid "Show friend and connection suggestions" msgstr "" -#: ../../include/channel.php:1255 -msgid "School/education:" +#: ../../include/features.php:328 +msgid "Connection Filtering" msgstr "" -#: ../../include/channel.php:1276 -msgid "Like this thing" +#: ../../include/features.php:329 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../include/connections.php:95 -msgid "New window" +#: ../../include/features.php:341 +msgid "Post/Comment Tools" msgstr "" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/features.php:345 +msgid "Community Tagging" msgstr "" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" +#: ../../include/features.php:346 +msgid "Ability to tag existing posts" msgstr "" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" +#: ../../include/features.php:354 +msgid "Post Categories" +msgstr "" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" +#: ../../include/features.php:355 +msgid "Add categories to your posts" msgstr "" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" +#: ../../include/features.php:363 +msgid "Emoji Reactions" msgstr "" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" +#: ../../include/features.php:364 +msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../include/features.php:373 +msgid "Ability to file posts under folders" msgstr "" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" +#: ../../include/features.php:381 +msgid "Dislike Posts" msgstr "" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" +#: ../../include/features.php:382 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" +#: ../../include/features.php:390 +msgid "Star Posts" msgstr "" -#: ../../include/contact_widgets.php:53 ../../include/widgets.php:346 -#: ../../include/features.php:97 -msgid "Saved Folders" +#: ../../include/features.php:391 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -#: ../../include/widgets.php:349 ../../include/widgets.php:468 -msgid "Everything" +#: ../../include/features.php:399 +msgid "Tag Cloud" msgstr "" -#: ../../include/contact_widgets.php:91 ../../include/taxonomy.php:188 -#: ../../include/taxonomy.php:270 ../../include/widgets.php:46 -#: ../../include/widgets.php:465 -msgid "Categories" +#: ../../include/features.php:400 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" +#: ../../include/features.php:412 +msgid "Premium Channel" +msgstr "" -#: ../../include/contact_widgets.php:127 -msgid "show more" +#: ../../include/features.php:413 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" msgstr "" #: ../../include/auth.php:148 @@ -8829,289 +8796,250 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 +msgid "Image/photo" msgstr "" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 +msgid "Encrypted content" msgstr "" -#: ../../include/conversation.php:243 ../../include/text.php:1059 -#: ../../include/text.php:1064 -msgid "poked" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " msgstr "" -#: ../../include/conversation.php:694 +#: ../../include/bbcode.php:182 #, php-format -msgid "View %s's profile @ %s" +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." msgstr "" -#: ../../include/conversation.php:713 -msgid "Categories:" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/conversation.php:714 -msgid "Filed under:" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" msgstr "" -#: ../../include/conversation.php:741 -msgid "View in context" +#: ../../include/bbcode.php:346 +msgid "spoiler" msgstr "" -#: ../../include/conversation.php:851 -msgid "remove" +#: ../../include/bbcode.php:869 +msgid "$1 wrote:" msgstr "" -#: ../../include/conversation.php:856 -msgid "Delete Selected Items" +#: ../../include/widgets.php:103 +msgid "System" msgstr "" -#: ../../include/conversation.php:949 -msgid "View Source" +#: ../../include/widgets.php:106 +msgid "New App" msgstr "" -#: ../../include/conversation.php:950 -msgid "Follow Thread" +#: ../../include/widgets.php:154 +msgid "Suggestions" msgstr "" -#: ../../include/conversation.php:951 -msgid "Unfollow Thread" +#: ../../include/widgets.php:155 +msgid "See more..." msgstr "" -#: ../../include/conversation.php:956 -msgid "Activity/Posts" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/conversation.php:958 -msgid "Edit Connection" +#: ../../include/widgets.php:181 +msgid "Add New Connection" msgstr "" -#: ../../include/conversation.php:959 -msgid "Message" +#: ../../include/widgets.php:182 +msgid "Enter channel address" msgstr "" -#: ../../include/conversation.php:1076 -#, php-format -msgid "%s likes this." +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" msgstr "" -#: ../../include/conversation.php:1076 -#, php-format -msgid "%s doesn't like this." +#: ../../include/widgets.php:199 +msgid "Notes" msgstr "" -#: ../../include/conversation.php:1080 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1082 -#, 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:1088 -msgid "and" +#: ../../include/widgets.php:275 +msgid "Remove term" msgstr "" -#: ../../include/conversation.php:1091 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1092 -#, php-format -msgid "%s like this." +#: ../../include/widgets.php:390 +msgid "Archives" msgstr "" -#: ../../include/conversation.php:1092 -#, php-format -msgid "%s don't like this." +#: ../../include/widgets.php:552 +msgid "Refresh" msgstr "" -#: ../../include/conversation.php:1135 -msgid "Set your location" +#: ../../include/widgets.php:592 +msgid "Account settings" msgstr "" -#: ../../include/conversation.php:1136 -msgid "Clear browser location" +#: ../../include/widgets.php:598 +msgid "Channel settings" msgstr "" -#: ../../include/conversation.php:1184 -msgid "Tag term:" +#: ../../include/widgets.php:607 +msgid "Additional features" msgstr "" -#: ../../include/conversation.php:1185 -msgid "Where are you right now?" +#: ../../include/widgets.php:614 +msgid "Feature/Addon settings" msgstr "" -#: ../../include/conversation.php:1194 -msgid "Comments enabled" +#: ../../include/widgets.php:620 +msgid "Display settings" msgstr "" -#: ../../include/conversation.php:1195 -msgid "Comments disabled" +#: ../../include/widgets.php:627 +msgid "Manage locations" msgstr "" -#: ../../include/conversation.php:1233 -msgid "Page link name" +#: ../../include/widgets.php:634 +msgid "Export channel" msgstr "" -#: ../../include/conversation.php:1236 -msgid "Post as" +#: ../../include/widgets.php:640 +msgid "Connected apps" msgstr "" -#: ../../include/conversation.php:1250 -msgid "Toggle voting" +#: ../../include/widgets.php:664 +msgid "Premium Channel Settings" msgstr "" -#: ../../include/conversation.php:1253 -msgid "Disable comments" +#: ../../include/widgets.php:693 +msgid "Private Mail Menu" msgstr "" -#: ../../include/conversation.php:1254 -msgid "Toggle comments" +#: ../../include/widgets.php:695 +msgid "Combined View" msgstr "" -#: ../../include/conversation.php:1262 -msgid "Categories (optional, comma-separated list)" +#: ../../include/widgets.php:727 ../../include/widgets.php:739 +msgid "Conversations" msgstr "" -#: ../../include/conversation.php:1285 -msgid "Other networks and post services" +#: ../../include/widgets.php:731 +msgid "Received Messages" msgstr "" -#: ../../include/conversation.php:1291 -msgid "Set publish date" +#: ../../include/widgets.php:735 +msgid "Sent Messages" msgstr "" -#: ../../include/conversation.php:1540 -msgid "Discover" +#: ../../include/widgets.php:749 +msgid "No messages." msgstr "" -#: ../../include/conversation.php:1543 -msgid "Imported public streams" +#: ../../include/widgets.php:767 +msgid "Delete conversation" msgstr "" -#: ../../include/conversation.php:1548 -msgid "Commented Order" +#: ../../include/widgets.php:793 +msgid "Events Tools" msgstr "" -#: ../../include/conversation.php:1551 -msgid "Sort by Comment Date" +#: ../../include/widgets.php:794 +msgid "Export Calendar" msgstr "" -#: ../../include/conversation.php:1555 -msgid "Posted Order" +#: ../../include/widgets.php:795 +msgid "Import Calendar" msgstr "" -#: ../../include/conversation.php:1558 -msgid "Sort by Post Date" +#: ../../include/widgets.php:883 ../../include/conversation.php:1701 +#: ../../include/conversation.php:1704 +msgid "Chatrooms" msgstr "" -#: ../../include/conversation.php:1566 -msgid "Posts that mention or involve you" +#: ../../include/widgets.php:887 +msgid "Overview" msgstr "" -#: ../../include/conversation.php:1575 -msgid "Activity Stream - by date" +#: ../../include/widgets.php:894 +msgid "Chat Members" msgstr "" -#: ../../include/conversation.php:1581 -msgid "Starred" +#: ../../include/widgets.php:916 +msgid "Wiki List" msgstr "" -#: ../../include/conversation.php:1584 -msgid "Favourite Posts" +#: ../../include/widgets.php:954 +msgid "Wiki Pages" msgstr "" -#: ../../include/conversation.php:1591 -msgid "Spam" +#: ../../include/widgets.php:989 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/conversation.php:1594 -msgid "Posts flagged as SPAM" +#: ../../include/widgets.php:1020 +msgid "Suggested Chatrooms" msgstr "" -#: ../../include/conversation.php:1653 -msgid "Status Messages and Posts" +#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 +msgid "photo/image" msgstr "" -#: ../../include/conversation.php:1662 -msgid "About" +#: ../../include/widgets.php:1221 +msgid "Click to show more" msgstr "" -#: ../../include/conversation.php:1665 -msgid "Profile Details" +#: ../../include/widgets.php:1372 +msgid "Rating Tools" msgstr "" -#: ../../include/conversation.php:1681 -msgid "Files and Storage" +#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 +msgid "Rate Me" msgstr "" -#: ../../include/conversation.php:1701 ../../include/conversation.php:1704 -#: ../../include/widgets.php:883 -msgid "Chatrooms" +#: ../../include/widgets.php:1381 +msgid "View Ratings" msgstr "" -#: ../../include/conversation.php:1717 -msgid "Saved Bookmarks" +#: ../../include/widgets.php:1465 +msgid "Forums" msgstr "" -#: ../../include/conversation.php:1727 -msgid "Manage Webpages" +#: ../../include/widgets.php:1494 +msgid "Tasks" msgstr "" -#: ../../include/conversation.php:1792 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1795 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" +#: ../../include/widgets.php:1505 +msgid "Documentation" +msgstr "" -#: ../../include/conversation.php:1798 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" +#: ../../include/widgets.php:1557 ../../include/widgets.php:1595 +msgid "Member registrations waiting for confirmation" +msgstr "" -#: ../../include/conversation.php:1801 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" +#: ../../include/widgets.php:1563 +msgid "Inspect queue" +msgstr "" -#: ../../include/conversation.php:1804 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" +#: ../../include/widgets.php:1565 +msgid "DB updates" +msgstr "" -#: ../../include/conversation.php:1807 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" +#: ../../include/widgets.php:1591 +msgid "Plugin Features" +msgstr "" #: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 msgid "Tags" @@ -9145,820 +9073,894 @@ msgstr "" msgid "dislikes" msgstr "" -#: ../../include/text.php:450 -msgid "prev" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/text.php:452 -msgid "first" +#: ../../include/channel.php:67 +msgid "Empty name" msgstr "" -#: ../../include/text.php:481 -msgid "last" +#: ../../include/channel.php:70 +msgid "Name too long" msgstr "" -#: ../../include/text.php:484 -msgid "next" +#: ../../include/channel.php:181 +msgid "No account identifier" msgstr "" -#: ../../include/text.php:494 -msgid "older" +#: ../../include/channel.php:193 +msgid "Nickname is required." msgstr "" -#: ../../include/text.php:496 -msgid "newer" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/text.php:889 -msgid "No connections" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/text.php:914 -#, php-format -msgid "View all %s connections" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/text.php:1059 ../../include/text.php:1064 -msgid "poke" +#: ../../include/channel.php:341 +msgid "Default Profile" msgstr "" -#: ../../include/text.php:1065 -msgid "ping" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." msgstr "" -#: ../../include/text.php:1065 -msgid "pinged" +#: ../../include/channel.php:960 +msgid "Create New Profile" msgstr "" -#: ../../include/text.php:1066 -msgid "prod" +#: ../../include/channel.php:980 +msgid "Visible to everybody" msgstr "" -#: ../../include/text.php:1066 -msgid "prodded" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" msgstr "" -#: ../../include/text.php:1067 -msgid "slap" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" msgstr "" -#: ../../include/text.php:1067 -msgid "slapped" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "" + +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "" + +#: ../../include/channel.php:1171 +msgid "Like this channel" msgstr "" -#: ../../include/text.php:1068 -msgid "finger" +#: ../../include/channel.php:1195 +msgid "j F, Y" msgstr "" -#: ../../include/text.php:1068 -msgid "fingered" +#: ../../include/channel.php:1196 +msgid "j F" msgstr "" -#: ../../include/text.php:1069 -msgid "rebuff" +#: ../../include/channel.php:1203 +msgid "Birthday:" msgstr "" -#: ../../include/text.php:1069 -msgid "rebuffed" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: ../../include/text.php:1081 -msgid "happy" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" msgstr "" -#: ../../include/text.php:1082 -msgid "sad" +#: ../../include/channel.php:1225 +msgid "Tags:" msgstr "" -#: ../../include/text.php:1083 -msgid "mellow" +#: ../../include/channel.php:1227 +msgid "Political Views:" msgstr "" -#: ../../include/text.php:1084 -msgid "tired" +#: ../../include/channel.php:1229 +msgid "Religion:" msgstr "" -#: ../../include/text.php:1085 -msgid "perky" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/text.php:1086 -msgid "angry" +#: ../../include/channel.php:1235 +msgid "Likes:" msgstr "" -#: ../../include/text.php:1087 -msgid "stupefied" +#: ../../include/channel.php:1237 +msgid "Dislikes:" msgstr "" -#: ../../include/text.php:1088 -msgid "puzzled" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/text.php:1089 -msgid "interested" +#: ../../include/channel.php:1241 +msgid "My other channels:" msgstr "" -#: ../../include/text.php:1090 -msgid "bitter" +#: ../../include/channel.php:1243 +msgid "Musical interests:" msgstr "" -#: ../../include/text.php:1091 -msgid "cheerful" +#: ../../include/channel.php:1245 +msgid "Books, literature:" msgstr "" -#: ../../include/text.php:1092 -msgid "alive" +#: ../../include/channel.php:1247 +msgid "Television:" msgstr "" -#: ../../include/text.php:1093 -msgid "annoyed" +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/text.php:1094 -msgid "anxious" +#: ../../include/channel.php:1251 +msgid "Love/Romance:" msgstr "" -#: ../../include/text.php:1095 -msgid "cranky" +#: ../../include/channel.php:1253 +msgid "Work/employment:" msgstr "" -#: ../../include/text.php:1096 -msgid "disturbed" +#: ../../include/channel.php:1255 +msgid "School/education:" msgstr "" -#: ../../include/text.php:1097 -msgid "frustrated" +#: ../../include/channel.php:1276 +msgid "Like this thing" msgstr "" -#: ../../include/text.php:1098 -msgid "depressed" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/text.php:1099 -msgid "motivated" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/text.php:1100 -msgid "relaxed" +#: ../../include/conversation.php:243 ../../include/text.php:1059 +#: ../../include/text.php:1064 +msgid "poked" msgstr "" -#: ../../include/text.php:1101 -msgid "surprised" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/text.php:1289 -msgid "May" +#: ../../include/conversation.php:713 +msgid "Categories:" msgstr "" -#: ../../include/text.php:1366 ../../include/text.php:1370 -msgid "Unknown Attachment" +#: ../../include/conversation.php:714 +msgid "Filed under:" msgstr "" -#: ../../include/text.php:1372 -msgid "unknown" +#: ../../include/conversation.php:741 +msgid "View in context" msgstr "" -#: ../../include/text.php:1408 -msgid "remove category" +#: ../../include/conversation.php:851 +msgid "remove" msgstr "" -#: ../../include/text.php:1485 -msgid "remove from file" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" msgstr "" -#: ../../include/text.php:1784 ../../include/text.php:1855 -msgid "default" +#: ../../include/conversation.php:949 +msgid "View Source" msgstr "" -#: ../../include/text.php:1792 -msgid "Page layout" +#: ../../include/conversation.php:950 +msgid "Follow Thread" msgstr "" -#: ../../include/text.php:1792 -msgid "You can create your own with the layouts tool" +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" msgstr "" -#: ../../include/text.php:1834 -msgid "Page content type" +#: ../../include/conversation.php:956 +msgid "Activity/Posts" msgstr "" -#: ../../include/text.php:1867 -msgid "Select an alternate language" +#: ../../include/conversation.php:958 +msgid "Edit Connection" msgstr "" -#: ../../include/text.php:2004 -msgid "activity" +#: ../../include/conversation.php:959 +msgid "Message" msgstr "" -#: ../../include/text.php:2305 -msgid "Design Tools" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s likes this." msgstr "" -#: ../../include/text.php:2311 -msgid "Pages" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: ../../include/text.php:2333 -msgid "Import website..." -msgstr "" +#: ../../include/conversation.php:1080 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:2334 -msgid "Select folder to import" +#: ../../include/conversation.php:1082 +#, 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:1088 +msgid "and" msgstr "" -#: ../../include/text.php:2335 -msgid "Import from a zipped folder:" +#: ../../include/conversation.php:1091 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s like this." msgstr "" -#: ../../include/text.php:2336 -msgid "Import from cloud files:" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s don't like this." msgstr "" -#: ../../include/text.php:2337 -msgid "/cloud/channel/path/to/folder" +#: ../../include/conversation.php:1135 +msgid "Set your location" msgstr "" -#: ../../include/text.php:2338 -msgid "Enter path to website files" +#: ../../include/conversation.php:1136 +msgid "Clear browser location" msgstr "" -#: ../../include/text.php:2339 -msgid "Select folder" +#: ../../include/conversation.php:1184 +msgid "Tag term:" msgstr "" -#: ../../include/text.php:2340 -msgid "Export website..." +#: ../../include/conversation.php:1185 +msgid "Where are you right now?" msgstr "" -#: ../../include/text.php:2341 -msgid "Export to a zip file" +#: ../../include/conversation.php:1194 +msgid "Comments enabled" msgstr "" -#: ../../include/text.php:2342 -msgid "website.zip" +#: ../../include/conversation.php:1195 +msgid "Comments disabled" msgstr "" -#: ../../include/text.php:2343 -msgid "Enter a name for the zip file." +#: ../../include/conversation.php:1233 +msgid "Page link name" msgstr "" -#: ../../include/text.php:2344 -msgid "Export to cloud files" +#: ../../include/conversation.php:1236 +msgid "Post as" msgstr "" -#: ../../include/text.php:2345 -msgid "/path/to/export/folder" +#: ../../include/conversation.php:1250 +msgid "Toggle voting" msgstr "" -#: ../../include/text.php:2346 -msgid "Enter a path to a cloud files destination." +#: ../../include/conversation.php:1253 +msgid "Disable comments" msgstr "" -#: ../../include/text.php:2347 -msgid "Specify folder" +#: ../../include/conversation.php:1254 +msgid "Toggle comments" msgstr "" -#: ../../include/api.php:1330 -msgid "Public Timeline" +#: ../../include/conversation.php:1262 +msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" +#: ../../include/conversation.php:1285 +msgid "Other networks and post services" msgstr "" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" +#: ../../include/conversation.php:1291 +msgid "Set publish date" msgstr "" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" +#: ../../include/conversation.php:1540 +msgid "Discover" msgstr "" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" +#: ../../include/conversation.php:1543 +msgid "Imported public streams" msgstr "" -#: ../../include/message.php:20 -msgid "No recipient provided." +#: ../../include/conversation.php:1548 +msgid "Commented Order" msgstr "" -#: ../../include/message.php:25 -msgid "[no subject]" +#: ../../include/conversation.php:1551 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/message.php:45 -msgid "Unable to determine sender." +#: ../../include/conversation.php:1555 +msgid "Posted Order" msgstr "" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." +#: ../../include/conversation.php:1558 +msgid "Sort by Post Date" msgstr "" -#: ../../include/widgets.php:103 -msgid "System" +#: ../../include/conversation.php:1566 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/widgets.php:106 -msgid "New App" +#: ../../include/conversation.php:1575 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/widgets.php:154 -msgid "Suggestions" +#: ../../include/conversation.php:1581 +msgid "Starred" msgstr "" -#: ../../include/widgets.php:155 -msgid "See more..." +#: ../../include/conversation.php:1584 +msgid "Favourite Posts" msgstr "" -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +#: ../../include/conversation.php:1591 +msgid "Spam" msgstr "" -#: ../../include/widgets.php:181 -msgid "Add New Connection" +#: ../../include/conversation.php:1594 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/widgets.php:182 -msgid "Enter channel address" +#: ../../include/conversation.php:1653 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" +#: ../../include/conversation.php:1662 +msgid "About" msgstr "" -#: ../../include/widgets.php:199 -msgid "Notes" +#: ../../include/conversation.php:1665 +msgid "Profile Details" msgstr "" -#: ../../include/widgets.php:275 -msgid "Remove term" +#: ../../include/conversation.php:1681 +msgid "Files and Storage" msgstr "" -#: ../../include/widgets.php:283 ../../include/features.php:84 -msgid "Saved Searches" +#: ../../include/conversation.php:1717 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/widgets.php:390 -msgid "Archives" +#: ../../include/conversation.php:1727 +msgid "Manage Webpages" msgstr "" -#: ../../include/widgets.php:552 -msgid "Refresh" +#: ../../include/conversation.php:1792 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1795 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1798 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1801 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1804 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1807 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" msgstr "" -#: ../../include/widgets.php:592 -msgid "Account settings" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" msgstr "" -#: ../../include/widgets.php:598 -msgid "Channel settings" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" msgstr "" -#: ../../include/widgets.php:607 -msgid "Additional features" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" msgstr "" -#: ../../include/widgets.php:614 -msgid "Feature/Addon settings" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/widgets.php:620 -msgid "Display settings" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/widgets.php:627 -msgid "Manage locations" +#: ../../include/import.php:1444 +msgid "Unable to import element \"" msgstr "" -#: ../../include/widgets.php:634 -msgid "Export channel" +#: ../../include/connections.php:95 +msgid "New window" msgstr "" -#: ../../include/widgets.php:640 -msgid "Connected apps" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/widgets.php:664 -msgid "Premium Channel Settings" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../include/widgets.php:693 -msgid "Private Mail Menu" +#: ../../include/text.php:450 +msgid "prev" msgstr "" -#: ../../include/widgets.php:695 -msgid "Combined View" +#: ../../include/text.php:452 +msgid "first" msgstr "" -#: ../../include/widgets.php:727 ../../include/widgets.php:739 -msgid "Conversations" +#: ../../include/text.php:481 +msgid "last" msgstr "" -#: ../../include/widgets.php:731 -msgid "Received Messages" +#: ../../include/text.php:484 +msgid "next" msgstr "" -#: ../../include/widgets.php:735 -msgid "Sent Messages" +#: ../../include/text.php:494 +msgid "older" msgstr "" -#: ../../include/widgets.php:749 -msgid "No messages." +#: ../../include/text.php:496 +msgid "newer" msgstr "" -#: ../../include/widgets.php:767 -msgid "Delete conversation" +#: ../../include/text.php:889 +msgid "No connections" msgstr "" -#: ../../include/widgets.php:793 -msgid "Events Tools" +#: ../../include/text.php:914 +#, php-format +msgid "View all %s connections" msgstr "" -#: ../../include/widgets.php:794 -msgid "Export Calendar" +#: ../../include/text.php:1059 ../../include/text.php:1064 +msgid "poke" msgstr "" -#: ../../include/widgets.php:795 -msgid "Import Calendar" +#: ../../include/text.php:1065 +msgid "ping" msgstr "" -#: ../../include/widgets.php:887 -msgid "Overview" +#: ../../include/text.php:1065 +msgid "pinged" msgstr "" -#: ../../include/widgets.php:894 -msgid "Chat Members" +#: ../../include/text.php:1066 +msgid "prod" msgstr "" -#: ../../include/widgets.php:916 -msgid "Wiki List" +#: ../../include/text.php:1066 +msgid "prodded" msgstr "" -#: ../../include/widgets.php:954 -msgid "Wiki Pages" +#: ../../include/text.php:1067 +msgid "slap" msgstr "" -#: ../../include/widgets.php:989 -msgid "Bookmarked Chatrooms" +#: ../../include/text.php:1067 +msgid "slapped" msgstr "" -#: ../../include/widgets.php:1020 -msgid "Suggested Chatrooms" +#: ../../include/text.php:1068 +msgid "finger" msgstr "" -#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 -msgid "photo/image" +#: ../../include/text.php:1068 +msgid "fingered" msgstr "" -#: ../../include/widgets.php:1221 -msgid "Click to show more" +#: ../../include/text.php:1069 +msgid "rebuff" msgstr "" -#: ../../include/widgets.php:1372 -msgid "Rating Tools" +#: ../../include/text.php:1069 +msgid "rebuffed" msgstr "" -#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 -msgid "Rate Me" +#: ../../include/text.php:1081 +msgid "happy" msgstr "" -#: ../../include/widgets.php:1381 -msgid "View Ratings" +#: ../../include/text.php:1082 +msgid "sad" msgstr "" -#: ../../include/widgets.php:1465 -msgid "Forums" +#: ../../include/text.php:1083 +msgid "mellow" msgstr "" -#: ../../include/widgets.php:1494 -msgid "Tasks" +#: ../../include/text.php:1084 +msgid "tired" msgstr "" -#: ../../include/widgets.php:1505 -msgid "Documentation" +#: ../../include/text.php:1085 +msgid "perky" msgstr "" -#: ../../include/widgets.php:1557 ../../include/widgets.php:1595 -msgid "Member registrations waiting for confirmation" +#: ../../include/text.php:1086 +msgid "angry" msgstr "" -#: ../../include/widgets.php:1563 -msgid "Inspect queue" +#: ../../include/text.php:1087 +msgid "stupefied" msgstr "" -#: ../../include/widgets.php:1565 -msgid "DB updates" +#: ../../include/text.php:1088 +msgid "puzzled" msgstr "" -#: ../../include/widgets.php:1591 -msgid "Plugin Features" +#: ../../include/text.php:1089 +msgid "interested" msgstr "" -#: ../../include/zot.php:700 -msgid "Invalid data packet" +#: ../../include/text.php:1090 +msgid "bitter" msgstr "" -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" +#: ../../include/text.php:1091 +msgid "cheerful" msgstr "" -#: ../../include/zot.php:2329 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/text.php:1092 +msgid "alive" msgstr "" -#: ../../include/zot.php:3711 -msgid "invalid target signature" +#: ../../include/text.php:1093 +msgid "annoyed" msgstr "" -#: ../../include/features.php:50 -msgid "General Features" +#: ../../include/text.php:1094 +msgid "anxious" msgstr "" -#: ../../include/features.php:52 -msgid "Content Expiration" +#: ../../include/text.php:1095 +msgid "cranky" msgstr "" -#: ../../include/features.php:52 -msgid "Remove posts/comments and/or private messages at a future time" +#: ../../include/text.php:1096 +msgid "disturbed" msgstr "" -#: ../../include/features.php:53 -msgid "Multiple Profiles" +#: ../../include/text.php:1097 +msgid "frustrated" msgstr "" -#: ../../include/features.php:53 -msgid "Ability to create multiple profiles" +#: ../../include/text.php:1098 +msgid "depressed" msgstr "" -#: ../../include/features.php:54 -msgid "Advanced Profiles" +#: ../../include/text.php:1099 +msgid "motivated" msgstr "" -#: ../../include/features.php:54 -msgid "Additional profile sections and selections" +#: ../../include/text.php:1100 +msgid "relaxed" msgstr "" -#: ../../include/features.php:55 -msgid "Profile Import/Export" +#: ../../include/text.php:1101 +msgid "surprised" msgstr "" -#: ../../include/features.php:55 -msgid "Save and load profile details across sites/channels" +#: ../../include/text.php:1289 +msgid "May" msgstr "" -#: ../../include/features.php:56 -msgid "Web Pages" +#: ../../include/text.php:1366 ../../include/text.php:1370 +msgid "Unknown Attachment" msgstr "" -#: ../../include/features.php:56 -msgid "Provide managed web pages on your channel" +#: ../../include/text.php:1372 +msgid "unknown" msgstr "" -#: ../../include/features.php:57 -msgid "Provide a wiki for your channel" +#: ../../include/text.php:1408 +msgid "remove category" msgstr "" -#: ../../include/features.php:59 -msgid "Private Notes" +#: ../../include/text.php:1485 +msgid "remove from file" msgstr "" -#: ../../include/features.php:59 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" +#: ../../include/text.php:1784 ../../include/text.php:1855 +msgid "default" msgstr "" -#: ../../include/features.php:60 -msgid "Navigation Channel Select" +#: ../../include/text.php:1792 +msgid "Page layout" msgstr "" -#: ../../include/features.php:60 -msgid "Change channels directly from within the navigation dropdown menu" +#: ../../include/text.php:1792 +msgid "You can create your own with the layouts tool" msgstr "" -#: ../../include/features.php:61 -msgid "Photo Location" +#: ../../include/text.php:1834 +msgid "Page content type" msgstr "" -#: ../../include/features.php:61 -msgid "If location data is available on uploaded photos, link this to a map." +#: ../../include/text.php:1867 +msgid "Select an alternate language" msgstr "" -#: ../../include/features.php:62 -msgid "Access Controlled Chatrooms" +#: ../../include/text.php:2004 +msgid "activity" msgstr "" -#: ../../include/features.php:62 -msgid "Provide chatrooms and chat services with access control." +#: ../../include/text.php:2305 +msgid "Design Tools" msgstr "" -#: ../../include/features.php:63 -msgid "Smart Birthdays" +#: ../../include/text.php:2311 +msgid "Pages" msgstr "" -#: ../../include/features.php:63 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." +#: ../../include/text.php:2333 +msgid "Import website..." msgstr "" -#: ../../include/features.php:68 -msgid "Post Composition Features" +#: ../../include/text.php:2334 +msgid "Select folder to import" msgstr "" -#: ../../include/features.php:69 -msgid "Large Photos" +#: ../../include/text.php:2335 +msgid "Import from a zipped folder:" msgstr "" -#: ../../include/features.php:69 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" +#: ../../include/text.php:2336 +msgid "Import from cloud files:" msgstr "" -#: ../../include/features.php:70 -msgid "Automatically import channel content from other channels or feeds" +#: ../../include/text.php:2337 +msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../include/features.php:71 -msgid "Even More Encryption" +#: ../../include/text.php:2338 +msgid "Enter path to website files" msgstr "" -#: ../../include/features.php:71 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" +#: ../../include/text.php:2339 +msgid "Select folder" msgstr "" -#: ../../include/features.php:72 -msgid "Enable Voting Tools" +#: ../../include/text.php:2340 +msgid "Export website..." msgstr "" -#: ../../include/features.php:72 -msgid "Provide a class of post which others can vote on" +#: ../../include/text.php:2341 +msgid "Export to a zip file" msgstr "" -#: ../../include/features.php:73 -msgid "Disable Comments" +#: ../../include/text.php:2342 +msgid "website.zip" msgstr "" -#: ../../include/features.php:73 -msgid "Provide the option to disable comments for a post" +#: ../../include/text.php:2343 +msgid "Enter a name for the zip file." msgstr "" -#: ../../include/features.php:74 -msgid "Delayed Posting" +#: ../../include/text.php:2344 +msgid "Export to cloud files" msgstr "" -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" +#: ../../include/text.php:2345 +msgid "/path/to/export/folder" msgstr "" -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" +#: ../../include/text.php:2346 +msgid "Enter a path to a cloud files destination." msgstr "" -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." +#: ../../include/text.php:2347 +msgid "Specify folder" msgstr "" -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" +#: ../../include/zot.php:700 +msgid "Invalid data packet" msgstr "" -#: ../../include/features.php:82 -msgid "Search by Date" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" +#: ../../include/zot.php:3710 +msgid "invalid target signature" msgstr "" -#: ../../include/features.php:84 -msgid "Save search terms for re-use" +#: ../../include/network.php:704 +msgid "view full size" msgstr "" -#: ../../include/features.php:85 -msgid "Network Personal Tab" +#: ../../include/network.php:1937 ../../include/account.php:326 +#: ../../include/account.php:353 ../../include/account.php:413 +msgid "Administrator" msgstr "" -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" +#: ../../include/network.php:1951 +msgid "No Subject" msgstr "" -#: ../../include/features.php:86 -msgid "Network New Tab" +#: ../../include/network.php:2205 ../../include/network.php:2206 +msgid "Friendica" msgstr "" -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" +#: ../../include/network.php:2207 +msgid "OStatus" msgstr "" -#: ../../include/features.php:87 -msgid "Affinity Tool" +#: ../../include/network.php:2208 +msgid "GNU-Social" msgstr "" -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" +#: ../../include/network.php:2209 +msgid "RSS/Atom" msgstr "" -#: ../../include/features.php:88 -msgid "Show friend and connection suggestions" +#: ../../include/network.php:2211 +msgid "Diaspora" msgstr "" -#: ../../include/features.php:93 -msgid "Post/Comment Tools" +#: ../../include/network.php:2212 +msgid "Facebook" msgstr "" -#: ../../include/features.php:94 -msgid "Community Tagging" +#: ../../include/network.php:2213 +msgid "Zot" msgstr "" -#: ../../include/features.php:94 -msgid "Ability to tag existing posts" +#: ../../include/network.php:2214 +msgid "LinkedIn" msgstr "" -#: ../../include/features.php:95 -msgid "Post Categories" +#: ../../include/network.php:2215 +msgid "XMPP/IM" msgstr "" -#: ../../include/features.php:95 -msgid "Add categories to your posts" +#: ../../include/network.php:2216 +msgid "MySpace" msgstr "" -#: ../../include/features.php:96 -msgid "Emoji Reactions" +#: ../../include/help.php:25 +msgid "Help:" msgstr "" -#: ../../include/features.php:96 -msgid "Add emoji reaction ability to posts" +#: ../../include/account.php:35 +msgid "Not a valid email address" msgstr "" -#: ../../include/features.php:97 -msgid "Ability to file posts under folders" +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/features.php:98 -msgid "Dislike Posts" +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/features.php:98 -msgid "Ability to dislike posts/comments" +#: ../../include/account.php:75 +msgid "An invitation is required." msgstr "" -#: ../../include/features.php:99 -msgid "Star Posts" +#: ../../include/account.php:79 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/features.php:99 -msgid "Ability to mark special posts with a star indicator" +#: ../../include/account.php:130 +msgid "Please enter the required information." msgstr "" -#: ../../include/features.php:100 -msgid "Tag Cloud" +#: ../../include/account.php:198 +msgid "Failed to store account information." msgstr "" -#: ../../include/features.php:100 -msgid "Provide a personal tag cloud on your channel page" +#: ../../include/account.php:258 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/features.php:109 -msgid "Connection Filtering" +#: ../../include/account.php:324 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/features.php:110 -msgid "Filter incoming posts from connections based on keywords/content" +#: ../../include/account.php:348 +msgid "your registration password" msgstr "" -#: ../../include/features.php:120 -msgid "Premium Channel" +#: ../../include/account.php:351 ../../include/account.php:411 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/features.php:121 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" +#: ../../include/account.php:423 +msgid "Account approved." msgstr "" -#: ../../include/features.php:128 -msgid "Advanced Directory Search" +#: ../../include/account.php:463 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/features.php:129 -msgid "Allows creation of complex directory search queries" +#: ../../include/account.php:748 ../../include/account.php:750 +msgid "Click here to upgrade." msgstr "" -#: ../../include/features.php:135 -msgid "Advanced Theme and Layout Settings" +#: ../../include/account.php:756 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/features.php:136 -msgid "Allows fine tuning of themes and page layouts" +#: ../../include/account.php:761 +msgid "This action is not available under your subscription plan." msgstr "" #: ../../view/theme/redbasic/php/config.php:9 -- cgit v1.2.3 From ce41710a7c41658cdb118c5d3334e3b12edc0870 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 23 Sep 2016 18:52:14 -0700 Subject: issue #531 - util/config and postgres --- util/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/config b/util/config index 38d2fed4f..cfe4500b5 100755 --- a/util/config +++ b/util/config @@ -71,7 +71,7 @@ if($argc == 2) { } if($argc == 1) { - $r = q("select * from config where 1"); + $r = q("select * from config where true"); if($r) { foreach($r as $rr) { echo "config[{$rr['cat']}][{$rr['k']}] = " . printable_config($rr['v']) . "\n"; -- cgit v1.2.3 From 46504581579c5ad06ae4d4e5962fbc4130b8b6e2 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 24 Sep 2016 02:30:12 -0700 Subject: add server_roles document to aid people in making informed choices --- doc/server_roles.bb | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 doc/server_roles.bb diff --git a/doc/server_roles.bb b/doc/server_roles.bb new file mode 100644 index 000000000..ef6ec28ae --- /dev/null +++ b/doc/server_roles.bb @@ -0,0 +1,27 @@ +[h2]Server Roles[/h2] + +$Projectname can be configured in many different ways. One of the configurations available at installation is to select a 'server role'. There are currently three server roles. We highly recommend that you use 'standard' unless you have special needs. + + +[h3]Basic[/h3] + +The 'basic' server role is designed to be relatively simple, and it doesn't present options or complicated features. The hub admin may configure additional features at a site level. This role is designed for simple social networking and social network federation. Many features which do not federate easily have been removed, including (and this is somewhat important) "nomadic identity". You may move a channel to or from a basic server, but you may not clone it. Once moved, it becomes read-only on the origination site. No updates of any kind will be provided. It is recommended that after the move, the original channel be deleted - as it is no longer useable. The data remains only in case there are issues making a copy of the data. + +This role is supported by the hubzilla community. + +[h3]Standard[/h3] + + +The 'standard' server role is recommended for most sites. All features of the software are available to everybody unless locked by the hub administrator. Some features will not federate easily with other networks, so there is often an increased support burden explaining why sharing events with Diaspora (for instance) presents a different experience on that network. Additionally any member can enable "advanced" or "expert" features, and these may be beyond their technical skill level. This may also result in an increased support burden. + +This role is supported by the hubzilla community. + +[h3]Pro[/h3] + +The 'pro' server role is primarily designed for communities which want to present a uniform experience and be relieved of many federation support issues. In this role there is [b]no federation with other networks[/b]. Additional features [b]may[/b] be provided, such as channel ratings, premium channels, and e-commerce. + +By default a channel may set a "techlevel" appropriate to their technical skill. Higher levels provide more features. Everybody starts with techlevel 0 (similar to the 'basic' role) where all complicated features are hidden from view. Increasing the techlevel provides more advanced or complex features. + +The hub admin may also lock individual channels or their entire site at a defined techlevel which provides an installation with a selection of advanced features consistent with the perceived technical skills of the members. For instance, a community for horse racing might have a different techlevel than a community for Linux kernel developers. + +This role is not supported by the hubzilla community. \ No newline at end of file -- cgit v1.2.3 From dca4db9d4dffb7840885abf20d50154ed72462a0 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 24 Sep 2016 05:15:06 -0700 Subject: convert oembed tools to use json arrays rather than json objects --- Zotlabs/Module/Oembed.php | 2 +- include/bbcode.php | 2 +- include/oembed.php | 63 +++++++++++++++++++++++++---------------------- 3 files changed, 35 insertions(+), 32 deletions(-) diff --git a/Zotlabs/Module/Oembed.php b/Zotlabs/Module/Oembed.php index 6f61ab4d8..9394e5942 100644 --- a/Zotlabs/Module/Oembed.php +++ b/Zotlabs/Module/Oembed.php @@ -25,7 +25,7 @@ class Oembed extends \Zotlabs\Web\Controller { echo ""; $src = base64url_decode(argv(1)); $j = oembed_fetch_url($src); - echo $j->html; + echo $j['html']; // logger('mod-oembed ' . $h, LOGGER_ALL); echo ""; } diff --git a/include/bbcode.php b/include/bbcode.php index 70c75e5c4..45dd5ef24 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -15,7 +15,7 @@ function tryoembed($match) { $o = oembed_fetch_url($url); - if ($o->type == 'error') + if ($o['type'] == 'error') return $match[0]; $html = oembed_format_object($o); diff --git a/include/oembed.php b/include/oembed.php index 085637a00..be2501229 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -105,7 +105,7 @@ function oembed_action($embedurl) { function oembed_process($url) { $j = oembed_fetch_url($url); logger('oembed_process: ' . print_r($j,true)); - if($j && $j->type !== 'error') + if($j && $j['type'] !== 'error') return '[embed]' . $url . '[/embed]'; return false; } @@ -215,26 +215,29 @@ function oembed_fetch_url($embedurl){ } - $j = json_decode($txt); + $j = json_decode($txt,true); + + if(! $j) + $j = []; if($action === 'filter') { - if($j->html) { - $orig = $j->html; + if($j['html']) { + $orig = $j['html']; $allow_position = (($zrl) ? true : false); - $j->html = purify_html($j->html,$allow_position); - if($j->html != $orig) { - logger('oembed html was purified. original: ' . $orig . ' purified: ' . $j->html, LOGGER_DEBUG, LOG_INFO); + $j['html'] = purify_html($j['html'],$allow_position); + if($j['html'] != $orig) { + logger('oembed html was purified. original: ' . $orig . ' purified: ' . $j['html'], LOGGER_DEBUG, LOG_INFO); } $orig_len = mb_strlen(preg_replace('/\s+/','',$orig)); - $new_len = mb_strlen(preg_replace('/\s+/','',$j->html)); + $new_len = mb_strlen(preg_replace('/\s+/','',$j['html'])); if(stripos($orig,'type = 'error'; + $j['type'] = 'error'; elseif($orig_len) { $ratio = $new_len / $orig_len; if($ratio < 0.5) { - $j->type = 'error'; + $j['type'] = 'error'; logger('oembed html truncated: ' . $ratio, LOGGER_DEBUG, LOG_INFO); } } @@ -242,7 +245,7 @@ function oembed_fetch_url($embedurl){ } } - $j->embedurl = $embedurl; + $j['embedurl'] = $embedurl; // logger('fetch return: ' . print_r($j,true)); @@ -253,27 +256,27 @@ function oembed_fetch_url($embedurl){ function oembed_format_object($j){ - $embedurl = $j->embedurl; + $embedurl = $j['embedurl']; // logger('format: ' . print_r($j,true)); - $jhtml = oembed_iframe($j->embedurl,(isset($j->width) ? $j->width : null), (isset($j->height) ? $j->height : null)); + $jhtml = oembed_iframe($j['embedurl'],(isset($j['width']) ? $j['width'] : null), (isset($j['height']) ? $j['height'] : null)); - $ret=""; - switch ($j->type) { + $ret=""; + switch ($j['type']) { case "video": { - if (isset($j->thumbnail_url)) { - $tw = (isset($j->thumbnail_width)) ? $j->thumbnail_width:200; - $th = (isset($j->thumbnail_height)) ? $j->thumbnail_height:180; + if (isset($j['thumbnail_url'])) { + $tw = (isset($j['thumbnail_width'])) ? $j['thumbnail_width'] : 200; + $th = (isset($j['thumbnail_height'])) ? $j['thumbnail_height'] : 180; $tr = $tw/$th; $th=120; $tw = $th*$tr; $tpl=get_markup_template('oembed_video.tpl'); if(strstr($embedurl,'youtu') && strstr(z_root(),'https:')) { $embedurl = str_replace('http:','https:',$embedurl); - $j->thumbnail_url = str_replace('http:','https:', $j->thumbnail_url); + $j['thumbnail_url'] = str_replace('http:','https:', $j['thumbnail_url']); $jhtml = str_replace('http:','https:', $jhtml); - $j->html = str_replace('http:','https:', $j->html); + $j['html'] = str_replace('http:','https:', $j['html']); } $ret.=replace_macros($tpl, array( @@ -282,7 +285,7 @@ function oembed_format_object($j){ '$escapedhtml'=>base64_encode($jhtml), '$tw'=>$tw, '$th'=>$th, - '$turl'=>$j->thumbnail_url, + '$turl'=> $j['thumbnail_url'], )); } else { @@ -291,19 +294,19 @@ function oembed_format_object($j){ $ret.="
    "; }; break; case "photo": { - $ret.= ""; + $ret.= ""; $ret.="
    "; }; break; case "link": { - if($j->thumbnail_url) { + if($j['thumbnail_url']) { if(is_matrix_url($embedurl)) { $embedurl = zid($embedurl); - $j->thumbnail_url = zid($j->thumbnail_url); + $j['thumbnail_url'] = zid($j['thumbnail_url']); } - $ret = 'thumbnail

    '; + $ret = 'thumbnail

    '; } - //$ret = "".$j->title.""; + //$ret = "".$j['title'].""; }; break; case "rich": { // not so safe.. @@ -312,12 +315,12 @@ function oembed_format_object($j){ } // add link to source if not present in "rich" type - if ( $j->type!='rich' || !strpos($j->html,$embedurl) ){ - $embedlink = (isset($j->title))?$j->title:$embedurl; + if ( $j['type'] != 'rich' || !strpos($j['html'],$embedurl) ){ + $embedlink = (isset($j['title']))?$j['title'] : $embedurl; $ret .= '
    ' . "$embedlink"; $ret .= "
    "; - if (isset($j->author_name)) $ret.=" by ".$j->author_name; - if (isset($j->provider_name)) $ret.=" on ".$j->provider_name; + if (isset($j['author_name'])) $ret .= t(' by ') . $j['author_name']; + if (isset($j['provider_name'])) $ret .= t(' on ') . $j['provider_name']; } else { // add for html2bbcode conversion $ret .= "
    $embedurl"; -- cgit v1.2.3 From 8333d41dbda035d8adf6a3be7e22c77c205071b4 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 24 Sep 2016 19:02:37 +0200 Subject: fix issue #528 --- include/message.php | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/include/message.php b/include/message.php index 0ba1978f0..0829ebaaa 100644 --- a/include/message.php +++ b/include/message.php @@ -299,14 +299,30 @@ function private_messages_list($uid, $mailbox = '', $start = 0, $numitems = 0) { break; case 'combined': - $sql = "SELECT * FROM ( SELECT * FROM mail WHERE channel_id = $local_channel ORDER BY created DESC $limit ) AS temp_table GROUP BY parent_mid ORDER BY created DESC"; + $parents = q("SELECT parent_mid FROM mail WHERE mid = parent_mid AND channel_id = %d ORDER BY created DESC", + dbesc($local_channel) + ); + //FIXME: We need the latest mail of a thread here. This query throws errors in postgres. We now look for the latest in php until somebody can fix this... + //$sql = "SELECT * FROM ( SELECT * FROM mail WHERE channel_id = $local_channel ORDER BY created DESC $limit ) AS temp_table GROUP BY parent_mid ORDER BY created DESC"; break; } } - $r = q($sql); + if($parents) { + foreach($parents as $parent) { + $all[] = q("SELECT * FROM mail WHERE parent_mid = '%s' AND channel_id = %d ORDER BY created DESC", + dbesc($parent['parent_mid']), + dbesc($local_channel) + ); + } + foreach($all as $single) + $r[] = $single[0]; + } + else { + $r = q($sql); + } if(! $r) { return array(); -- cgit v1.2.3 From c04c57ea0f34b84e59d63201314aa35eede2d875 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 24 Sep 2016 16:20:25 -0700 Subject: the rest of the backend for supporting scroll-to-comment from notifications. We still need an ajax handler as fragments are evaluated before content is loaded. --- Zotlabs/Lib/Enotify.php | 3 +++ Zotlabs/Lib/ThreadItem.php | 3 +++ Zotlabs/Module/Item.php | 4 +++- view/tpl/conv_item.tpl | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index 92b9fddbd..a6ff528aa 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -115,6 +115,9 @@ class Enotify { // logger("notification: params = " . print_r($params, true), LOGGER_DEBUG); $itemlink = $params['link']; + if($params['item']['id']) + $itemlink .= '#item_' . $params['item']['id']; + // ignore like/unlike activity on posts - they probably require a separate notification preference diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index f50b9680e..2f5a0c325 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -412,6 +412,9 @@ class ThreadItem { if($visible_comments === false) $visible_comments = 3; + if(in_array(\App::$module,['display','update_display'])) + $visible_comments = 99999; + if(($this->get_display_mode() === 'normal') && ($nb_children > 0)) { foreach($children as $child) { $result['children'][] = $child->get_template_data($conv_responses, $thread_level + 1); diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index ac2067356..dff1c6404 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -922,7 +922,9 @@ class Item extends \Zotlabs\Web\Controller { $post = item_store($datarray,$execflag); $post_id = $post['item_id']; - + + $datarray = $post['item']; + if($post_id) { logger('mod_item: saved item ' . $post_id); diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index add80885b..7e42aa891 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -5,7 +5,7 @@